Skip to content

Instantly share code, notes, and snippets.

@idkjs
Created January 17, 2017 23:11
Show Gist options
  • Select an option

  • Save idkjs/f7aafdd575f093e8bf421d84a3de08b1 to your computer and use it in GitHub Desktop.

Select an option

Save idkjs/f7aafdd575f093e8bf421d84a3de08b1 to your computer and use it in GitHub Desktop.
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