summaryrefslogtreecommitdiff
path: root/tests/data/kitchen-sink.graphql
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2019-07-31 05:40:17 +0200
committerEugen Wissner <belka@caraus.de>2019-07-31 05:40:17 +0200
commit4812c8f039b72bb8fae083838dd949f7095f2eee (patch)
tree6224d163e019dcee9c28082598128fb26393d114 /tests/data/kitchen-sink.graphql
parentd690d22ce89891e990ec275ea9dc196d17decb44 (diff)
downloadgraphql-4812c8f039b72bb8fae083838dd949f7095f2eee.tar.gz
Introduce formatter type for the encoder
... to distinguish between minified and pretty printing.
Diffstat (limited to 'tests/data/kitchen-sink.graphql')
-rw-r--r--tests/data/kitchen-sink.graphql6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/data/kitchen-sink.graphql b/tests/data/kitchen-sink.graphql
index 46fd10e..89903b7 100644
--- a/tests/data/kitchen-sink.graphql
+++ b/tests/data/kitchen-sink.graphql
@@ -7,11 +7,11 @@
query queryName($foo: ComplexType, $site: Site = MOBILE) {
whoever123is: node(id: [123, 456]) {
- id , # Inline test comment
+ id, # Inline test comment
... on User @defer {
field2 {
- id ,
- alias: field1(first:10, after:$foo,) @include(if: $foo) {
+ id,
+ alias: field1(first: 10, after: $foo) @include(if: $foo) {
id,
...frag
}