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