There is quotes on result of AgensGraph.
I don't want ne
agens=# match (n) return n.value;
value
--------
"test"
(1 row)
I expect function or procedure for trimming quotes.
There is quotes on result of AgensGraph.
I don't want ne
agens=# match (n) return n.value;
value
--------
"test"
(1 row)
I expect function or procedure for trimming quotes.
You can use function "btrim" for removing needless quotes.
agens=# select btrim( n.value::text, '"' ) from ( match (n) return n.value ) as n;
btrim
-------
test
(1 row)
You must use trim on SQL part of quires for removing quotes.