from the cypher documentation, it gives the following running code
CREATE (n:Actor { name:"Tom Hanks" });
My question is, what is "n". it doesn't seem to be used in any subsequent example code and is not explained.
the original documentation is here
http://docs.neo4j.org/chunked/milestone/cypherdoc-create-nodes-and-relationships.html
Another point that is unclear to me is does "n:Actor" set the label of the node??