Available queries

Associated queryReturns multiple results
Component
Components✔️

Available fields

LabelTypeNote
quantitydecimal(17,7)The quantity of each component required to create the assembly
typestringThe component's type
variantSub-request to VariantThe variant used as component

Example of a query

query{
  Components{
    edges{
      node{
        quantity
        type
        variant{
          label
        }
      }
    }
  }
}