Created
April 8, 2020 00:35
-
-
Save lennyburdette/67c59869344ef23d5b70e1a84c0456a9 to your computer and use it in GitHub Desktop.
Apollo Federation "Combine Data Stores" Query Plan
This file contains hidden or 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
| QueryPlan { | |
| Sequence { | |
| Fetch(service: "/sandbox/src/services/tweet-search.js") { | |
| { | |
| search(word: "everyday") { | |
| id | |
| __typename | |
| } | |
| } | |
| }, | |
| Flatten(path: "search.@") { | |
| Fetch(service: "/sandbox/src/services/tweets.js") { | |
| { | |
| ... on Tweet { | |
| __typename | |
| id | |
| } | |
| } => | |
| { | |
| ... on Tweet { | |
| body | |
| createdAt | |
| } | |
| } | |
| }, | |
| }, | |
| }, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment