Marko A. Rodriguez created TINKERPOP3-940:
---------------------------------------------

             Summary: 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: Bug
          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.3.4#6332)

Reply via email to