OrderStatusSetsSearchInput
Search criteria and filters for retrieving order status sets with pagination support
input OrderStatusSetsSearchInput {
page: Int
offset: Int
name: String
ids: [Int!]
sortInputs: [OrderStatusSetSortInput!]
}
Fields
OrderStatusSetsSearchInput.page
● Int
scalar
Page number for pagination, starting from 1.
Used to navigate through multiple pages of results when the total number of order status sets exceeds the offset limit. Defaults to 1.
OrderStatusSetsSearchInput.offset
● Int
scalar
Number of order status sets to return per page.
Controls the size of each page in the paginated response to manage data volume and performance. Must be between 1 and 100. Defaults to 12.
OrderStatusSetsSearchInput.name
● String
scalar
Filter by order status set name using partial text matching.
Supports case-insensitive search to find status sets with names containing the specified text.
OrderStatusSetsSearchInput.ids
● [Int!]
list scalar
Filter by specific order status set identifiers.
Comma-separated list of numeric IDs to retrieve multiple specific status sets in a single request. Each ID must be unique and represent a valid status set.
OrderStatusSetsSearchInput.sortInputs
● [OrderStatusSetSortInput!]
list input
Inputs to sort by
Member Of
orderStatusSets
query