A space to discuss GraphQL queries, mutations, troubleshooting, throttling, and best practices.
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hello,
I built an importer for products and variations with images.
Everything works fine.
Sometimes I want to update that data more regularily and avoid pushing the images. However it seems images get overwritten.
What is the solution here, do I have to get the imageids first?
I would like to avoid that as it increases he number of calls quite significantly.
Solved! Go to the solution
This is an accepted solution.
If not handing over the media id the original images get deleted. I got this sorted with a seperate call to get the media id. It is a bit cumbersome, as it increases the number of calls to the api. Would be much better just to set a flag, but it is what it is.
I solved this one.
This is an accepted solution.
If not handing over the media id the original images get deleted. I got this sorted with a seperate call to get the media id. It is a bit cumbersome, as it increases the number of calls to the api. Would be much better just to set a flag, but it is what it is.