OBJECT

AccountingCompaniesConnection

A connection to a list of AccountingCompany values.

link GraphQL Schema definition

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