OBJECT

InvoiceItemsConnection

A connection to a list of InvoiceItem values.

link GraphQL Schema definition

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