Skip to main content

CartCarrier

Shipping carrier information for cart delivery options.

Represents available shipping providers with their pricing and delivery estimates for the current cart configuration.

type CartCarrier {
id: Int!
name: String!
logo: String
price: Float!
deliveryDeadline: DateTime
}

Fields

CartCarrier.id ● Int! non-null scalar

Unique identifier for the shipping carrier.

Used to select this carrier for cart delivery and track carrier-specific configurations.

CartCarrier.name ● String! non-null scalar

Display name of the shipping carrier.

Human-readable carrier name shown to customers during carrier selection.

CartCarrier.logo ● String scalar

URL or path to the carrier's logo image.

Visual identifier for the carrier, used in user interfaces for carrier selection.

CartCarrier.price ● Float! non-null scalar

Estimated shipping cost for this carrier.

Indicative pricing for delivery through this carrier. Final costs may vary based on business rules, promotions, and actual shipping calculations.

CartCarrier.deliveryDeadline ● DateTime scalar

Expected delivery deadline for this carrier.

Estimated date when the order would be delivered if this carrier is selected. Based on current processing times and carrier schedules.

Member Of

Cart object