graphql-engine/server/tests-py/queries/remote_schemas/remote_relationships/mixed_interface.yaml

28 lines
418 B
YAML
Raw Normal View History

description: Simple Mixed GraphQL query with interface
url: /v1/graphql
status: 200
response:
data:
profiles:
- id: 1
- id: 2
- id: 3
communications:
- id: 1
msg: You win!
- id: 2
msg: You lose!
- id: 3
msg: Another alice
query:
query: |
query {
profiles {
id
}
communications {
id
msg
}
}