You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by rd...@apache.org on 2017/04/20 14:48:30 UTC

[1/3] tinkerpop git commit: Updated some empty select()s in the docs. As of 3.0.0, select() no longer supports empty arguments. The user must specify the keys they are selecting.

Repository: tinkerpop
Updated Branches:
  refs/heads/master f3ae7ff4e -> ac477c16c


Updated some empty select()s in the docs.  As of 3.0.0, select() no longer supports empty arguments. The user must specify the keys they are selecting.


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/ec4f83cd
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/ec4f83cd
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/ec4f83cd

Branch: refs/heads/master
Commit: ec4f83cd5a3afd213f786e0334c95d35e1b10b67
Parents: d4f4108
Author: Robert Dale <ro...@gmail.com>
Authored: Thu Apr 20 10:47:11 2017 -0400
Committer: Robert Dale <ro...@gmail.com>
Committed: Thu Apr 20 10:47:11 2017 -0400

----------------------------------------------------------------------
 docs/src/reference/intro.asciidoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/ec4f83cd/docs/src/reference/intro.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/reference/intro.asciidoc b/docs/src/reference/intro.asciidoc
index 0817630..e19742f 100644
--- a/docs/src/reference/intro.asciidoc
+++ b/docs/src/reference/intro.asciidoc
@@ -362,14 +362,14 @@ are presented below.
 g.V().out('knows').values('name') <1>
 g.V().out('knows').map{it.get().value('name') + ' is the friend name'} <2>
 g.V().out('knows').sideEffect(System.out.&println) <3>
-g.V().as('person').out('knows').as('friend').select().by{it.value('name').length()} <4>
+g.V().as('person').out('knows').as('friend').select('person','friend').by{it.value('name').length()} <4>
 
 [source,java]
 // Gremlin-Java
 g.V().out("knows").values("name") <1>
 g.V().out("knows").map(t -> t.get().value("name") + " is the friend name") <2>
 g.V().out("knows").sideEffect(System.out::println) <3>
-g.V().as("person").out("knows").as("friend").select().by((Function<Vertex, Integer>) v -> v.<String>value("name").length()) <4>
+g.V().as("person").out("knows").as("friend").select("person","friend").by((Function<Vertex, Integer>) v -> v.<String>value("name").length()) <4>
 
 <1> All the non-lambda step chaining is identical in Gremlin-Groovy and Gremlin-Java. However, note that Groovy
 supports `'` strings as well as `"` strings.


[3/3] tinkerpop git commit: Merge branch 'tp32'

Posted by rd...@apache.org.
Merge branch 'tp32'


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/ac477c16
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/ac477c16
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/ac477c16

Branch: refs/heads/master
Commit: ac477c16cc2c47b095b271784afb152b3b2134e3
Parents: f3ae7ff 4c6d8a0
Author: Robert Dale <ro...@gmail.com>
Authored: Thu Apr 20 10:47:57 2017 -0400
Committer: Robert Dale <ro...@gmail.com>
Committed: Thu Apr 20 10:47:57 2017 -0400

----------------------------------------------------------------------
 docs/src/reference/intro.asciidoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------



[2/3] tinkerpop git commit: Merge branch 'tp31' into tp32

Posted by rd...@apache.org.
Merge branch 'tp31' into tp32


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/4c6d8a01
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/4c6d8a01
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/4c6d8a01

Branch: refs/heads/master
Commit: 4c6d8a011b857e20e757bbaeb216b85bdc72d4c0
Parents: 0e7ec85 ec4f83c
Author: Robert Dale <ro...@gmail.com>
Authored: Thu Apr 20 10:47:44 2017 -0400
Committer: Robert Dale <ro...@gmail.com>
Committed: Thu Apr 20 10:47:44 2017 -0400

----------------------------------------------------------------------
 docs/src/reference/intro.asciidoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/4c6d8a01/docs/src/reference/intro.asciidoc
----------------------------------------------------------------------