= This is Dr. A's Cheat Sheet of Neo4J commands =

Yes, this is a very simple cheatsheet, but I don't use Neo4J that often, so it is necessarily simple. 

== Creating Nodes ==

Name should be small so that you can easily view them on the screen when looking at the graph, because by default, name becomes the label.

{{{#!cypher
CREATE (var:Type {Name: "Name here", Attr1: "attribute 1..."})
}}}

== Query ==

The where conditions should look similar to the expression in the {} section of the create.  

{{{#!cypher
 MATCH (var:Type {[where conditions]}) RETURN var
}}}

== Delete ==
{{{#!cypher
MATCH (var:Type) DETACH DELETE var
}}}