Updated curl return in Getting Started tutorial
GraphSON 3.0 is now the default so the JSON is now different CTR
Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/e5fa5aa7
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/e5fa5aa7
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/e5fa5aa7
Branch: refs/heads/TINKERPOP-1742-master
Commit: e5fa5aa7c35df96b6a9796f24718bfc17d04cdca
Parents: 1982597
Author: Stephen Mallette <spmva@genoprime.com>
Authored: Thu Aug 10 14:25:46 2017 -0400
Committer: Stephen Mallette <spmva@genoprime.com>
Committed: Thu Aug 10 14:25:46 2017 -0400
----------------------------------------------------------------------
.../tutorials/getting-started/index.asciidoc | 33 +++++++++++---------
1 file changed, 19 insertions(+), 14 deletions(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/e5fa5aa7/docs/src/tutorials/getting-started/index.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/tutorials/getting-started/index.asciidoc b/docs/src/tutorials/getting-started/index.asciidoc
index ef6e7ed..2a19a8d 100644
--- a/docs/src/tutorials/getting-started/index.asciidoc
+++ b/docs/src/tutorials/getting-started/index.asciidoc
@@ -580,20 +580,25 @@ $ curl -X POST -d "{\"gremlin\":\"g.V(x).out().values('name')\", \"language\":\"
[source,json]
----
{
- "requestId": "abe3be05-1e86-481a-85e0-c59ad8a37c6b",
- "status": {
- "message": "",
- "code": 200,
- "attributes": {}
- },
- "result": {
- "data": [
- "lop",
- "vadas",
- "josh"
- ],
- "meta": {}
- }
+ "requestId": "f67dbfff-b33a-4ae3-842d-c6e7c97b246b",
+ "status": {
+ "message": "",
+ "code": 200,
+ "attributes": {
+ "@type": "g:Map",
+ "@value": []
+ }
+ },
+ "result": {
+ "data": {
+ "@type": "g:List",
+ "@value": ["lop", "vadas", "josh"]
+ },
+ "meta": {
+ "@type": "g:Map",
+ "@value": []
+ }
+ }
}
----
|