orders Query
List of orders. The query will not initiate any external requests, including filtering available shipping methods, or performing external tax calculations.
orders(
sortBy: OrderSortingInput
filter: OrderFilterInput
where: OrderWhereInput
channel: String
search: String
before: String
after: String
first: Int
last: Int
): OrderCountableConnection
Details
type OrderCountableConnection {
pageInfo: PageInfo!
edges: [OrderCountableEdge!]!
totalCount: Int
}
Arguments
sortBy ● OrderSortingInput
Sort orders.
where ● OrderWhereInput
Where filtering options for orders.
Added in Saleor 3.22channel ● String
Slug of a channel for which the data should be returned.
search ● String
Search orders.
Added in Saleor 3.22before ● String
Return the elements in the list that come before the specified cursor.
after ● String
Return the elements in the list that come after the specified cursor.
first ● Int
Retrieve the first n elements from the list. Note that the system only allows fetching a maximum of 100 objects in a single query.
last ● Int
Retrieve the last n elements from the list. Note that the system only allows fetching a maximum of 100 objects in a single query.