GitXplorerGitXplorer
e

graph-fun

public
5 stars
0 forks
0 issues

Commits

List of commits on branch master.
Verified
b18e3874c7e7001ab902f83a9ffc322a4a7f00f0

Update notebook.py to point to data cypher

eelena committed 4 years ago
Unverified
b7955f6f6a383b4f0c2fa156cbec50243373fd7d

Add slides copy and link

eelena committed 4 years ago
Unverified
680c63b8a255c02cc9db6c3f00149a69f860d20f

Removing scratchy crufty-cruft and bail-out. Goodness.

eelena committed 4 years ago
Unverified
e3a7896497c4a6b65f413de05d4055438d793a59

More intuitive link action and pro CPUG propaganda

eelena committed 4 years ago
Unverified
7964a02de27449062bc5f4d058fe18b1914d0894

TYPO!

eelena committed 4 years ago
Unverified
886b7d45b82dbae4e444ab49b3ff440e6b9d8779

Add talk materials and credits :)

eelena committed 4 years ago

README

The README file for this repository.

PyConlineAU 2020 Talk

Graph Databases will Change Your Life

Full talk on Youtube:

Link to video: PyConlineAU 2020: Graph Databases will Change Your Life

Link to video: PyConlineAU 2020: Graph Databases will Change Your Life

Canberra Python User Group is Super Rad!

Come join the Canberra Python User Group (CPUG)

We also have a slack: Canberra PUG slack

CPUG Apr 2021 Slides used:

PyConlineAU 2020 Demo Code used:

Jupyter Notebook:

notebook.ipynb

Cypher Queries:

// 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.

Full credits