nicojensen.de/vendor/bundle/gems/rouge-3.3.0/lib/rouge/demos/graphql
Nico Jensen b59a203dbb Init
Init commit
2019-03-12 13:49:49 +01:00

17 lines
233 B
Text

query myQuery($variable: Boolean) {
# Queries can have comments!
friends(ids: ["a1", "a2"]) {
id
name
...someFields
... @include(if: $variable) {
foo
}
... @skip(if: true) {
bar
}
}
}