Bulk Mutation for Variant Creation

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?

Thanks

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.

I have the same issue, I need to import hundreds of products with variants (including images, price and quantity) in bulk mode.

  1. productCreate doesn’t create variants

  2. productSet does’t include media, inventory quantities

I hope there is a solution to performe bulk operation to create products and variants (with images, quantities and prices).