[
https://issues.apache.org/jira/browse/TINKERPOP-940?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
stephen mallette updated TINKERPOP-940:
---------------------------------------
Fix Version/s: (was: 3.2.7)
> Convert LocalTraversals to MatchSteps in OLAP and Solve the StarGraph Problem
> -----------------------------------------------------------------------------
>
> Key: TINKERPOP-940
> URL: https://issues.apache.org/jira/browse/TINKERPOP-940
> Project: TinkerPop
> Issue Type: Improvement
> Components: process
> Affects Versions: 3.1.0-incubating
> Reporter: Marko A. Rodriguez
> Assignee: Marko A. Rodriguez
>
> This fails in OLAP.
> {code}
> g.V().match(
> as('a').out('sungBy').as('b'),
> as('a').out('writtenBy').as('b')).
> select('a','b').by('name')
> {code}
> However, this passes:
> {code}
> 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')
> {code}
> Can all "local star graph" OLAP problems be strategized into MatchSteps? It
> would be a decoration strategy of some sort.... [~dkuppitz]
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)