OBJECT

OrganizationsConnection

A connection to a list of Organization values.

link GraphQL Schema definition

  • type OrganizationsConnection {
  • # A list of `Organization` objects.
  • nodes: [Organization]!
  • # A list of edges which contains the `Organization` and cursor to aid in
  • # pagination.
  • edges: [OrganizationsEdge!]!
  • # Information to aid in pagination.
  • pageInfo: PageInfo!
  • # The count of *all* `Organization` you could get from the connection.
  • totalCount: Int!
  • }