How can join the collection in mongo db find query?

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:

  1. Pull the collections you need with queries (individually)
  2. 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!