mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 13:02:11 +03:00
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
|