kuzudb / explorer

Browser-based user interface for Kùzu graph database
https://hub.docker.com/r/kuzudb/explorer
MIT License
34 stars 5 forks source link

Display the relationship group name #105

Closed bigluck closed 7 months ago

bigluck commented 7 months ago

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.

Screenshot 2024-03-15 at 11 02 44