Hi all,
I’m trying to post a “productVariantCreate” mutation to my store and is not working. The other mutation (“productCreate”) works fine so is definitely not a problem with the connection to the store.
This is the body of the post:
"mutation {
productVariantCreate(input: {
id: \"#{gid}\",
sku: \"#{variant.sku}\",
price: \"#{variant.price}\"
}) {
product {
id
}
}
}"
where gid = gid://shopify/Product/4458873847945, variant.sku = 123456789, price = 100.0
I’m getting the following message after attempting the post:
"Internal error. Looks like something went wrong on our end.\nRequest ID: 29e634db-c496-494d-adc9-62c2924d5f0f (include this in support requests)."
Please help me solve this issue ![]()