OBJECT

CompaniesConnection

A connection to a list of Company values.

link GraphQL Schema definition

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