Neo4j Slide Types
Michael Hunger
Head of Developer Relations
@mesirii | michael@neo4j.org
- Databases are no fun
- Relational pain → Graph fun
- The world is a graph
- Model, query, import
- Developer zone fun
[:Modeling]
The world is a graph
The advantage of not using an aggregate structure in the database is that it allows you to slice and dice your data different ways for different audiences.
Query Title Here
MATCH (h1:Hashtag)-[:TAGS]->(TWEET)<-[:TAGS]-(h2:Hashtag)
WHERE h1.name = {hashtag}
RETURN h1.name AS from, h2.name AS to, COUNT(*) AS value
## id u.username mentions ## 1 hadleywickham 43 ## 2 RLangTip 6 ## 3 nicolemargaret 6 ## 4 hrbrmstr 6 ## 5 megcevans 5