In my graph db I've defined many GROUP relationships similar to:
CREATE REL TABLE GROUP WrittenIn (
FROM SnapshotFile TO Language,
FROM Fn TO Language,
FROM Runtime TO Language ,
version STRING
)
On both the Schema and Shell tabs, the graph displays the internal name of the relationship (e.g., WrittenIn_SnapshotFile_Language) instead of the one defined in the code WrittenIn (which is the one to be used when querying the data). This makes it challenging to understand the actual relationships between the objects.
In my graph db I've defined many GROUP relationships similar to:
On both the Schema and Shell tabs, the graph displays the internal name of the relationship (e.g.,
WrittenIn_SnapshotFile_Language
) instead of the one defined in the codeWrittenIn
(which is the one to be used when querying the data). This makes it challenging to understand the actual relationships between the objects.