npm package diff
Package: @forge/storage
Versions: 1.7.3 - 1.8.0-next.0
File: package/out/gql-queries.js
Index: package/out/gql-queries.js
===================================================================
--- package/out/gql-queries.js
+++ package/out/gql-queries.js
@@ -87,29 +87,8 @@
cursor: options.cursor ?? null,
limit: options.limit ?? null
}
});
- static listQueryForCleanup = (options) => ({
- query: `
- query forge_app_getApplicationStorageEntitiesForCleanup($where: [AppStoredEntityFilter!], $cursor: String, $limit: Int) {
- appStoredEntitiesForCleanup(where: $where, after: $cursor, first: $limit) {
- edges {
- node {
- value
- key
- }
-
- cursor
- }
- }
- }
- `,
- variables: {
- where: options.where ?? null,
- cursor: options.cursor ?? null,
- limit: options.limit ?? null
- }
- });
}
exports.UntypedQueries = UntypedQueries;
class CustomEntityQueries {
static get = (entityName, key) => ({