OBJECT

EntityConnection

link GraphQL Schema definition

  • type EntityConnection implements Connection {
  • # Count of entities in this page.
  • count: Int!
  • edges: [EntityEdge!]
  • # List of entities in this page
  • entities: [Entity!]
  • pageInfo: PageInfo!
  • # Total count of matching entities if available. This may be expensive to
  • # calculate.
  • totalCount: Int
  • }