TINKERPOP-1878 Added upgrade docs for sparql-gremlin
Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/20cb3f8d Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/20cb3f8d Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/20cb3f8d Branch: refs/heads/TINKERPOP-1342 Commit: 20cb3f8de5b79b1bfad37be18bc5a7aaaaba1a0c Parents: 12d282a Author: Stephen Mallette <[email protected]> Authored: Wed Aug 8 07:42:13 2018 -0400 Committer: Stephen Mallette <[email protected]> Committed: Mon Aug 13 14:39:24 2018 -0400 ---------------------------------------------------------------------- docs/src/upgrade/release-3.4.x.asciidoc | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/20cb3f8d/docs/src/upgrade/release-3.4.x.asciidoc ---------------------------------------------------------------------- diff --git a/docs/src/upgrade/release-3.4.x.asciidoc b/docs/src/upgrade/release-3.4.x.asciidoc index 00f2635..e722601 100644 --- a/docs/src/upgrade/release-3.4.x.asciidoc +++ b/docs/src/upgrade/release-3.4.x.asciidoc @@ -29,6 +29,23 @@ Please see the link:https://github.com/apache/tinkerpop/blob/3.4.0/CHANGELOG.asc === Upgrading for Users +==== sparql-gremlin + +The `sparql-gremlin` module is a link:https://en.wikipedia.org/wiki/SPARQL[SPARQL] to Gremlin compiler, which allows +SPARQL to be executed over any TinkerPop-enabled graph system. + +[source,groovy] +---- +graph = TinkerFactory.createModern() +g = graph.traversal(SparqlTraversalSource) +g.sparql("""SELECT ?name ?age + WHERE { ?person v:name ?name . ?person v:age ?age } + ORDER BY ASC(?age)""") +---- + +See: link:https://issues.apache.org/jira/browse/TINKERPOP-1878[TINKERPOP-1878], +link:http://tinkerpop.apache.org/docs/3.4.0/reference/#sparql-gremlin[Reference Documentation] + ==== with() Step This version of TinkerPop introduces the `with()`-step to Gremlin. It isn't really a step but is instead a step
