OBJECT

SampleConnection

A connection to a list of items.

link GraphQL Schema definition

  • type SampleConnection {
  • # Information to aid in pagination.
  • pageInfo: PageInfo!
  • # A list of edges.
  • edges: [SampleEdge]
  • # A list of Sample nodes.
  • nodes: [Sample!]!
  • # The total count of items in the connection.
  • totalCount: Int!
  • }