imranzaheer612 commented on issue #401:
URL: https://github.com/apache/age/issues/401#issuecomment-1361940709
You are not returning a property but the `id` of the node. In order to get
the `id` for a node use the built in function.
```bash
select * from cypher('demo_graph', $$ MATCH
(n:Person)-[e:BORNIN]-(b:Country) RETURN id(e) $$) as (e agtype);
```
```
e
------------------
1407374883553281
1407374883553282
1407374883553283
1407374883553284
1407374883553285
1407374883553286
1407374883553287
(7 rows)
```
--
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]