How can I use the Bulk Mutation operation to create multiple variants for new products? I work on a dropshipping app that allows users to import our product catalog to their Shopify store. We used to use the productCreate mutation in a bulk mutation, but productCreate no longer allows for creation of multiple variants. It seems that productVariantCreate is not one of the allowed mutations, even if productVariantUpdate is.
Can anyone advise? Should I just create Variants for products one by one with productVariantBulkCreate?
I second this needs to be added… Before, we used to be able to do one bulk mutation on productCreate.
Now we need to do productCreate then productVariantsBulkCreate but the latter isn’t enabled with bulk mutation. Productset is not a solution because we can’t set inventory items (e.g. costs) or add media like some people have pointed out.