-
Notifications
You must be signed in to change notification settings - Fork 29
Open
Labels
enhancementNew feature or requestNew feature or request
Description
API
Other
Description
Other property graphs support this:
CREATE (p:Person:Employee:Manager {name: "Alice", id: 123})
// Matches all nodes with Person label
MATCH (p:Person) RETURN p
// Matches only nodes with both Person AND Employee labels
MATCH (p:Person:Employee) RETURN p
// Matches nodes with at least one of the labels
MATCH (n) WHERE n:Person OR n:Employee RETURN n
Common Patterns
- Type hierarchies:
:Animal:Mammal:Dog - Role combinations:
:User:Premium:Admin - State + type:
:Order:Active:Wholesale
Previous discussion:
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request