OBJECT

InvoicesConnection

A connection to a list of Invoice values.

link GraphQL Schema definition

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