Objects

OptionType

Type containing information for an option in a product package group

Type containing information for an option in a product package group

type OptionType {
  optionId: Int!
  name: String
  quantity: Int!
  isSelected: Boolean!
  sortOrder: Int!
  product: ProductType
}

Fields

optionId ● Int! non-null scalar required

The option id

name ● String scalar

The name of the option

quantity ● Int! non-null scalar required

The quantity of items that is chosen if this option is selected

isSelected ● Boolean! non-null scalar required

'true' if this option should be selected by default

sortOrder ● Int! non-null scalar required

The sort order of this option relative to other options

product ● ProductType object

The product that this options refers to

Member Of

GroupType object