Skip to content

Commit

Permalink
Reduce graphql pagination to 10 (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
yqiu24 authored Nov 15, 2023
1 parent 09c10a1 commit 75d23de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/github.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ def make_pull_request_query(self, after_cursor: str = None):
repository(owner: OWNER, name: REPO) {
pullRequests(
states: CLOSED,
first: 15,
first: 10,
after: AFTER,
orderBy: {
direction:ASC,
Expand Down

0 comments on commit 75d23de

Please sign in to comment.