gitextract_ouem7f1z/ ├── .formatter.exs ├── .gitignore ├── LICENSE.txt ├── README.md ├── examples/ │ ├── dbml/ │ │ ├── changelog.com/ │ │ │ ├── Clusters.dbml │ │ │ └── Default.dbml │ │ ├── hexpm/ │ │ │ ├── Contexts-as-clusters.dbml │ │ │ ├── Default.dbml │ │ │ └── Only-selected-cluster-Accounts-context.dbml │ │ └── plausible-analytics/ │ │ ├── Contexts-as-clusters.dbml │ │ └── Default.dbml │ ├── dot/ │ │ ├── changelog.com/ │ │ │ ├── Clusters.dot │ │ │ ├── Default.dot │ │ │ └── No-fields.dot │ │ ├── hexpm/ │ │ │ ├── Contexts-as-clusters-no-fields.dot │ │ │ ├── Contexts-as-clusters.dot │ │ │ ├── Default.dot │ │ │ ├── No-fields.dot │ │ │ ├── Only-embedded-schemas.dot │ │ │ └── Only-selected-cluster-Accounts-context.dot │ │ └── plausible-analytics/ │ │ ├── Contexts-as-clusters-no-fields.dot │ │ ├── Contexts-as-clusters.dot │ │ ├── Default.dot │ │ └── No-fields.dot │ ├── mermaid/ │ │ ├── changelog.com/ │ │ │ ├── Default.mmd │ │ │ └── No-fields.mmd │ │ ├── hexpm/ │ │ │ ├── Default.mmd │ │ │ └── No-fields.mmd │ │ └── plausible-analytics/ │ │ ├── Default.mmd │ │ └── No-fields.mmd │ ├── plantuml/ │ │ ├── changelog.com/ │ │ │ ├── Clusters.puml │ │ │ └── Default.puml │ │ ├── hexpm/ │ │ │ ├── Contexts-as-clusters-no-fields.puml │ │ │ ├── Contexts-as-clusters.puml │ │ │ ├── Default.puml │ │ │ ├── Only-embedded-schemas.puml │ │ │ └── Only-selected-cluster-Accounts-context.puml │ │ └── plausible-analytics/ │ │ ├── Contexts-as-clusters-no-fields.puml │ │ ├── Contexts-as-clusters.puml │ │ └── Default.puml │ └── quick_dbd/ │ ├── changelog.com/ │ │ └── Default.qdbd │ ├── hexpm/ │ │ ├── Default.qdbd │ │ └── Only-selected-cluster-Accounts-context.qdbd │ └── plausible-analytics/ │ └── Default.qdbd ├── examples_generator.exs ├── lib/ │ ├── ecto/ │ │ └── erd/ │ │ ├── color.ex │ │ ├── document/ │ │ │ ├── dbml.ex │ │ │ ├── dot.ex │ │ │ ├── mermaid.ex │ │ │ ├── plantuml.ex │ │ │ └── quick_dbd.ex │ │ ├── document.ex │ │ ├── edge.ex │ │ ├── field.ex │ │ ├── graph.ex │ │ ├── html.ex │ │ ├── node.ex │ │ ├── render.ex │ │ └── schema_modules.ex │ └── mix/ │ └── tasks/ │ └── ecto.gen.erd.ex ├── mix.exs └── test/ ├── ecto/ │ └── erd_test.exs └── test_helper.exs