OBJECT

CompanyLocationsConnection

A connection to a list of CompanyLocation values.

link GraphQL Schema definition

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