Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
02-18-2019 04:48 AM
Hello,
As per the screenshot -
My query is -
MATCH (n)-[*]-(find) WHERE find.name =~'(?i).*Success.*' RETURN n,r,find
Here, we get all the nodes that are connected to Success, till 3 levels of Relationships. However, we want Label/Relationship "API" only connected to Success .
How to obtain that ?
02-19-2019 04:13 PM
You mean something like:
MATCH (n:API)-[*]-(find) WHERE find.name =~'(?i).*Success.*'
RETURN n, find
Or do you mean that every node (except find
) must be an :API labeled node?
All the sessions of the conference are now available online