shinhanbyeol edited a comment on issue #103:
URL: https://github.com/apache/incubator-age/issues/103#issuecomment-893996470
Is this what you want?
select "result", "id" from cypher('test_graph', $$ match(v:Part) where id(v)
= 844424930131969 return v.part_num , id(v) $$) as (result text, id text);
with a as(
select * from cypher('test_graph', $$ match(v:Part) where id(v) =
844424930131969 return v.part_num , id(v) $$) as (result text, id text)
)
select "result", "id" from a;

--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]