ShipmentResponse
Paginated response containing shipment search results with metadata for efficient data retrieval and navigation
type ShipmentResponse {
items: [Shipment!]!
itemsFound: Int!
offset: Int!
page: Int!
pages: Int!
start: Int!
end: Int!
}
Fields
ShipmentResponse.items ● [Shipment!]! non-null object
List of items of type Shipment
ShipmentResponse.itemsFound ● Int! non-null scalar
Total number of items found
ShipmentResponse.offset ● Int! non-null scalar
The amount of items to show per page
ShipmentResponse.page ● Int! non-null scalar
The current page
ShipmentResponse.pages ● Int! non-null scalar
Total amount of pages
ShipmentResponse.start ● Int! non-null scalar
Start position of the current page
ShipmentResponse.end ● Int! non-null scalar
End position of the current page
Returned By
shipments query