Skip to Content

Deliverer

Represents a shipping provider, including its contact and address information.

Type Definition

type Deliverer { name: String address: String zipcode: String city: String country: String state: String phone: String email: String url: String currency: String language: String }

Fields

FieldTypeDescription
nameStringThe name of the shipping provider.
addressStringThe address of the shipping provider.
zipcodeStringThe postal code of the shipping provider’s address.
cityStringThe city where the shipping provider is located.
countryStringThe country of the shipping provider.
stateStringThe state or region of the shipping provider.
phoneStringThe contact phone number for the shipping provider.
emailStringThe contact email address for the shipping provider.
urlStringThe website URL of the shipping provider.
currencyStringThe currency used by the shipping provider.
languageStringThe language preference of the shipping provider.

Relationships

The Deliverer type is referenced by the Product type through the deliverer field, allowing products to specify their associated shipping provider along with complete contact and address details.

Example

query GetDelivererInfo { product(id: 12345) { deliverer { name address zipcode city country state phone email url currency language } } }

Implements

This type does not implement any interfaces.

  • Product