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 JanusGraph with Gremlin Python (gremlin_python):
from gremlin_python.process.traversal import TextP g.V().has('foo', TextP.containing('search'))
Source: https://docs.janusgraph.org/index-backend/text-search/