WarehousesSearchInput
No description
input WarehousesSearchInput {
ids: [Int!]
isActive: Boolean
isStore: Boolean
isPickupLocation: Boolean
page: Int!
offset: Int!
sortInputs: [WarehouseSortInput!]
}
Fields
WarehousesSearchInput.ids
● [Int!]
list scalar
Filter warehouses by specific identifiers.
List of warehouse IDs to retrieve. When provided, only warehouses with matching IDs will be returned.
WarehousesSearchInput.isActive
● Boolean
scalar
Filter by operational status.
When true, returns only active warehouses available for operations. When false, returns only inactive warehouses.
WarehousesSearchInput.isStore
● Boolean
scalar
Filter by store designation.
When true, returns only warehouses that also function as retail stores. When false, returns only non-retail warehouses.
WarehousesSearchInput.isPickupLocation
● Boolean
scalar
Filter by pickup location availability.
When true, returns only warehouses where customers can collect orders. When false, returns only warehouses without pickup services.
WarehousesSearchInput.page
● Int!
non-null scalar
Page number for pagination, starting from 1.
Used to navigate through multiple pages of results when the total number of warehouses exceeds the offset limit.
WarehousesSearchInput.offset
● Int!
non-null scalar
Number of warehouses to return per page.
Controls the size of each page in the paginated response to manage data volume and performance. Minimum value is 1.
WarehousesSearchInput.sortInputs
● [WarehouseSortInput!]
list input
Inputs to sort by
Member Of
warehouses
query