You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A query like the following does not make use of the mixed index: g.V().or(has('title', textContains('Trump')), has('name', textContains('Trump')))
In that example, I try to look up a search word in two different fields. I currently can't figure out how to correctly construct that query. A possible workaround would be to make a direct index query.
The text was updated successfully, but these errors were encountered:
A query like the following does not make use of the mixed index:
g.V().or(has('title', textContains('Trump')), has('name', textContains('Trump')))
In that example, I try to look up a search word in two different fields. I currently can't figure out how to correctly construct that query. A possible workaround would be to make a direct index query.
The text was updated successfully, but these errors were encountered: