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_).
{
q(func: eq(sname, "some name")) {
uid
expand(_all_) { expand(_all_) }
}
}
{
q(func: eq(sname, "some name")) @filter(eq(fname, "some name")) {
uid
expand(_all_)
}
}
{
q(func: eq(sname, "some name")) @filter(eq(fname, "some name") AND eq(mname , "some name") ) {
uid
expand(_all_)
}
}
This only can be achieve by Get started with Dgraph