I have a workflow to create/update products and am using this workflow as a step:
batchProductsWorkflow.runAsStep({
input: {
create: productsToCreate,
update: productsToUpdate,
},
});
I have another workflow to create/update collections, but I see there is no batchCollectionsWorkflow. Is there a way to achieve the same thing as above? It doesn't look like looping updateCollectionsWorkflow within the workflow works.