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