eg. I have two collections (i.e C1, C2) both collections have same columns (i.e _id, Message, Date) and I want to fetch only 50 documents from C1 and C2 in ascending order of date.
I am getting data from one collection only by using following query on mongo shell
db.C1.find({"date" : { "$gt" : ISODate("2018-05-18T00:00:00.203+0000")}})
.sort({ "date" : 1.0 }).limit(50);
but I want data from both collections.