Types > InvoicePage
Commerce APITypesInvoicePage
InvoicePage

Description

Topic: Invoices

Fields

count: Int!

Total number of items in the collection


items: [Invoice!]!


last_key: String!

Key of the last item for keyset based iteration


Used By

Queries

invoicesPage

Preview (typescript)

interface InvoicePage {
count: number
items: Invoice[]
last_key: string
}