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

CommentConnection

The connection type for paginated lists of Comment.

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

Fields

edges ● [CommentEdge!] list object

The list of edges containing the actual queried items.

limit ● Int scalar

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

limitedCount ● String scalar

The limited count of the items.

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

The total count of the items. Preferably use limitedCount instead of total as this is not good for performance.

Implemented By

CommentConnectionResult union

Last updated

Was this helpful?