I do not understand the neo4j query language. At first everything you can do with regexp is described in the documentation. From what I understand of your question, you would need “name”, “second name” and “middle name” in distinct predicates and do something like as below. There is no regexp offset. So you need a predicate for each.
Your query is not what i want. Here is my query for sql:
def getUsers(fn: Array[String]) = {
val q = fn.length match {
case 1 =>
val sname = fn(0)
s"select * from users as u where u.sname like ${sname}%"
case 2 =>
val sname = fn(0)
val fname = fn(1)
s"select * from users as u where u.sname like ${sname}% and u.fname like ${fname}%"
case _ =>
val sname = fn(0)
val fname = fn(1)
val mname = fn(2)
s"select * from users as u where u.sname like ${sname}% and u.fname like ${fname}% and u.mname like ${mname}%"
…
here is request to db
Hi,
Can you show what are you actually doing in Dgraph?
Sharing what you’re doing in Dgraph would be more easy to understand what is this “stranger regexp behavior”. Share examples of mutation, queries and results would be nice.
Dgraph doesn’t have a “select *” - but a similar (but not with the same propose) is "expand(_all_).
What “i am actually doing” i described in my first message but can repeat once again.
In my front-end(browser) i have an input field to put in user’s full name(second first middle) to search users and a table to see a result(list of users or maybe empty list). Further, i want to see a result on every character i put in. The query(neo4j cypher) in my first message is from a real project. I couldn’t find how to do that for dgraph, so i asked if it is possible. Sorry.
Yes, i read it. But the regexp only works if patterns are longer than 2 characters and this is not suitable for my case. What is a reason not to have a “normal” regexp?
return x.Errorf( "Attribute %v does not have trigram index for regex matching. "+
"Please add a trigram index or use has/uid function with regexp() as filter.", attr) }
Not sure, but maybe you gonna be able to use the “normal” regexp but first adding the nodes using “has” to the query context and then filtering them by regexp.