PHB-CS123 / graphene

CS123 Graph Database Project
Apache License 2.0
0 stars 0 forks source link

No way of accessing properties during MATCH query #1

Closed eugene-bulkin closed 9 years ago

eugene-bulkin commented 9 years ago

GQL should support selecting the property names of an identified node.

For example, in:

MATCH (a:A)-[R]->(B)

we may have properties on a that we want to access, named p. Suggested syntax is this:

MATCH (a:A)-[R]->(B) RETURN a.p

where RETURN * just returns everything for all identified nodes (if something doesn't have a name, its properties are not printed).