Hi does anyone know how to go about updating ALL product/variant prices with an API call?
Do I need to loop over each product/variant or is there a way to do it in a single call?
Obviously I don’t want to blow up API limits etc, what is the best practice to do such a thing?
Thanks in advance for any help/advice.
Hi netifyco,
An option exists of saving all the data for the changes in a jsonl file and using a [GraphQL Bulk Mutation] to execute all those changes in a single API call.
The most time consuming part would be the creation of the data file which would need to list each item being changed and the new value(s).
Thanks for your solution @ShopifyDevSup certainly sounds promising. I will give it a whirl and see how I get on.