What kind of modeling software does mongodb have?

in the past, MySQL used to design er diagrams using powerdesigner,. Now it has been changed to mongodb. Is there any useful software for drawing er diagrams?

Nov.26,2021

Emurr (Entity Relationship Diagram) is originally a graph used to describe the relationship between entities in a relational model. The first point in the use of MongoDB is to remove relationships as much as possible and use anti-paradigm to centralize data in a single document as much as possible, because the cost of relationships in a distributed environment is too high and will have a serious impact on efficiency.
so when adopting Mongo, the first task is to destroy the relationship, so naturally there is no opportunity for ER diagrams to show their talents.

Menu