I'm wondering whether Mongock has support for running a changelog multiple times with a list of parameters. My use case involves needing to insert multiple documents following the same template into one MongoDB collection, but with various values which are stored in a separate MongoDB collection.
Ideally, I'd like to write one changelog specifying the document to insert in the first collection, with an argument that I can use to set a value in the inserted document. Then, I'd like this changelog to be run multiple times for each of the values from a separate collection. Is this supported in Mongock? And if not, is there a better migration tool that would allow me to do this?
I've gone through the Mongock documentation and am not seeing any features that seem to be relevant for this...