graphql-engine/server/tests-py/queries/subscriptions/multiplexing/query.yaml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
296 B
YAML
Raw Normal View History

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