Hi,
How do I create a new database (sub graph) according to my existed graph?
For example:
MATCH (n: User) -[r: KNOW]-(m: User)
WHERE n.age < 30 and m.age < 30
RETURN n, r, m
The new database would be consisted of n, r, m
Thanks!
The reason why I wa...