Available queries

Associated queryReturns multiple results
Price
Prices✔️

Available fields

LabelTypeNotesNull
amountdecimal(14,4)The price
currencyCurrencyThe currency used for this price
idintegerThe id of this price
packPackThe pack using this price (if there is one)✔️
price_levelPrice LevelThe price level used for this price
variantVariantThe variant using this price (if there is one)

Example of a query

query{
  Prices{
    edges{
      node{
        amount
        currency{
          iso
        }
        id
        pack{
          id
        }
        price_level{
          id
        }
        variant{
          label
        }
      }
    }
  }
}