Created
January 17, 2017 23:11
-
-
Save idkjs/f7aafdd575f093e8bf421d84a3de08b1 to your computer and use it in GitHub Desktop.
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
| query App_ViewerRelayQL($id_0:ID!) { | |
| node(id:$id_0) { | |
| ...F2 | |
| } | |
| } | |
| fragment F0 on Quote { | |
| id, | |
| likesCount | |
| } | |
| fragment F1 on Quote { | |
| text, | |
| author, | |
| id, | |
| ...F0 | |
| } | |
| fragment F2 on User { | |
| _quotes3tDtVD:quotes(first:100,searchTerm:"po") { | |
| edges { | |
| node { | |
| id, | |
| ...F1 | |
| }, | |
| cursor | |
| }, | |
| pageInfo { | |
| hasNextPage, | |
| hasPreviousPage | |
| } | |
| }, | |
| id | |
| }, | |
| variables {{id_0: "VXNlcjox"}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment