I am trying to query multiple documents based on an array of document IDs.
Here is an example array: [{_id: '123151djadjw11', quantity: 1}, {_id: 'some4idda123131', quantity: 2}];
I want to be able to send an array like that to the server and retrieve the documents matching the ID property in each of the objects in the array.
Any ideas would be greatly appreciated! Thanks in advance!