audiBookning commented on issue #56:
URL: https://github.com/apache/incubator-age/issues/56#issuecomment-827595629
@kysmou I do not know about Agensgraph or openCypher, but in Neo4j, Labels
are case-sensitive.
It has been some time that i last used neo4j and i wasn't sure, so i decided
to confirm in the docs.
From the Neo4j Cypher Manual v4.2:
> Case-sensitive:
> Names are case-sensitive and thus, :PERSON, :Person and :person are three
different labels, and n and N are two different variables.
Some times the implementation can be different from the manual. I tried your
queries in neo4j:
```
CREATE (:Person{name: 'Andres', title: 'Developer'})
> Added 1 label, created 1 node, set 2 properties,
MATCH (a:person) RETURN a
> (no changes, no records)
```
In the Match operation, it also gives me a contextual warning:
> The provided label is not in the database.
One of the labels in your query is not available in the database, make sure
you didn't misspell it or that the label is available when you run this
statement in your application (the missing label name is: person)
--
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]