Available queries

Associated queryReturns multiple results
Attribute
Attributes✔️

Available fields

LabelTypeNotesNull
idintegerThe id of the attribute
labelstringThe label of the attribute
optionOptionThe option this attribute is linked to (If this attribute's label is "Blue", the option's label will likely be "Color")

Example of a query

query{
  Attributes{
    edges{
      node{
        id
        label
        option{
          label
        }
      }
    }
  }
}