INPUT_OBJECT

GoldenProductVariantInput

link GraphQL Schema definition

  • input GoldenProductVariantInput {
  • # The golden product this variant belongs to.
  • goldenProductId: ID!
  • # Notes for the golden product variant.
  • notes: String
  • # Description for the golden product variant.
  • description: String
  • # Barcodes associated to the golden product variant.
  • barcodes: [String!]
  • # SKU for the golden product variant.
  • sku: String
  • # The size of the item. Used for comparable unit pricing.
  • itemSize: Float
  • # Shows if the golden product variant is active
  • active: Boolean
  • # The comparable size of the item. Used for comparable unit pricing.
  • comparableSize: Float
  • # The recommended retail price (RRP) for the item.
  • recommendedRetailPrice: String
  • # Tax code applicable for the golden product variant.
  • taxCode: String
  • images: [ImageInput!]
  • # External IDs key/value pairs.
  • externalIds: [KeyValueInput!]
  • # Metadata key/value pairs.
  • metadata: [KeyValueInput!]
  • shippingParcel: ShippingParcelInput
  • shippingProfileId: ID
  • # Option values of the golden product variant. If this argument is given, product
  • # option values will be updated to match the input and delete the missing ones.
  • optionValues: [GoldenProductVariantOptionValueInput!]
  • }