summaryrefslogtreecommitdiff
path: root/tests/examplefiles/graphql/ex05_aliases.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'tests/examplefiles/graphql/ex05_aliases.graphql')
-rw-r--r--tests/examplefiles/graphql/ex05_aliases.graphql8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/examplefiles/graphql/ex05_aliases.graphql b/tests/examplefiles/graphql/ex05_aliases.graphql
new file mode 100644
index 00000000..a21db69e
--- /dev/null
+++ b/tests/examplefiles/graphql/ex05_aliases.graphql
@@ -0,0 +1,8 @@
+{
+ empireHero: hero(episode: EMPIRE) {
+ name
+ }
+ jediHero: hero(episode: JEDI) {
+ name
+ }
+}