Yes true. This will only work well if you have only a few nodes with that label in your db. Otherwise it will fully scan all nodes and load their properties and then do the check with a regexp all of which is expensive.
Michael Am 30.01.2014 um 14:30 schrieb Tom Zeppenfeldt <[email protected]>: > Case insensitive searches can be done with regular expressions, e.g. > > match (n:Person) > where n.name=~'(?i).*a.*' > return n.name > > which would also return results including Andre, andre, Michael > > > On Thursday, 30 January 2014 14:17:53 UTC+1, Navrattan Yadav wrote: > hi. i am using Neo4j 2.0. I want to search by a properties value with ignore > case and also with like operator. > > eg. Node has properties > Name : John Michle > > then want to search by : john, John,john Michle etc. > > i try : > > START n = node:Name("Name=*john*") > return n; > > but not get result. > > -- > You received this message because you are subscribed to the Google Groups > "Neo4j" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/groups/opt_out. -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
