mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
1abb1dee69
https://github.com/hasura/graphql-engine-mono/pull/1740 GitOrigin-RevId: e807952058243a97f67cd9969fa434933a08652f
76 lines
2.6 KiB
YAML
76 lines
2.6 KiB
YAML
- description: Schema customization with field mapping inconsistency between interface and object type
|
|
url: /v1/metadata
|
|
status: 400
|
|
query:
|
|
{
|
|
"type": "add_remote_schema",
|
|
"args": {
|
|
"name": "character-foo",
|
|
"definition": {
|
|
"url": "http://localhost:5000/character-iface-graphql",
|
|
"customization": { "field_names": [{"parent_type": "Droid", "mapping": {"primaryFunction": "name", "name": "primaryFunction"}}] }
|
|
}
|
|
}
|
|
}
|
|
response:
|
|
path: $.args
|
|
error: 'Remote schema customization inconsistency: field name mapping for field "name" of interface "Character" is inconsistent with mapping for type "Droid". Interface field name maps to "name". Type field name maps to "primaryFunction".'
|
|
code: remote-schema-error
|
|
|
|
- description: Schema customization with two types mapping to same name
|
|
url: /v1/metadata
|
|
status: 400
|
|
query:
|
|
{
|
|
"type": "add_remote_schema",
|
|
"args": {
|
|
"name": "character-foo",
|
|
"definition": {
|
|
"url": "http://localhost:5000/character-iface-graphql",
|
|
"customization": { "type_names": {"mapping": {"Droid": "Foo", "Human": "Foo"}} }
|
|
}
|
|
}
|
|
}
|
|
response:
|
|
path: $.args
|
|
error: 'Type name mappings are not distinct; the following types appear more than once: "Foo"'
|
|
code: remote-schema-error
|
|
|
|
- description: Schema customization with two fields mapping to same name
|
|
url: /v1/metadata
|
|
status: 400
|
|
query:
|
|
{
|
|
"type": "add_remote_schema",
|
|
"args": {
|
|
"name": "character-foo",
|
|
"definition": {
|
|
"url": "http://localhost:5000/character-iface-graphql",
|
|
"customization": { "field_names": [{"parent_type": "Droid", "mapping": {"primaryFunction": "name"}}] }
|
|
}
|
|
}
|
|
}
|
|
response:
|
|
path: $.args
|
|
error: 'Field name mappings for object type "Droid" are not distinct; the following fields appear more than once: "name"'
|
|
code: remote-schema-error
|
|
|
|
- description: Attempt to customize __typename field
|
|
url: /v1/metadata
|
|
status: 400
|
|
query:
|
|
{
|
|
"type": "add_remote_schema",
|
|
"args": {
|
|
"name": "character-foo",
|
|
"definition": {
|
|
"url": "http://localhost:5000/character-iface-graphql",
|
|
"customization": { "field_names": [{"parent_type": "Droid", "mapping": {"__typename": "my_typename"}}] }
|
|
}
|
|
}
|
|
}
|
|
response:
|
|
path: $.args
|
|
error: 'attempt to customize reserved field name "__typename"'
|
|
code: invalid-params
|