Skip to content

Commit d076178

Browse files
committed
Query first 100 issue metadata by PR number and branch (3 --> 100)
1 parent 542314a commit d076178

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

api/queries_pr.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -397,19 +397,19 @@ func PullRequestByNumber(client *Client, repo ghrepo.Interface, number int) (*Pu
397397
}
398398
totalCount
399399
}
400-
assignees(first: 3) {
400+
assignees(first: 100) {
401401
nodes {
402402
login
403403
}
404404
totalCount
405405
}
406-
labels(first: 3) {
406+
labels(first: 100) {
407407
nodes {
408408
name
409409
}
410410
totalCount
411411
}
412-
projectCards(first: 3) {
412+
projectCards(first: 100) {
413413
nodes {
414414
project {
415415
name
@@ -423,7 +423,7 @@ func PullRequestByNumber(client *Client, repo ghrepo.Interface, number int) (*Pu
423423
milestone{
424424
title
425425
}
426-
participants(first: 3) {
426+
participants(first: 100) {
427427
nodes {
428428
login
429429
}
@@ -502,19 +502,19 @@ func PullRequestForBranch(client *Client, repo ghrepo.Interface, baseBranch, hea
502502
}
503503
totalCount
504504
}
505-
assignees(first: 3) {
505+
assignees(first: 100) {
506506
nodes {
507507
login
508508
}
509509
totalCount
510510
}
511-
labels(first: 3) {
511+
labels(first: 100) {
512512
nodes {
513513
name
514514
}
515515
totalCount
516516
}
517-
projectCards(first: 3) {
517+
projectCards(first: 100) {
518518
nodes {
519519
project {
520520
name
@@ -528,7 +528,7 @@ func PullRequestForBranch(client *Client, repo ghrepo.Interface, baseBranch, hea
528528
milestone{
529529
title
530530
}
531-
participants(first: 3) {
531+
participants(first: 100) {
532532
nodes {
533533
login
534534
}

0 commit comments

Comments
 (0)