Types > StorefrontOrderPage
Storefront APITypesStorefrontOrderPage
StorefrontOrderPage

Description

Topic: Orders

Fields

count: Int!

Total number of items in the collection


items: [StorefrontOrder!]!


last_key: String!

Key of the last item for keyset based iteration


Used By

Queries

storefrontOrdersPage

Preview (typescript)

interface StorefrontOrderPage {
count: number
items: StorefrontOrder[]
last_key: string
}