InvoicePage
A page of invoices together with pagination metadata.
Returned by *Paged query fields such as Event.invoicesPaged, CeContactStore.invoicesPaged
and MembershipContactStore.invoicesPaged. Use items for the invoices on the current page
and pageInfo to drive pagination UI (total count, has-next-page, etc.).
type InvoicePage {
items: [Invoice!]!
pageInfo: OffsetPageInfo!
}
Fields
InvoicePage.items ● [Invoice!]! non-null object
The invoices on this page, in the same order they would be returned by the equivalent
invoices field with the same offset, limit and filter arguments.
InvoicePage.pageInfo ● OffsetPageInfo! non-null object
Pagination metadata for this page.
Member Of
CeContactStore object ● Event object ● MembershipContactStore object