📖GitHub API v4 でページネーションを考慮したクエリの実装2021/07/09に公開1件GitHubGraphQLNode.jsTypeScripttechDiscussionShuzoN2021/07/09に更新質問です。 以下のようなネストした場合に、複数のリポジトリがhasNextPageを返した場合はどのような挙動になるのでしょうか? { organization(login: $org:String!) { teams(first: 100, userLogins: $user:String!) { edges { node { name repositories(first: 100) { pageInfo { hasNextPage endCursor } nodes { name } } } } } } } 返信を追加
ShuzoN2021/07/09に更新質問です。 以下のようなネストした場合に、複数のリポジトリがhasNextPageを返した場合はどのような挙動になるのでしょうか? { organization(login: $org:String!) { teams(first: 100, userLogins: $user:String!) { edges { node { name repositories(first: 100) { pageInfo { hasNextPage endCursor } nodes { name } } } } } } } 返信を追加
Discussion
質問です。 以下のようなネストした場合に、複数のリポジトリがhasNextPageを返した場合はどのような挙動になるのでしょうか?