Skip to content

IssueCommentConnection

The connection type for IssueComment.

graphql
type IssueCommentConnection {
  edges: [IssueCommentEdge!]!
  nodes: [IssueComment!]!
  pageInfo: PageInfo!
  totalCount: Int!
}

Fields

IssueCommentConnection.edges ● [IssueCommentEdge!]! non-null object

A list of all edges of the current page.

IssueCommentConnection.nodes ● [IssueComment!]! non-null object

A list of all nodes of the current page.

IssueCommentConnection.pageInfo ● PageInfo! non-null object

Information to aid in pagination.

IssueCommentConnection.totalCount ● Int! non-null scalar

Identifies the total count of items in the connection.

Member Of

Artefact object ● Body object ● Comment interface ● Issue object ● IssueComment object

Released under the MIT License.