age
age copied to clipboard
"Hierarchical: graph label organization"....How to?
One of the features listed in doc is "Hierarchical: graph label organization", but I didn't get to find any example about this feature in the documentation. How to declare a label hierarchy?
There is a PR for multiple label support that is currently under review. It allows modelling hierarchy like below-
CREATE (:Parent)
CREATE (:Parent:Child1)
CREATE (:Parent:Child1:Child2)
MATCH (:Parent) -- returns all three
MATCH (:Child1) -- returns last two
Closing due to inactivity.