GraphGists

This is the full account of all Neo4j-T-Shirts given by different members of the community. Wanna join? Contact one of them! They look something like this (Courtesy René Pickhardt):

streamshirt
Wait a while for the data to load, it’s still a bit slow, hosted on a weak instance on Heroku.

The setup data

Below is the cypher-export of the T-Shirt data from a Google Spreadsheet where we keep track of all the order that have been going out. This data is not yet complete as some of the names are not properly filled in, giving no tgraph-property on the respective node.

Let’s find the most connected graphistas

MATCH graphista--other
RETURN graphista.tgraph AS name, COUNT(other) AS friends, ID(graphista) AS id
ORDER BY friends DESC