apache / apache/age-website

List function

Open
#335 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
Shell
Stars
42
Forks
69
PR merge metrics
No merged PRs in 30d

Description

There is an issue in list function (nodes).
Bug code is as follows:

`SELECT *
FROM cypher('graph_name', $$
MATCH p = (a)-[]->(b)-[]->(c)
WHERE a.name = 'Alice' AND c.name = 'Eskil'
RETURN nodes(a)
$$) as (vertices agtype);`

Corrected version is as follows:

`SELECT *
FROM cypher('graph_name', $$
MATCH p = (a)-[]->(b)-[]->(c)
WHERE a.name = 'Alice' AND c.name = 'Eskil'
RETURN nodes(p)
$$) as (vertices agtype);`

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.