Hello,
It is written in the documentation https://shopify.dev/docs/apps/build/graphql/migrate/new-product-model/sync-data#create-a-product-with-variants-and-options-asynchronously
" The productSet mutation has an input limit of 2K variants when run asynchronously and only 100 variants when run synchronously "
And here: https://shopify.dev/docs/api/admin-graphql/2024-07/mutations/productSet
“When run in synchronous mode, the productSet mutation has an input limit of 100 variants. If you anticipate any of your use cases requiring support for more than 100 variants, please use the mutation in asynchronous mode (default).”
So I used the asynchronous mutation, but I have this return code:
‘Can only specify a maximum of 100 product variants’
How is this possible ?