baderk.cs
(Baderk Cs)
1
Hello
I am sorry it is a newbie question. I researched about how I can make such a query. The following is what I want, but it gives an error.
MATCH (n:) WHERE n.name =~ 'car(s?)' return n;
I want to find nodes with either car or cars as a node name.
Thank you very much!
Cobra
(Cobra)
2
Hello @baderk.cs 
It works for me 
MATCH (n)
WHERE n.name =~ '(?i)car(s?)'
RETURN n
Regards,
Cobra
1 Like
baderk.cs
(Baderk Cs)
3
Thanks Cobra for your help!
1 Like