GraphGists

Asterix the Gaul - Characters

by [@sfrechette] (https://twitter.com/sfrechette)

This is a sample subset for you to explore.
For the complete model (Cypher Query) and Graph Database with all characters, nodes and relationships:
https://github.com/neo4j-contrib/graphgist/wiki/Asterix-Dataset

Relationship types:

  • COMPAGNON_AVENTURE → Remarkable fellow

  • APPARAIT_DANS → Album they appear in

  • NATIONALITE → Nationality

  • PERSONNAGE_TYPE → Character type

Sample Dataset (Cypher query)

Query 2 returns which albums Cleopatra appeared in

MATCH (a)<-[:APPARAIT_DANS]-(c)
WHERE c.name= 'Cleopatre'
RETURN a.name as album

Query 3 returns who are Julius Caesar remarkable fellows

MATCH (b)<-[:COMPAGNON_AVENTURE]-(d)
WHERE d.name= 'Jules Cesar'
RETURN b.name as fellow