You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tinkerpop.apache.org by "Daniel Kuppitz (JIRA)" <ji...@apache.org> on 2015/08/03 14:58:05 UTC

[jira] [Created] (TINKERPOP3-794) IncidentToAdjecentStrategy malfunction

Daniel Kuppitz created TINKERPOP3-794:
-----------------------------------------

             Summary: IncidentToAdjecentStrategy malfunction
                 Key: TINKERPOP3-794
                 URL: https://issues.apache.org/jira/browse/TINKERPOP3-794
             Project: TinkerPop 3
          Issue Type: Bug
          Components: process
    Affects Versions: 3.0.0-incubating
            Reporter: Daniel Kuppitz
            Assignee: Daniel Kuppitz


{noformat}
gremlin> g.V().as("a").out().as("b").select("a","b")
==>[a:v[1], b:v[3]]
==>[a:v[1], b:v[2]]
==>[a:v[1], b:v[4]]
==>[a:v[4], b:v[5]]
==>[a:v[4], b:v[3]]
==>[a:v[6], b:v[3]]
gremlin> g.V().as("a").outE().inV().as("b").select("a","b")
gremlin> g.V().as("a").outE().inV().as("b").select("a","b").iterate().toString()
==>[TinkerGraphStep([],vertex)@[a], VertexStep(OUT,vertex), SelectStep([a, b])]
{noformat}

The label {{b}} is lost after strategies were applied.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)