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!
  • 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
  • externalIds: [ExternalID!]!
  • # The golden product this variant belongs to
  • goldenProduct: GoldenProduct!
  • 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 size of the item. Used for comparable unit pricing.
  • itemSize: Float
  • 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
  • # 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 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
  • 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!
  • }