joefagan commented on issue #153:
URL: https://github.com/apache/incubator-age/issues/153#issuecomment-986909795
@afidegnum
You are correct - there is something not right about the latest image
bitnine/agviewer:latest
docker run --publish=3001:3001 --name=agviewer bitnine/agviewer:latest
```
SELECT * from cypher('test_graph', $$
MATCH (n)
RETURN n.name
$$) as (n agtype);
```
does not print the value of property 'name'.
whereas
```
SELECT * from cypher('test_graph', $$
MATCH (n)
RETURN collect(n.name)
$$) as (n agtype);
```
<html>
<body>
<!--StartFragment-->
n
--
["parent","child1","child2"]
<!--EndFragment-->
</body>
</html>
works fine.
--
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]