-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #88 from emosenkis/em/union-fragments
Support fragments on unions.
- Loading branch information
Showing
9 changed files
with
310 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,55 @@ | ||
query Nana { | ||
hallo { | ||
__typename | ||
... on Bar { | ||
nana | ||
} | ||
... on Foo { | ||
forward | ||
blip | ||
} | ||
} | ||
} | ||
|
||
query Nana2 { | ||
hallo { | ||
...BazFragment | ||
} | ||
} | ||
|
||
query Nana3 { | ||
hallo { | ||
...VeryNestedFragment | ||
} | ||
} | ||
|
||
query Nana4 { | ||
hallo { | ||
...DelegatingFragment | ||
} | ||
} | ||
|
||
fragment BazFragment on Element { | ||
... on Baz { | ||
__typename | ||
bloop | ||
} | ||
} | ||
|
||
fragment VeryNestedFragment on Element { | ||
__typename | ||
...BazFragment | ||
... on Bar { | ||
nana | ||
} | ||
} | ||
|
||
fragment DelegateFragment on Bar { | ||
nana | ||
} | ||
|
||
fragment DelegatingFragment on Element { | ||
... on Bar { | ||
...DelegateFragment | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.