GraphGists

Mystery Science Theater 3000 Actors and Characters

This Graph is based on the MST3K TV-series that ran during the 1990s. Awesome TV-serie, my favourite actually. I created this Graph based on the characters of the show and where they live/reside/hunt, and which actors played them. As the Actors usually played several characters, and many characters were played by several actors, the graph get’s a bit interesting :) Enjoy!

1380475993

Who lives where?

MATCH l<-[:IS_IN]-c
RETURN l.name AS Location, c.name AS Character

Who plays Crow and Tom Servo?

MATCH c-[:PLAYED_BY]->a
WHERE c.name='Tom Servo' OR c.name='Crow T. Robot'
RETURN c.name AS Character, a.name AS Actor

Who lives on the SOL?

MATCH l<-[:IS_IN]-c
WHERE l.name='Satellite of Love'
RETURN l.name AS Location, c.name AS Character

Who lives in Deep 13?

MATCH l<-[:IS_IN]-c
WHERE l.name='Deep 13'
RETURN l.name AS Location, c.name AS Character

Who rides around in the Widowmaker?

MATCH l<-[:IS_IN]-c
WHERE l.name='Widowmaker'
RETURN l.name AS Location, c.name AS Character