mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-21 06:21:39 +03:00
38 lines
706 B
YAML
38 lines
706 B
YAML
|
description: Array remote relationship GraphQL query
|
||
|
url: /v1/graphql
|
||
|
status: 200
|
||
|
response:
|
||
|
data:
|
||
|
profiles:
|
||
|
- id: 1
|
||
|
name: alice
|
||
|
messagesNestedArr:
|
||
|
- name: alice
|
||
|
msg: You win!
|
||
|
- name: alice
|
||
|
msg: Another alice
|
||
|
- id: 2
|
||
|
name: bob
|
||
|
messagesNestedArr:
|
||
|
- name: bob
|
||
|
msg: You lose!
|
||
|
- id: 3
|
||
|
name: alice
|
||
|
messagesNestedArr:
|
||
|
- name: alice
|
||
|
msg: You win!
|
||
|
- name: alice
|
||
|
msg: Another alice
|
||
|
query:
|
||
|
query: |
|
||
|
query {
|
||
|
profiles {
|
||
|
id
|
||
|
name
|
||
|
messagesNestedArr {
|
||
|
name
|
||
|
msg
|
||
|
}
|
||
|
}
|
||
|
}
|