kysmou opened a new issue #56:
URL: https://github.com/apache/incubator-age/issues/56


   * Case sensitivity for label names
   
   Create label name with the first letter of upper case
   SELECT *
   FROM cypher('graph_name', $$
   CREATE (:Person{name: 'Andres', title: 'Developer'})
   $$) as (n agtype);
   
   Search by lowercase label name -> "label person does not exists" error 
   SELECT *
   FROM cypher('graph_name', $$
   match(a:person)
   RETURN a
   $$) as (a agtype);
   -> label person does not exists
   
   Is it a normal case ?
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to