You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by GitBox <gi...@apache.org> on 2021/12/08 16:27:25 UTC

[GitHub] [tinkerpop] spmallette opened a new pull request #1514: TINKERPOP-2635 Better by() consistency

spmallette opened a new pull request #1514:
URL: https://github.com/apache/tinkerpop/pull/1514


   https://issues.apache.org/jira/browse/TINKERPOP-2635
   https://issues.apache.org/jira/browse/TINKERPOP-2636
   
   Covers a number of wide changes around `by()` modulators which makes it work consistently for all its cases. See the upgrade doc changes for more information.
   
   All tests pass with `docker/build.sh -t -n -i`
   
   VOTE +1
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@tinkerpop.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [tinkerpop] spmallette merged pull request #1514: TINKERPOP-2635 Better by() consistency

Posted by GitBox <gi...@apache.org>.
spmallette merged pull request #1514:
URL: https://github.com/apache/tinkerpop/pull/1514


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@tinkerpop.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [tinkerpop] anassisi2 commented on pull request #1514: TINKERPOP-2635 Better by() consistency

Posted by GitBox <gi...@apache.org>.
anassisi2 commented on pull request #1514:
URL: https://github.com/apache/tinkerpop/pull/1514#issuecomment-1001693874


   Thank you Stephen!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@tinkerpop.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [tinkerpop] anassisi2 commented on pull request #1514: TINKERPOP-2635 Better by() consistency

Posted by GitBox <gi...@apache.org>.
anassisi2 commented on pull request #1514:
URL: https://github.com/apache/tinkerpop/pull/1514#issuecomment-1001678276


   Hi Stephen,
   I'm not sure where to post the issue below, it seems you are working on gremlin-javascript.
   I get a "ReferenceError: outE is not defined" when I use it after local or repeat like:
   
   g.V().hasLabel('assembly', 'part').
     local(outE("version").order().by('ver', desc).limit(1)).inV().
     path().
     by(__.elementMap()).
     by(__.valueMap()).
     by(__.valueMap()).
     toList();        
   
   I'm using ver 3.5.1 installed via Npm.
   
   Thank you,
   Andrea


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@tinkerpop.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [tinkerpop] spmallette commented on pull request #1514: TINKERPOP-2635 Better by() consistency

Posted by GitBox <gi...@apache.org>.
spmallette commented on pull request #1514:
URL: https://github.com/apache/tinkerpop/pull/1514#issuecomment-1001684051


   you may ask question in Discord, stackoverflow, etc. Quickly though, you probably need to just import `outE()`:
   
   https://tinkerpop.apache.org/docs/current/reference/#gremlin-javascript-imports
   
   ```js
   const __ = gremlin.process.statics;
   ```
   
   and then you should be able to reference it as `__.outE()` or import it as `outE()` explicitly.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@tinkerpop.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org