DEV

Query.

orders

No description

Arguments

after

String

Returns the elements in the list that come after the specified cursor.

filter

OrdersFilter

Supported filters for Orders.

first

Int

Returns up to the first n elements from the list.
GraphQL
1
2
3
type Query {
  orders(after: String, filter: OrdersFilter, first: Int): OrderConnection
}

Was this page helpful?