You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tinkerpop.apache.org by "mdjnewman (GitHub)" <gi...@apache.org> on 2019/02/25 23:42:11 UTC

[GitHub] [tinkerpop] mdjnewman opened pull request #1072: Fix error in 'The First Five Minutes' section

[The First Five Minutes](https://tinkerpop.apache.org/docs/current/tutorials/getting-started/#_the_first_five_minutes) section contains a small error.

`inE().inV()` is not equivalent to `in()`, `inE().outV()` is.

Example showing this:

```
gremlin> graph = TinkerFactory.createModern()
==>tinkergraph[vertices:6 edges:6]

gremlin> g = graph.traversal()
==>graphtraversalsource[tinkergraph[vertices:6 edges:6], standard]

gremlin> g.V(3).inE().inV()
==>v[3]
==>v[3]
==>v[3]

gremlin> g.V(3).inE().outV()
==>v[1]
==>v[4]
==>v[6]

gremlin> g.V(3).in()
==>v[1]
==>v[4]
==>v[6]
```



[ Full content available at: https://github.com/apache/tinkerpop/pull/1072 ]
This message was relayed via gitbox.apache.org for dev@tinkerpop.apache.org

[GitHub] [tinkerpop] spmallette closed pull request #1072: Fix error in 'The First Five Minutes' section

Posted by "spmallette (GitHub)" <gi...@apache.org>.
[ pull request closed by spmallette ]

[ Full content available at: https://github.com/apache/tinkerpop/pull/1072 ]
This message was relayed via gitbox.apache.org for dev@tinkerpop.apache.org

[GitHub] [tinkerpop] spmallette commented on issue #1072: Fix error in 'The First Five Minutes' section

Posted by "spmallette (GitHub)" <gi...@apache.org>.
Thanks for noticing that and taking the time to offer a pull request. I cherry-picked your change to `tp33` and `master` on 6bb7d570fc568f668ab924e46837034629c861d8 - merged

[ Full content available at: https://github.com/apache/tinkerpop/pull/1072 ]
This message was relayed via gitbox.apache.org for dev@tinkerpop.apache.org

[GitHub] [tinkerpop] spmallette closed pull request #1072: Fix error in 'The First Five Minutes' section

Posted by "spmallette (GitHub)" <gi...@apache.org>.
[ pull request closed by spmallette ]

[ Full content available at: https://github.com/apache/tinkerpop/pull/1072 ]
This message was relayed via gitbox.apache.org for dev@tinkerpop.apache.org

[GitHub] [tinkerpop] spmallette commented on issue #1072: Fix error in 'The First Five Minutes' section

Posted by "spmallette (GitHub)" <gi...@apache.org>.
Thanks for noticing that and taking the time to offer a pull request. I cherry-picked your change to `tp33` and `master` on 6bb7d570fc568f668ab924e46837034629c861d8 - merged

[ Full content available at: https://github.com/apache/tinkerpop/pull/1072 ]
This message was relayed via gitbox.apache.org for dev@tinkerpop.apache.org