diff --git a/apps/web/graphql.schema.json b/apps/web/graphql.schema.json index aa466460df..61d7f8fa2f 100644 --- a/apps/web/graphql.schema.json +++ b/apps/web/graphql.schema.json @@ -10853,71 +10853,6 @@ "name": "MetadataQuery", "description": null, "fields": [ - { - "name": "entities", - "description": null, - "args": [ - { - "name": "after", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "instance", - "description": null, - "type": { - "kind": "ENUM", - "name": "Instance", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "modifiedAfter", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ResourceMetadataConnection", - "ofType": null - } - }, - "isDeprecated": true, - "deprecationReason": "Please use the `resources` field instead. This property will be deleted." - }, { "name": "publisher", "description": null, diff --git a/apps/web/src/fetcher/graphql-types/operations.ts b/apps/web/src/fetcher/graphql-types/operations.ts index 9c93ec3535..79b5d3fd93 100644 --- a/apps/web/src/fetcher/graphql-types/operations.ts +++ b/apps/web/src/fetcher/graphql-types/operations.ts @@ -1125,22 +1125,12 @@ export interface MediaUpload { export interface MetadataQuery { __typename?: 'MetadataQuery'; - /** @deprecated Please use the `resources` field instead. This property will be deleted. */ - entities: ResourceMetadataConnection; publisher: Scalars['JSONObject']['output']; resources: ResourceMetadataConnection; version: Scalars['String']['output']; } -export interface MetadataQueryEntitiesArgs { - after?: InputMaybe; - first?: InputMaybe; - instance?: InputMaybe; - modifiedAfter?: InputMaybe; -} - - export interface MetadataQueryResourcesArgs { after?: InputMaybe; first?: InputMaybe;