OBJECT

DocumentConnection

link GraphQL Schema definition

  • type DocumentConnection implements Connection {
  • # Count of documents in this page.
  • count: Int!
  • # List of documents in this page
  • documents: [Document!]
  • # Relay-compatible connection edges for this page
  • edges: [DocumentEdge!]
  • # Relay-compatible paging information
  • pageInfo: PageInfo!
  • # NOTE: This field is expensive to compute and should be used sparingly if at all
  • # necessary. Total count of matching documents
  • totalCount: Int
  • }