File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ type IssueFragment struct {
176176 } `graphql:"comments"`
177177 IssueFieldValues struct {
178178 Nodes []IssueFieldValueFragment
179- } `graphql:"issueFieldValues(first: 25)"`
179+ } `graphql:"issueFieldValues(first: 25)"` // 25 exceeds the practical max of custom fields per issue in GitHub Projects
180180}
181181
182182// Common interface for all issue query types
@@ -249,7 +249,7 @@ type searchIssuesNodesQuery struct {
249249 ID githubv4.ID
250250 IssueFieldValues struct {
251251 Nodes []IssueFieldValueFragment
252- } `graphql:"issueFieldValues(first: 25)"`
252+ } `graphql:"issueFieldValues(first: 25)"` // 25 exceeds the practical max of custom fields per issue in GitHub Projects
253253 } `graphql:"... on Issue"`
254254 } `graphql:"nodes(ids: $ids)"`
255255}
You can’t perform that action at this time.
0 commit comments