Skip to content

Commit

Permalink
codegen
Browse files Browse the repository at this point in the history
  • Loading branch information
elbotho committed Apr 22, 2024
1 parent 081e3ae commit e67a39e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 75 deletions.
65 changes: 0 additions & 65 deletions apps/web/graphql.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
10 changes: 0 additions & 10 deletions apps/web/src/fetcher/graphql-types/operations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<Scalars['String']['input']>;
first?: InputMaybe<Scalars['Int']['input']>;
instance?: InputMaybe<Instance>;
modifiedAfter?: InputMaybe<Scalars['String']['input']>;
}


export interface MetadataQueryResourcesArgs {
after?: InputMaybe<Scalars['String']['input']>;
first?: InputMaybe<Scalars['Int']['input']>;
Expand Down

0 comments on commit e67a39e

Please sign in to comment.