Uploaded image for project: 'TinkerPop'
  1. TinkerPop
  2. TINKERPOP-940

Convert LocalTraversals to MatchSteps in OLAP and Solve the StarGraph Problem

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Open
    • Major
    • Resolution: Unresolved
    • 3.1.0-incubating
    • None
    • process
    • 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.... dkuppitz

      Attachments

        Issue Links

          Activity

            People

              Unassigned Unassigned
              okram Marko A. Rodriguez
              Votes:
              0 Vote for this issue
              Watchers:
              4 Start watching this issue

              Dates

                Created:
                Updated: