Skip to main content

Carrier

No description

type Carrier {
id: Int!
name: String!
type: CarrierType!
descriptions: [LocalizedString!]
shippingCost: Float!
trackAndTraceURL: String
logo: String
createdAt: DateTime!
lastModifiedAt: DateTime!
createdBy: Int
lastModifiedBy: Int
warehouses: [Warehouse!]
}

Fields

Carrier.id ● Int! non-null scalar

Carrier primary identifier

Carrier.name ● String! non-null scalar

Carrier name

Carrier.type ● CarrierType! non-null enum

Carrier type

Carrier.descriptions ● [LocalizedString!] list object

Carrier description per language

Carrier.shippingCost ● Float! non-null scalar

Carrier.trackAndTraceURL ● String scalar

Track and Trace redirect URL

Carrier.logo ● String scalar

Logo url

Carrier.createdAt ● DateTime! non-null scalar

Carrier creation date

Carrier.lastModifiedAt ● DateTime! non-null scalar

Carrier last modified date

Carrier.createdBy ● Int scalar

The userId of the user that created the carrier

Carrier.lastModifiedBy ● Int scalar

The userId of the user that last modified the carrier

Carrier.warehouses ● [Warehouse!] list object

Returned By

carrier query ● carrierCreate mutation ● carrierUpdate mutation

Member Of

CarriersResponse object