Im using OrientDB type graph. I need syntax of Gremlin for search same SQL LIKE operator
LIKE \'search%\' or LIKE \'%search%\'
I\'ve check
For people finding this answer here is an updated version of how you can search (very similar to the accepted answer)
For the gremlin console (gremlin.sh):
g.V().filter({ it.get().value("foo").contains("search") })
Also if you have your index backend being ElasticSearch (might work for other indexing backends as well) this works as well:
g.V().has("foo", Text.textContains("search"))