PyConlineAU 2020 Talk
Link to video: PyConlineAU 2020: Graph Databases will Change Your Life
Come join the Canberra Python User Group (CPUG)
We also have a slack: Canberra PUG slack
// Create Python
CREATE (guido:Person {name: "Guido"})
CREATE (python:Language {name: "Python"})
CREATE (guido)-[:CREATED]->(python)
RETURN guido, python
Full set of examples here: example.cypher
Recommend:
// Find the missing link
:params {person_name: "Cris"}
MATCH (subject:Person)
WHERE subject.name=$person_name
MATCH
(dept:Department {name: "IT Department"})
-[:WORKS_AT]-
(people:Person)
-[:LIKES]-
(likeable_framework:Framework)
-[:LANGUAGE]-
(:Language {name: "Python"})
WHERE NOT (subject)-[:LIKES]->(likeable_framework)
RETURN likeable_framework
.. and derp: derp.cypher
Many thanks: @pyconau, @nextdayvideo, @developerjack, @jeamland, @ExcitedLeigh, @kantrn, @xfxf
and to all the python friends!
Thanks to Neo4j staff who have been amazingly kind, and let me re-use many of their great diagrams: Alicia Frame, Max de Marzi, our local person: Joshua Yu and the wonderful Karin Wolok.