# ShippingMethod A shipping method available in the store, including title, description, and logo. ## Type Definition ```graphql type ShippingMethod { title: String shortDescription: String description: String logo: String } ``` ## Fields | Field | Type | Description | |-------|------|-------------| | title | String | Returns the title. | | shortDescription | String | Returns the short description. | | description | String | Returns the description. | | logo | String | Returns 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 ```graphql query { shippingMethods { title shortDescription description logo } } ``` ## Implements None ## Related Types None