OBJECT

EventConnection

A connection to a list of items.

link GraphQL Schema definition

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