Available queries

Associated queryReturns multiple results
Pack
Packs✔️

Available fields

LabelTypeNotesNull
idintegerThe id of the pack
labelstringThe label of the pack✔️
pricesPricesThe prices used for the pack
quantitydecimal(17,7)The quantity of product contained in the pack
variantVariantThe variant used to create this pack

Example of a query

query{
  Packs{
    edges{
      node{
        id
        label
        prices{
          edges{
            node{
              id
            }
          }
        }
        quantity
        variant{
          label
        }
      }
    }
  }
}