Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
03-07-2022 06:14 AM
MATCH (p:PERSON) WHERE p.name='Emil Eifrem' DETACH DELETE p is not working
it say no records nochage
03-07-2022 06:16 AM
Hi @harsimran_kaur1 ,
Have you tried with
MATCH (p:Person) WHERE p.name='Emil Eifrem' DETACH DELETE p
?
Labels are case sensitive.
Bennu
03-07-2022 06:28 AM
@bennu.neo is correct here, the Cypher statement itself is case insensitive (eg. MATCH/match/MaTcH) but the data (Labels, relationship types, properties) is case sensitive.
03-07-2022 06:42 AM
Thanks, I already figured it out and completed the task
All the sessions of the conference are now available online