My collegues have created a series of entities using "Google Cloud Datastore".
What I would like to achieve now is to generate a data schema from the set of entities we have got. Something like this.
It does not necessarily have to include the 1:1, 1:many, n:n archs but a UML style data structure generated for each entity would be already a good start.
The challenge is that:
- when clicking on a "record" when colums are empty a data type does not show
- some colum fields are "objects" (which can be complex JSON objects, not sure if I would prefer to model them as a separate entity and link them to it or to leave the word "object")
- referencing between record is done by the developer and I doubt that there is a tool clever enough to understand this. Hence I do not expect to have also hte n:n relations shown.
Is there a project or a tool or a methodology to create this schema starting from an existing "Google Cloud Datastore"?