OrderShipment
Contains order shipment details.
type OrderShipment = {
__typename?: 'OrderShipment'; /** Comments added to the shipment. */
comments?: Maybe<Array<Maybe<SalesCommentItem>>>; /** The unique ID for a `OrderShipment` object. */
id: Scalars['ID']['output']; /** An array of items included in the shipment. */
items?: Maybe<Array<Maybe<ShipmentItemInterface>>>; /** The sequential credit shipment number. */
number: Scalars['String']['output']; /** An array of shipment tracking details. */
tracking?: Maybe<Array<Maybe<ShipmentTracking>>>;
};