I want to find string using regular expression on AgensGraph.
agens=# create (:v1{value:'text'});
GRAPH WRITE (INSERT VERTEX 1, INSERT EDGE 0)
agens=# match (n:v1) where n.value similar to 't%' return n;
ERROR: syntax error at or near "similar"
LINE 1: match (n:v1) where n.value similar to 't%' return n;
^
But, there is an error on it.
Is there alternative of "similar to" on AgensGraph?