Skip to content

Commit

Permalink
Update test GraphQL schema dumps
Browse files Browse the repository at this point in the history
  • Loading branch information
peterfication committed Nov 7, 2024
1 parent 198f424 commit 1ab18f8
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 60 deletions.
60 changes: 30 additions & 30 deletions graphql/test-schema-b.json
Original file line number Diff line number Diff line change
Expand Up @@ -1124,6 +1124,30 @@
}
],
"directives": [
{
"name": "deprecated",
"description": "Marks an element of a GraphQL schema as no longer supported.",
"locations": [
"FIELD_DEFINITION",
"ENUM_VALUE",
"ARGUMENT_DEFINITION",
"INPUT_FIELD_DEFINITION"
],
"args": [
{
"name": "reason",
"description": "Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted in [Markdown](https://daringfireball.net/projects/markdown/).",
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
"defaultValue": "\"No longer supported\"",
"isDeprecated": false,
"deprecationReason": null
}
]
},
{
"name": "include",
"description": "Directs the executor to include this field or fragment only when the `if` argument is true.",
Expand All @@ -1147,6 +1171,12 @@
}
]
},
{
"name": "oneOf",
"description": "Requires that exactly one field must be supplied and that field must not be `null`.",
"locations": ["INPUT_OBJECT"],
"args": []
},
{
"name": "skip",
"description": "Directs the executor to skip this field or fragment when the `if` argument is true.",
Expand All @@ -1170,36 +1200,6 @@
}
]
},
{
"name": "deprecated",
"description": "Marks an element of a GraphQL schema as no longer supported.",
"locations": [
"FIELD_DEFINITION",
"ENUM_VALUE",
"ARGUMENT_DEFINITION",
"INPUT_FIELD_DEFINITION"
],
"args": [
{
"name": "reason",
"description": "Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted in [Markdown](https://daringfireball.net/projects/markdown/).",
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
"defaultValue": "\"No longer supported\"",
"isDeprecated": false,
"deprecationReason": null
}
]
},
{
"name": "oneOf",
"description": "Requires that exactly one field must be supplied and that field must not be `null`.",
"locations": ["INPUT_OBJECT"],
"args": []
},
{
"name": "specifiedBy",
"description": "Exposes a URL that specifies the behavior of this scalar.",
Expand Down
60 changes: 30 additions & 30 deletions graphql/test-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1137,6 +1137,30 @@
}
],
"directives": [
{
"name": "deprecated",
"description": "Marks an element of a GraphQL schema as no longer supported.",
"locations": [
"FIELD_DEFINITION",
"ENUM_VALUE",
"ARGUMENT_DEFINITION",
"INPUT_FIELD_DEFINITION"
],
"args": [
{
"name": "reason",
"description": "Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted in [Markdown](https://daringfireball.net/projects/markdown/).",
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
"defaultValue": "\"No longer supported\"",
"isDeprecated": false,
"deprecationReason": null
}
]
},
{
"name": "include",
"description": "Directs the executor to include this field or fragment only when the `if` argument is true.",
Expand All @@ -1160,6 +1184,12 @@
}
]
},
{
"name": "oneOf",
"description": "Requires that exactly one field must be supplied and that field must not be `null`.",
"locations": ["INPUT_OBJECT"],
"args": []
},
{
"name": "skip",
"description": "Directs the executor to skip this field or fragment when the `if` argument is true.",
Expand All @@ -1183,36 +1213,6 @@
}
]
},
{
"name": "deprecated",
"description": "Marks an element of a GraphQL schema as no longer supported.",
"locations": [
"FIELD_DEFINITION",
"ENUM_VALUE",
"ARGUMENT_DEFINITION",
"INPUT_FIELD_DEFINITION"
],
"args": [
{
"name": "reason",
"description": "Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted in [Markdown](https://daringfireball.net/projects/markdown/).",
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
"defaultValue": "\"No longer supported\"",
"isDeprecated": false,
"deprecationReason": null
}
]
},
{
"name": "oneOf",
"description": "Requires that exactly one field must be supplied and that field must not be `null`.",
"locations": ["INPUT_OBJECT"],
"args": []
},
{
"name": "specifiedBy",
"description": "Exposes a URL that specifies the behavior of this scalar.",
Expand Down

0 comments on commit 1ab18f8

Please sign in to comment.