Hi,
I am trying to add products (or variants) to a Shipping Profile using GraphQL v2025-07.
According to Shopify’s documentation AI I should be able to use productUpdate mutation with:
input: {
id: “gid://shopify/Product/1234567890”
deliveryProfileId: “gid://shopify/DeliveryProfile/987654321”
}
But I got “InputObject ‘ProductInput’ doesn’t accept argument ‘deliveryProfileId’”
I also tried variantsToAssociate, with the same response.
I need to be able to set different Shipping Profiles for different products, so the checkout double the shipping if 2 products with 2 different Shipping Profiles are bought.
How can I achieve this with GraphQL?
With kind regards, Johan.