Hello, I have a mutation that looks like this
mutation {
productCreate(
input: {
handle: "closeout-50-off-ls2-bagger-solid-gloss-black-half-helmet",
title: "CLOSEOUT 50% OFF LS2 Bagger Solid Gloss Black Half Helmet",
productType: "",
vendor: "LS2",
tags: ["Brand_LS2", "Open Box", "Product Type_SALE", "Sale"],
productOptions: [
{
name: "Size",
values: [
{ name: "XS" },
{ name: "S" },
{ name: "XL" }
],
position: 1
}
]
},
collectionsToJoin: [
"gid://shopify/Collection/285094805592",
"gid://shopify/Collection/285093593176",
"gid://shopify/Collection/285091528792",
"gid://shopify/Collection/286035017816"
]
) {
product {
id
title
}
userErrors {
field
message
}
}
}
And the collections aren’t being added to the product. The collections exist and the collection id’s are correct. Any help would be greatly appreciated!