0

Is Cypher case sensitive or not? I've read a lot of different things. Some say yes, others no. Does it depend on the graph database and Cypher flavor that you use?

KWriter
  • 1,024
  • 4
  • 22
  • 1
    Neo4j Cypher is case sensitive for sure. It caused me a lot of issues at first. – Vincent Rupp Nov 04 '22 at 23:06
  • Thanks, Vincent. I've searched for old Stack overflow questions and it seems that it is better to treat it as if it is always case-sensitive. – KWriter Nov 09 '22 at 10:52

1 Answers1

1

Yes, Cypher query language is case-sensitive. This is true for property values as well as labels. Clauses are not case-sensitive.

KWriter
  • 1,024
  • 4
  • 22