neo4j-sh (?)$ match (cluster {cvenue: "NULL"}) return cluster.cvenue, cluster.ctitle, labels(cluster) limit 1;
+---------------------------------------------------------------------------------------------------------------------+
| cluster.cvenue | cluster.ctitle | labels(cluster) |
+---------------------------------------------------------------------------------------------------------------------+
| "NULL" | "FL, Wang SH. Role of heredity in the genesis of myopia. Ophthalmic Physiol Opt" | ["Cluster"] |
+---------------------------------------------------------------------------------------------------------------------+
neo4j-sh (?)$ match (cluster:Cluster {cvenue: "NULL"}) return cluster.cvenue, cluster.ctitle, labels(cluster) limit 1;
+---------------------------------------------------+
| cluster.cvenue | cluster.ctitle | labels(cluster) |
+---------------------------------------------------+
+---------------------------------------------------+
neo4j-sh (?)$ CREATE (n:Actor { name:"Tom Hanks" });
+-------------------+
| No data returned. |
+-------------------+
Nodes created: 1
Properties set: 1
Labels added: 1
1317 ms
neo4j-sh (?)$ MATCH (actor:Actor { name: "Tom Hanks" }) return labels(actor);
+---------------+
| labels(actor) |
+---------------+
| ["Actor"] |
+---------------+
1 row
849 ms
<sample-data.txt>
--
You received this message because you are subscribed to a topic in the Google Groups "Neo4j" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/neo4j/0mlsx6_3x_Y/unsubscribe.
To unsubscribe from this group and all its topics, send an email to neo4j+un...@googlegroups.com.