Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Won't Do
-
3.1.0-incubating
-
None
-
None
Description
This fails in OLAP.
g.V().match( as('a').out('sungBy').as('b'), as('a').out('writtenBy').as('b')). select('a','b').by('name')
However, this passes:
g.V().match( as('a').out('sungBy').as('b'), as('a').out('writtenBy').as('b'), as('a').values('name').as('c'), as('b').values('name').as('d')). select('c','d')
Can all "local star graph" OLAP problems be strategized into MatchSteps? It would be a decoration strategy of some sort.... Daniel Kuppitz
Attachments
Issue Links
- is related to
-
TINKERPOP-693 [Proposal] Local Nested Traversals Beyond the Star Graph in OLAP
- Closed