OBJECT

AccountingInstructionsConnection

A connection to a list of AccountingInstruction values.

link GraphQL Schema definition

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