OBJECT

JSONConnection

A connection to a list of items.

link GraphQL Schema definition

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