mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 09:51:59 +03:00
18e8fbab1b
Also, add support for explaining subscriptions while we’re at it.
15 lines
296 B
YAML
15 lines
296 B
YAML
query: |
|
|
subscription ($condition: test_bool_exp) {
|
|
test(where: $condition) {
|
|
id
|
|
}
|
|
}
|
|
variables_representative:
|
|
condition: {id: {_eq: 1}}
|
|
variables_same:
|
|
- condition: {id: {_eq: 1}}
|
|
- condition: {id: {_eq: 2}}
|
|
variables_different:
|
|
- condition: {id: {_gt: 1}}
|
|
- condition: null
|