[
https://issues.apache.org/jira/browse/TINKERPOP3-940?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Marko A. Rodriguez updated TINKERPOP3-940:
------------------------------------------
Fix Version/s: 3.2.0-incubating
> Convert LocalTraversals to MatchSteps in OLAP and Solve the StarGraph Problem
> -----------------------------------------------------------------------------
>
> Key: TINKERPOP3-940
> URL: https://issues.apache.org/jira/browse/TINKERPOP3-940
> Project: TinkerPop 3
> Issue Type: Improvement
> Components: process
> Affects Versions: 3.1.0-incubating
> Reporter: Marko A. Rodriguez
> Assignee: Marko A. Rodriguez
> Fix For: 3.2.0-incubating
>
>
> 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.3.4#6332)