meshy / django-schema-graph

An interactive graph of your Django model structure
https://pypi.org/project/django-schema-graph/
MIT License
350 stars 9 forks source link

Rework schema data structure #64

Closed meshy closed 1 year ago

meshy commented 1 year ago

We used to generate the schema with each type of edge and node in a different list.

This instead groups everything into edges or nodes, and marks those differences with "tags" such as "abstract" etc.

Some work is done in the view to convert back into the old format so that the work on the front-end can be handled separately.