Skip to content

Instantly share code, notes, and snippets.

@gHashTag
Last active November 29, 2019 16:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gHashTag/aa1922d6c49a7e6c2ab5c2de2aba78bb to your computer and use it in GitHub Desktop.
Save gHashTag/aa1922d6c49a7e6c2ab5c2de2aba78bb to your computer and use it in GitHub Desktop.
// copy nextToken
query Step1 {
__typename
listJobs(limit: 2) {
items {
id
rate
}
nextToken
}
}
// paste nextToken
query Step2 {
__typename
listJobs(nextToken: "eyJpZCI6eyJTIjoiN2M3Y2EyNjktM2ExMi00ZWM4LTgyYjItMGQ2Y2U3NDdiMjNjIn19", limit: 2) {
nextToken
items {
id
rate
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment