EntitiesAttributeQueriesCopy PageAttributes are custom characteristics (e.g. Color, Size) used to classify products and their variants. Available queries Attribute - Returns a single attribute based on the id provided GraphQLquery { Attribute (id: 100012) { id label option { id label } } } Attributes - Returns a list of attributes based on the filter define GraphQLquery { attributes { data { id label } } } Available fields id Int Unique identifier of the attribute label String Name of the attribute (ex: Red, Blue, XL, M) option Option - Subquery Option of the attribute Filters You can create filters based on following fields labelExample: { "column" : "LABEL", "operator" : "EQ", "value" : "blue" } option_idExample: { "column" : "OPTION\_ID", "operator" : "EQ", "value" : 199876 } Sorting You can sort data based on following fields : id, labelUpdated 19 days ago MutationsMutationsDid this page help you?YesNo