Skip to content

Commit

Permalink
Request less nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
Matyrobbrt committed Dec 14, 2024
1 parent fb36890 commit bb2b49d
Showing 1 changed file with 3 additions and 11 deletions.
14 changes: 3 additions & 11 deletions src/main/graphql/com/github/api/fragments.graphql
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
fragment IssueInfo on Issue {
number
labels(first: 100) {
labels(first: 25) {
nodes {
name
}
Expand All @@ -14,24 +14,16 @@ fragment PullRequestInfo on PullRequest {
permalink
title
updatedAt
labels(first: 100) {
labels(first: 25) {
nodes {
name
}
}
closingIssuesReferences(first: 100) {
closingIssuesReferences(first: 10) {
nodes {
...IssueInfo
}
}
projectItems(first: 100) {
nodes {
id
project {
id
}
}
}
repository {
nameWithOwner
}
Expand Down

0 comments on commit bb2b49d

Please sign in to comment.