OBJECT

DocumentsConnection

A connection to a list of Document values.

link GraphQL Schema definition

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