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?