For the complete documentation index, see llms.txt. This page is also available as Markdown.

IssueConnection

The connection type for paginated lists of IssueConnection.

type IssueConnection {
  edges: [IssueEdge!]
  limit: Int
  limitedCount: String
  offset: Int
  pageInfo: PageInfo!
  total: Int
}

Fields

edges ● [IssueEdge!] list object

limit ● Int scalar

The limit used for the query. This can differ from the input limit due to restrictions or defaults.

limitedCount ● String scalar

offset ● Int scalar

The offset that was used. This will only be filled in if possible (when cursors are sequential numbers).

pageInfo ● PageInfo! non-null object

Pagination information for the retrieved items.

total ● Int scalar

Implemented By

IssueConnectionResult union

Last updated

Was this helpful?