OBJECT

DocumentCommentsConnection

A connection to a list of DocumentComment values.

link GraphQL Schema definition

  • type DocumentCommentsConnection {
  • # A list of `DocumentComment` objects.
  • nodes: [DocumentComment!]!
  • # A list of edges which contains the `DocumentComment` and cursor to aid in
  • # pagination.
  • edges: [DocumentCommentsEdge!]!
  • # Information to aid in pagination.
  • pageInfo: PageInfo!
  • # The count of *all* `DocumentComment` you could get from the connection.
  • totalCount: Int!
  • }