OBJECT
CompaniesConnection
A connection to a list of Company values.
link GraphQL Schema definition
- type CompaniesConnection {
- # A list of `Company` objects.
- : [Company]!
- # A list of edges which contains the `Company` and cursor to aid in pagination.
- : [CompaniesEdge!]!
- # Information to aid in pagination.
- : PageInfo!
- # The count of *all* `Company` you could get from the connection.
- : Int
- }