[ 
https://issues.apache.org/jira/browse/TINKERPOP-1740?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16112692#comment-16112692
 ] 

ASF GitHub Bot commented on TINKERPOP-1740:
-------------------------------------------

Github user okram commented on the issue:

    https://github.com/apache/tinkerpop/pull/686
  
    VOTE +1.
    
    ```
    [INFO] 
------------------------------------------------------------------------
    [INFO] BUILD SUCCESS
    [INFO] 
------------------------------------------------------------------------
    [INFO] Total time: 02:15 h
    [INFO] Finished at: 2017-08-02T19:52:00-06:00
    [INFO] Final Memory: 162M/1731M
    [INFO] 
------------------------------------------------------------------------
    ```


> Add vertex parameter overload to to() and from()
> ------------------------------------------------
>
>                 Key: TINKERPOP-1740
>                 URL: https://issues.apache.org/jira/browse/TINKERPOP-1740
>             Project: TinkerPop
>          Issue Type: Improvement
>          Components: process
>            Reporter: Marko A. Rodriguez
>            Assignee: Marko A. Rodriguez
>
> Make it possible to do this:
> {code}
> a = g.V(1).next()
> b = g.V(2).next()
> g.V(a).addE("friend").to(b)
> {code}
> This will work {{withRemote()}} given that detached elements are re-attached 
> prior to usage with {{AddEdgeStep}}.
> Right now you have to do the above with the ugly {{withSideEffects}} prefix 
> appendage.
> {code}
> a = g.addV().next()
> b = g.addV().next()
> g.withSideEffect('b',b).V(a).addE('friend').to('b')
> {code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

Reply via email to