Added Graph drivers docs.
Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/50f70a37 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/50f70a37 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/50f70a37 Branch: refs/heads/TINKERPOP-1274 Commit: 50f70a37af21172a4151ae739ecd2f19e814fb86 Parents: 67db6be8 Author: Kevin Gallardo <[email protected]> Authored: Wed Jun 29 19:09:48 2016 +0100 Committer: Kevin Gallardo <[email protected]> Committed: Thu Jun 30 10:41:35 2016 +0100 ---------------------------------------------------------------------- docs/src/reference/the-graph.asciidoc | 7 +++---- docs/src/upgrade/release-3.2.x-incubating.asciidoc | 13 +++++++++++++ 2 files changed, 16 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/50f70a37/docs/src/reference/the-graph.asciidoc ---------------------------------------------------------------------- diff --git a/docs/src/reference/the-graph.asciidoc b/docs/src/reference/the-graph.asciidoc index 9817ce8..f27db23 100644 --- a/docs/src/reference/the-graph.asciidoc +++ b/docs/src/reference/the-graph.asciidoc @@ -1,4 +1,4 @@ -*//// +//// Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. @@ -13,7 +13,7 @@ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -_//// +//// [[graph]] The Graph ========= @@ -898,5 +898,4 @@ IMPORTANT: TinkerPop uses `tinkerpop.` and `gremlin.` as the prefixes for provid reduce implementations, and plugins. The only truly protected namespace is the _hidden namespace_ provided to graph systems. From there, it's up to -engineers to respect the namespacing conventions presented. -*_ \ No newline at end of file +engineers to respect the namespacing conventions presented. \ No newline at end of file http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/50f70a37/docs/src/upgrade/release-3.2.x-incubating.asciidoc ---------------------------------------------------------------------- diff --git a/docs/src/upgrade/release-3.2.x-incubating.asciidoc b/docs/src/upgrade/release-3.2.x-incubating.asciidoc index 04f38c6..07f53a4 100644 --- a/docs/src/upgrade/release-3.2.x-incubating.asciidoc +++ b/docs/src/upgrade/release-3.2.x-incubating.asciidoc @@ -214,6 +214,19 @@ VertexTest Signatures The method signatures of `get_g_VXlistXv1_v2_v3XX_name` and `get_g_VXlistX1_2_3XX_name` of `VertexTest` were changed to take arguments for the `Traversal` to be constructed by extending classes. +Graph Drivers Providers +^^^^^^^^^^^^^^^^^^^^^^ + +GraphSON 2.0 +++++++++++++ + +Drivers providers can exploit the new format of typed values JSON serialization offered by GraphSON 2.0. This format +has been created to allow easy and agnostic parsing of a GraphSON payload without type loss. Drivers of non Java +languages can then implement their own mapping of the GraphSON's language agnostic type IDs like `UUID`, `LocalDate` to +the appropriate representation for the driver's language. A more detailed description of GraphSON 2.0 can be found +there : link:http://tinkerpop.apache.org/docs/3.2.1-incubating/reference/#graphson-2.0-types[Reference Documentation +- GraphSON 2.0] + TinkerPop 3.2.0 ---------------
