GitHub API v4: How can I traverse with pagination? (GraphQL)
问题 I'm using Github API v4 to run search query. From the API documentation I can understand that the following query gives me pageInfo but I don't know how to use it to traverse. query { search(first: 100, type:USER, query:"location:usa repos:>0 language:java") { pageInfo { startCursor hasNextPage endCursor } userCount nodes { ... on User { bio company email id isBountyHunter isCampusExpert isDeveloperProgramMember isEmployee isHireable isSiteAdmin isViewer location login name url websiteUrl } }