For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get attributes list by SKU

This is how you can query GraphQL API on product attributes by SKU

query product {
  product(sku: "SKU72") {
    sku
    attributeList {
      edges {
        node {
          attribute {
            code
            scope
            name {
              value
              language
            }
          }
        }
      }
    }
  }
}

Last updated

Was this helpful?