Created
January 23, 2015 19:12
-
-
Save davidrapin/3073da076e304bfbc357 to your computer and use it in GitHub Desktop.
Cypher query: source and target Labels for relationships.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MATCH (a)-[r]->(b) | |
WHERE type(r) = 'ACTED_IN' | |
RETURN type(r), labels(a), labels(b) | |
LIMIT 100 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment