GraphQL OBJECT

ShippingConfiguration

Shipping configuration you specify for a given product.

link Definition

  • type ShippingConfiguration {
  • # Unique ID of the shipping configuration.
  • id: Int!
  • # Name of the shipping configuration.
  • name: String
  • # List of items in the shipping configuration.
  • items: [ShippingConfigurationItem]
  • # Information about client the shipping configuration belongs to.
  • client: Client
  • # Date and time when the shipping configuration created.
  • creationDate: DateTime
  • # User who created the shipping configuration.
  • createdBy: UserAccount
  • # Date and time when the last edit occurred.
  • lastModifyDate: DateTime
  • # User that last modified the shipping configuration.
  • lastModifiedBy: UserAccount
  • # List of products that refer to this shipping configuration.
  • referringProducts: [Product]
  • # List of clients that refer to this shipping configuration.
  • referringClients: [Client]
  • }