How can join the collections in mongodb.
I'm writing the find query for a collection and I want to join it with another collection.
Hey Pradip!
Not too experienced with Mongo DB integration but you can do the following:
- Pull the collections you need with queries (individually)
- Use "Query JSON with SQL" to join the collections based on your need.
You can find an example in the documentation.
Hope this helps!
hey @stefancvrkotic
thanks, let me try this trick!