Skip to content

Instantly share code, notes, and snippets.

@davidrapin
Created January 23, 2015 19:12
Show Gist options
  • Save davidrapin/3073da076e304bfbc357 to your computer and use it in GitHub Desktop.
Save davidrapin/3073da076e304bfbc357 to your computer and use it in GitHub Desktop.
Cypher query: source and target Labels for relationships.
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