I want to find a name using LIKE
operator.
There is no LIKE
operator on AgensGraph.
santino=# match (n:v) where n.name like 'j%' return n.name;
ERROR: syntax error at or near "like"
LINE 1: match (n:v) where n.name like 'j%' return n.name;
Is there another way to find a specific pattern of strings?
First, CYPHER is distinct from SQL. CYPHER does not support "LIKE" operator. But, you can use alternative operators that CYPHER supports.
See the examples:
Good lock.