OBJECT

GoldenProductVariant

A variant under the golden product record.

link GraphQL Schema definition

  • type GoldenProductVariant implements Node {
  • # Shows if the golden product variant is active
  • active: Boolean!
  • # A message from the organisation responsible for therapeutic goods labelling.
  • administrativeBodyWarning: String
  • # The ingredients always in this item that cause allergic reactions.
  • allergenContains: String
  • # The ingredients possibly in this item that cause allergic reactions.
  • allergenMayContain: String
  • barcodes: [String!]
  • # The comparable size of the item. Used for comparable unit pricing.
  • comparableSize: Float
  • # When the golden product variant was created.
  • createdAt: ISO8601DateTime!
  • # Description for the golden product variant.
  • description: String
  • # Usage instructions for the item.
  • directions: String
  • externalIds: [ExternalID!]!
  • # The golden product this variant belongs to
  • goldenProduct: GoldenProduct!
  • # The health warnings of the item.
  • healthWarnings: String
  • id: ID!
  • # Arguments
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # before: Returns the elements in the list that come before the
  • # specified cursor.
  • # first: Returns the first _n_ elements from the list.
  • # last: Returns the last _n_ elements from the list.
  • images(after: String, before: String, first: Int, last: Int): ImagesConnection!
  • # The ingredients in the item.
  • ingredients: String
  • # The intended purpose of the item.
  • intendedPurpose: String
  • # The size of the item. Used for comparable unit pricing.
  • itemSize: Float
  • # The individual item tax rate on the golden product variant.
  • itemTaxRate: Decimal
  • legacyId: Int!
  • # Comparable Unit as a Configurable Unit of Measure
  • measurementComparableUnit: MeasurementUnit
  • # Item Unit as a Configurable Unit of Measure
  • measurementItemUnit: MeasurementUnit
  • # Metadata key/values
  • metadata: [Metadatum!]!
  • notes: String
  • # The nutritional profile of the item.
  • nutritionInformation: String
  • # This field returns option type values set to the golden product variant.
  • #
  • # Arguments
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # before: Returns the elements in the list that come before the
  • # specified cursor.
  • # first: Returns the first _n_ elements from the list.
  • # last: Returns the last _n_ elements from the list.
  • optionValues(after: String, before: String, first: Int, last: Int): GoldenProductVariantOptionValueConnection!
  • # The product warnings of the item.
  • productWarnings: String
  • # The recommended retail price (RRP) for the item.
  • recommendedRetailPrice: String
  • # The direct shipping parcel information for the golden product variant.
  • shippingParcel: ShippingParcel
  • shippingProfile: ShippingProfile
  • sku: String
  • # How to store the item.
  • storageInstructions: String
  • # The suitability of the item for various ailments.
  • suitableFor: String
  • taxCode: String
  • # When the golden product variant was last updated.
  • updatedAt: ISO8601DateTime!
  • # Variants associated to the golden product variant
  • #
  • # Arguments
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # before: Returns the elements in the list that come before the
  • # specified cursor.
  • # first: Returns the first _n_ elements from the list.
  • # last: Returns the last _n_ elements from the list.
  • # displayableOnly: Whether to only fetch variants that are
  • # displayable (e.g. are valid, have inventory available)
  • variants(
  • after: String,
  • before: String,
  • first: Int,
  • last: Int,
  • displayableOnly: Boolean
  • ): VariantConnection!
  • }