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
}
}
}
}
}
}
}