I would like to export information across collection. For example, I have 2 collection User and Orders. User contains login info(username) and orders contains the orderID. So when a customer purchases something, the orderID will be generated in the Orders collection and their userID(not the same as username) will be recorded in the order. So I have to reference the userID to find the username within User collection.
I would like to export the orderID alongside the username. Is that possible? As it currently stands, mongodb compass has the export button only when you've selected the collection.