summaryrefslogtreecommitdiff
path: root/tests/examplefiles/graphql/ex02_field2.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'tests/examplefiles/graphql/ex02_field2.graphql')
-rw-r--r--tests/examplefiles/graphql/ex02_field2.graphql9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/examplefiles/graphql/ex02_field2.graphql b/tests/examplefiles/graphql/ex02_field2.graphql
new file mode 100644
index 00000000..68f1695b
--- /dev/null
+++ b/tests/examplefiles/graphql/ex02_field2.graphql
@@ -0,0 +1,9 @@
+{
+ hero {
+ name
+ # Queries can have comments!
+ friends {
+ name
+ }
+ }
+}