Skip to Content

ShippingMethod

A shipping method available in the store, including title, description, and logo.

Type Definition

type ShippingMethod { title: String shortDescription: String description: String logo: String }

Fields

FieldTypeDescription
titleStringReturns the title.
shortDescriptionStringReturns the short description.
descriptionStringReturns the description.
logoStringReturns the logo.

Relationships

ShippingMethod represents a shipping option offered by the store. It contains metadata about the shipping method including its presentation elements (title, logo) and descriptive content. This type is typically returned as part of shipping-related queries or mutations when displaying available shipping options to customers.

Example

query { shippingMethods { title shortDescription description logo } }

Implements

None

None