Graphql Commerce API not returning variant data

Hi,
please make sure that you feed defines the variant as described here [1], like

[
    {
        "op": "add",
        "path": "/products/435898",
        "value": {
            "attributes": {
                "title": "awesome brakes",
            },
            "variants": {
                "43589801": {
                    "attributes": {
                        "availability": true
                    }
                },
                "43589802": {
                    "attributes": {
                        "availability": true
                    }
                }
            },
...

Regards,

[1] Format your Data (Product)

1 Like