I am trying to create a product with more than 100 variants with the productSet mutation in asynchronous mode, but getting an error VARIANTS_OVER_LIMIT. Is this not available yet ? I am trying on a development store.
Below is the mutation (I am providing False for synchronous, and version is 2024-04)
mutation createProductAsynchronous($productSet: ProductSetInput!, $synchronous: Boolean!) {
productSet(synchronous: $synchronous, input: $productSet) {
product {
id
}
productSetOperation {
id
status
userErrors {
code
field
message
}
}
userErrors {
code
field
message
}
}
}