Deliverer
A shipping carrier assigned to a product or order, including name and contact 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
Relationships
The Deliverer type is used to represent shipping carrier information associated with products and orders. It is referenced by the Product type through the deliverer field, allowing product queries to include detailed shipping provider information.
Example
{
deliverer {
name
address
zipcode
city
country
state
phone
email
url
currency
language
}
}Implements
None
Related Types
- Product