I have created labels on all my nodes:

   - neo4j-sh (?)$ match (u) return u,labels(u) limit 1;
   - 
   ==> +----------------------------------------------------------------------+
   - 
   ==> | u                                            | labels(u)             |
   - 
   ==> +----------------------------------------------------------------------+
   - 
   ==> | Node[0]{user_name:"abc",email:"[email protected]"} | 
["users","batch_dev"] |



However, when I query using a label, no node is returned:


   - neo4j-sh (?)$ match (u:users) return u limit 1;
   - ==> +---+
   - ==> | u |
   - ==> +---+
   - ==> +---+
   - ==> 0 row
   - ==> 1 ms


Any pointers on what I'm missing here?

-- 
You received this message because you are subscribed to the Google Groups 
"Neo4j" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to