OBJECT

ClientCompaniesConnection

A connection to a list of ClientCompany values.

link GraphQL Schema definition

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