mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 04:51:35 +03:00
73 lines
1.4 KiB
YAML
73 lines
1.4 KiB
YAML
|
- description: Articles with their author (in outher data source)
|
||
|
url: /v1/graphql
|
||
|
status: 200
|
||
|
response:
|
||
|
data:
|
||
|
hasura_test_article2:
|
||
|
- id: '1'
|
||
|
title: Title 1
|
||
|
content: Content 1
|
||
|
author:
|
||
|
id: '1'
|
||
|
name: Author 1
|
||
|
- id: '2'
|
||
|
title: Title 2
|
||
|
content: Content 2
|
||
|
author:
|
||
|
id: '1'
|
||
|
name: Author 1
|
||
|
- id: '3'
|
||
|
title: Title 3
|
||
|
content: Content 3
|
||
|
author:
|
||
|
id: '2'
|
||
|
name: Author 2
|
||
|
query:
|
||
|
query: |
|
||
|
query {
|
||
|
hasura_test_article2 (order_by: {id: asc}) {
|
||
|
id
|
||
|
title
|
||
|
content
|
||
|
author {
|
||
|
id
|
||
|
name
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
- description: Author with their articles with (in other data source)
|
||
|
url: /v1/graphql
|
||
|
status: 200
|
||
|
response:
|
||
|
data:
|
||
|
hasura_test_author:
|
||
|
- id: '1'
|
||
|
name: Author 1
|
||
|
articles2:
|
||
|
- id: '1'
|
||
|
title: Title 1
|
||
|
content: Content 1
|
||
|
- id: '2'
|
||
|
title: Title 2
|
||
|
content: Content 2
|
||
|
- id: '2'
|
||
|
name: Author 2
|
||
|
articles2:
|
||
|
- id: '3'
|
||
|
title: Title 3
|
||
|
content: Content 3
|
||
|
query:
|
||
|
query: |
|
||
|
query {
|
||
|
hasura_test_author (order_by: {id: asc}) {
|
||
|
id
|
||
|
name
|
||
|
articles2(order_by: {id: asc}) {
|
||
|
id
|
||
|
title
|
||
|
content
|
||
|
}
|
||
|
}
|
||
|
}
|