DEV

Query.

ordersSearch

List orders with search filters and fuzzy search support

Arguments

after

String

Returns the elements after the specified cursor

before

String

Returns the elements before the specified cursor
Supported filters for Orders with enhanced search capabilities.

first

Int

The number of elements to return from the query

last

Int

The number of last elements to return from the query
GraphQL
1
2
3
type Query {
  ordersSearch(after: String, before: String, filter: OrderSearchFilter, first: Int, last: Int): OrderConnection
}

Was this page helpful?