Skip to main content

ShipmentItemSearchInput

No description

input ShipmentItemSearchInput {
page: Int!
offset: Int!
createdAt: DateSearchInput
lastModifiedAt: DateSearchInput
sortInputs: [ShipmentItemSortInput!]
ids: [String!]
shipmentIds: [String!]
orderItemIds: [Int!]
names: [String!]
skus: [String!]
quantity: NumberSearchInput
}

Fields

ShipmentItemSearchInput.page ● Int! non-null scalar

Pagination page number

ShipmentItemSearchInput.offset ● Int! non-null scalar

Pagination offset number

ShipmentItemSearchInput.createdAt ● DateSearchInput input

Search by date created

ShipmentItemSearchInput.lastModifiedAt ● DateSearchInput input

Search by date changed

ShipmentItemSearchInput.sortInputs ● [ShipmentItemSortInput!] list input

Inputs to sort by

ShipmentItemSearchInput.ids ● [String!] list scalar

Filter by specific shipment identifiers.

Returns only shipments matching the provided UUID list. Useful for retrieving specific shipments by their unique identifiers.

ShipmentItemSearchInput.shipmentIds ● [String!] list scalar

Filter by shipment identifiers for item searches.

When searching shipment items, restricts results to items within the specified shipments.

ShipmentItemSearchInput.orderItemIds ● [Int!] list scalar

Search by order item ids

ShipmentItemSearchInput.names ● [String!] list scalar

Filter by product names within shipments.

Returns shipments containing items with names matching the search criteria. Useful for product-specific fulfillment tracking.

ShipmentItemSearchInput.skus ● [String!] list scalar

Filter by product SKUs within shipments.

Returns shipments containing items with the specified SKU codes. Essential for inventory and product-specific tracking.

ShipmentItemSearchInput.quantity ● NumberSearchInput input

Filter by item quantity ranges within shipments.

Returns shipments with items having quantities within the specified range. Useful for bulk order and inventory analysis.

Member Of

shipmentItems query