You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem:
The following query is limited to fetching only the first 10 assignees:
assignees(first: 10) {
nodes {
login
}
}
If an issue has more than 10 assignees (e.g. 11), the remaining ones are not fetched.
This limitation affects all GitHub GraphQL queries that use fixed pagination values. The solution should be generalized to handle pagination across all such cases.