Halkrine opened a new issue #103:
URL: https://github.com/apache/incubator-age/issues/103
From document, default query is here.
`
select *
from cypher('test_graph', $$
match(v:Part) return v
$$) as (result agtype)
`
That result of type is 'agtype'.
In this situation, I create basic query using 'with'.
`
with a as(select *
from cypher('test_graph', $$
match(v:Part) return v
$$) as (result agtype))
select a from a
`
Result of datatype of this query is 'record' as a.
So, I have a some questions.
1) Can I cast default datatype except on 'record'?
2) In this query, how can I get specific data(ex. select a.id as id)?
#
--
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]