Query data from an available table in database

Hi.
I have an availabe mongo database manhdodb and a table Sample in it.
Now I create a new django project and connect to manhdodb.
But How to query data from the table Sample?

See Django Integration With MongoDB Tutorial | MongoDB

1 Like

Thank you.
I tried using inspectdb but it did not work.
I will follow link.

Inspectdb doesn’t make any sense for MongoDB. There is no “schema” to identify.

1 Like

yes. The simple CRUD operations of PyMongo worked very well.
Thank you so much.