How to get list of record using _id, I've list of unique _ids in my arraylist, I want to pass all these ids in one shot to Mongodb query and get the list of records.
For Example: I've below Emp Ids:
- 1232 2322 4344 2939
I want to get all these employee details in a single mongo query using java, is that achievable if yes can someone help how to do that in java?
Appreciated your help in advance!