Skip to content

Commit dded5be

Browse files
committed
Removed references to or added more context around Graph API
1 parent 2c0ba10 commit dded5be

4 files changed

+88
-125
lines changed

book/Section-Beyond-Basic-Queries.adoc

+66-78
Original file line numberDiff line numberDiff line change
@@ -1433,19 +1433,6 @@ depending upon how the graph store handles this request.
14331433
g.E().drop()
14341434
----
14351435

1436-
You could also use the 'graph' object to do this. The code below uses the graph
1437-
object to retrieve all of the edges and then iterates over them dropping them one by
1438-
one. Again for very large graphs this may not be an ideal approach as this requires
1439-
reading all of the edge definitions into memory. Note that in this case we call the
1440-
'remove' method rather than use 'drop' as we are not using a graph traversal in this
1441-
case.
1442-
1443-
[source,groovy]
1444-
----
1445-
// Remove all the edges from the graph
1446-
graph.edges().each{it.remove()}
1447-
----
1448-
14491436
You could also delete the whole graph, vertices and edges, by deleting all of the
14501437
vertices!
14511438

@@ -4921,70 +4908,6 @@ When run, this time the results do indeed include the edges as well as the verti
49214908
[v[3],e[5162][3-route->49],v[49],e[8454][49-route->71],v[71]]
49224909
----
49234910

4924-
[[graphvars]]
4925-
Using graph variables to associate metadata with a graph
4926-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4927-
4928-
A graph variable is a key/value pair that can be associated with the graph itself.
4929-
Graph variables are not considered part of the graph that you would process with
4930-
Gremlin traversals but are in essence a way to associate metadata with a graph.
4931-
You can set and retrieve graph variables using the 'variables' method of the graph
4932-
object. Let's assume we wanted to add some metadata that allowed us to record who
4933-
the maintainer of the 'air-routes' graph is and when it was last updated. We could
4934-
do that as follows.
4935-
4936-
[source,groovy]
4937-
----
4938-
graph.variables().set('maintainer','Kelvin')
4939-
graph.variables().set('updated','July 18th 2017')
4940-
----
4941-
4942-
You can use any string that makes sense to you when naming your graph variable keys.
4943-
We can use the 'keys' method to retrieve the names of any keys currently in place as
4944-
graph variables.
4945-
4946-
[source,groovy]
4947-
----
4948-
graph.variables().keys()
4949-
4950-
updated
4951-
maintainer
4952-
----
4953-
4954-
The 'asMap' method will return any graph variables that are currently set as a map of
4955-
key/value pairs.
4956-
4957-
[source,groovy]
4958-
----
4959-
graph.variables().asMap()
4960-
4961-
updated=July 18th 2017
4962-
maintainer=Kelvin
4963-
----
4964-
4965-
We can use the 'get' method to retrieve the value of a particular key. Note that the
4966-
value returned is an instance of the 'java.util.Optional' class.
4967-
4968-
[source,groovy]
4969-
----
4970-
graph.variables().get('updated')
4971-
4972-
Optional[July 18th 2017]
4973-
----
4974-
4975-
If you want to delete a graph variable you can use the 'remove' method. In this next
4976-
example we will delete the 'maintainer' graph variable and re-query the variable map
4977-
to prove it has been deleted.
4978-
4979-
[source,groovy]
4980-
----
4981-
graph.variables().remove('maintainer')
4982-
graph.variables().asMap()
4983-
4984-
updated=July 18th 2017
4985-
4986-
----
4987-
49884911
[[tre]]
49894912
Turning graphs into trees
49904913
~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -6132,6 +6055,69 @@ Later on we will take a look at using an index with JanusGraph and look at exter
61326055
indexing technologies such as Apache Solr and Elasticsearch that do support
61336056
more complex types of comparison predicates.
61346057

6058+
[[graphvars]]
6059+
Using graph variables to associate metadata with TinkerGraph
6060+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6061+
6062+
A graph variable is a key/value pair that can be associated with a TinkerGraph.
6063+
Graph variables are not considered part of the graph that you would process with
6064+
Gremlin traversals but are in essence a way to associate metadata with a graph.
6065+
You can set and retrieve graph variables using the 'variables' method of the graph
6066+
object. Let's assume we wanted to add some metadata that allowed us to record who
6067+
the maintainer of the 'air-routes' graph is and when it was last updated. We could
6068+
do that as follows.
6069+
6070+
[source,groovy]
6071+
----
6072+
graph.variables().set('maintainer','Kelvin')
6073+
graph.variables().set('updated','July 18th 2017')
6074+
----
6075+
6076+
You can use any string that makes sense to you when naming your graph variable keys.
6077+
We can use the 'keys' method to retrieve the names of any keys currently in place as
6078+
graph variables.
6079+
6080+
[source,groovy]
6081+
----
6082+
graph.variables().keys()
6083+
6084+
updated
6085+
maintainer
6086+
----
6087+
6088+
The 'asMap' method will return any graph variables that are currently set as a map of
6089+
key/value pairs.
6090+
6091+
[source,groovy]
6092+
----
6093+
graph.variables().asMap()
6094+
6095+
updated=July 18th 2017
6096+
maintainer=Kelvin
6097+
----
6098+
6099+
We can use the 'get' method to retrieve the value of a particular key. Note that the
6100+
value returned is an instance of the 'java.util.Optional' class.
6101+
6102+
[source,groovy]
6103+
----
6104+
graph.variables().get('updated')
6105+
6106+
Optional[July 18th 2017]
6107+
----
6108+
6109+
If you want to delete a graph variable you can use the 'remove' method. In this next
6110+
example we will delete the 'maintainer' graph variable and re-query the variable map
6111+
to prove it has been deleted.
6112+
6113+
[source,groovy]
6114+
----
6115+
graph.variables().remove('maintainer')
6116+
graph.variables().asMap()
6117+
6118+
updated=July 18th 2017
6119+
----
6120+
61356121
[[olapoltp]]
61366122
OLTP vs OLAP
61376123
~~~~~~~~~~~~
@@ -6275,7 +6261,9 @@ degree test did not come up with.
62756261
The 'pageRank' step used in the prior query is a nice and convenient way for us to
62766262
quickly generate some rankings. However, it is important to understand how the query
62776263
would be written if we were to use the Graph Computer more directly and submit a
6278-
Vertex Program. The example below sets up a 'PageRankVertexProgram' and runs it.
6264+
Vertex Program. You may find yourself taking this approach for your own custom
6265+
'VertexProgram' implementations when working with a graph that supports OLAP in an
6266+
embedded mode. The example below sets up a 'PageRankVertexProgram' and runs it.
62796267
Notice that the result we get back includes a new graph with 3624 vertices and no
62806268
edges.
62816269

book/Section-Introducing-Gremlin-Server.adoc

+2-1
Original file line numberDiff line numberDiff line change
@@ -811,7 +811,8 @@ def globals = [:]
811811
globals << [hook : [
812812
onStartUp: { ctx ->
813813
ctx.logger.info("Loading 'air-routes' graph data.")
814-
graph.io(graphml()).readGraph('data/air-routes.graphml')
814+
g = traversal().with(graph)
815+
g.io('data/air-routes.graphml').read().iterate()
815816
}
816817
] as LifeCycleHook]
817818

book/Section-Introduction.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ NOTE: Full details of all the new features added in the TinkerPop 3.7.x releases
407407
be found at the following link:
408408
https://github.com/apache/tinkerpop/blob/master/CHANGELOG.asciidoc#tinkerpop-370-gremfir-master-of-the-pan-flute
409409

410-
[tp40intro]]
410+
[[tp40intro]]
411411
TinkerPop 4.0
412412
^^^^^^^^^^^^^
413413

book/Section-Janus-Graph.adoc

+19-45
Original file line numberDiff line numberDiff line change
@@ -266,39 +266,15 @@ https://docs.janusgraph.org/basics/transactions/
266266

267267
In many cases, when using JanusGraph, you do not have to explicitly open a new
268268
transaction. Instead, it will be opened for you as needed. Take a look at the example
269-
below. A transaction is opened when 'addVertex' is called and remains open until
269+
below. A transaction is opened when 'addV' is called and remains open until
270270
'commit' is called. Note also that in order to access the JanusGraph transaction
271-
capabilities, we use the 'tx' method associated with our 'graph' instance. The
272-
examples below assume you have the Gremlin Console connected to a JanusGraph
273-
instance. The 'inmemory' JanusGraph we created earlier will work fine for these
274-
examples as transactions are supported even with 'inmemory' JanusGraph instances.
275-
Note that we have not shown the warning message that JanusGraph will display
276-
reminding us that we have not created an index for our new property. We will explore
277-
how to create an index in the "<<jaindexintro>>" section.
278-
279-
[source,groovy]
280-
----
281-
// Start a new transaction
282-
xyz = graph.addVertex()
283-
284-
v[4344]
285-
286-
// Add a property
287-
xyz.property('name', 'XYZ')
288-
289-
// Commit the transaction
290-
graph.tx().commit()
291-
292-
// Check to make sure our new vertex was created
293-
g.V().has('name','XYZ')
294-
295-
v[4344]
296-
----
297-
298-
The example above used the 'graph' object to add a vertex. As discussed earlier in
299-
this book, the TinkerPop documentation recommends against this. Instead it recommends
300-
adding vertices as part of a traversal as shown below. Note that the 'graph' object
301-
is still used to 'commit' the transaction.
271+
capabilities, we use the 'tx' method associated with our 'g' instance. The examples
272+
below assume you have the Gremlin Console connected to a JanusGraph instance. The
273+
'inmemory' JanusGraph we created earlier will work fine for these examples as
274+
transactions are supported even with 'inmemory' JanusGraph instances. Note that we
275+
have not shown the warning message that JanusGraph will display reminding us that we
276+
have not created an index for our new property. We will explore how to create an
277+
index in the "<<jaindexintro>>" section.
302278

303279
[source,groovy]
304280
----
@@ -340,10 +316,10 @@ otherwise configuring a graph.
340316
The JanusGraph management API
341317
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
342318

343-
JanusGraph includes a management API that is made available via the ManagementSystem
344-
class. You can use the management API to perform various important functions that
345-
include querying metadata about the graph, defining the edge, vertex and property
346-
schema types and creating and updating the index.
319+
JanusGraph includes a management API that is made available via the
320+
'ManagementSystem' class. You can use the management API to perform various important
321+
functions that include querying metadata about the graph, defining the edge, vertex
322+
and property schema types and creating and updating the index.
347323

348324
You can create an instance of the ManagementSystem object using the 'openManagement'
349325
method call as shown below.
@@ -558,6 +534,7 @@ g.V(n).valueMap()
558534

559535
Now let's try adding a second value of 2 and see what happens. As you can see, our
560536
second 2 was not added to our set as there was already a 2 present.
537+
561538
[source,groovy]
562539
----
563540
g.V(n).property(set,'numbers',2)
@@ -582,7 +559,7 @@ Finally we can commit our graph transaction as we are all done creating properti
582559

583560
[source,groovy]
584561
----
585-
graph.tx().commit()
562+
g.tx().commit()
586563
----
587564

588565
[[janusschema]]
@@ -672,7 +649,6 @@ mgmt.makeVertexLabel('continent').make()
672649
mgmt.commit()
673650
----
674651

675-
676652
Defining vertex property keys
677653
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
678654

@@ -773,20 +749,18 @@ Relation Index (VCI) | Type | Direction | Sort Key | Orde
773749
---------------------------------------------------------------------------------------------------
774750
----
775751
776-
777-
778752
[[janusload]]
779753
Loading air-routes into a JanusGraph instance
780754
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
781755
782-
Now that we know how to create a schema for the 'air-routes' graph
783-
we can use the same basic steps to load it into a JanusGraph
784-
instance that we used with TinkerGraph. Note that after loading the graph from the
785-
XML file we then call 'commit' to finalize the transaction.
756+
Now that we know how to create a schema for the 'air-routes' graph we can use the
757+
same basic steps to load it into a JanusGraph instance that we used with TinkerGraph.
758+
Note that after loading the graph from the XML file we then call 'commit' to finalize
759+
the transaction.
786760
787761
[source,groovy]
788762
----
789-
graph.io(graphml()).readGraph('air-routes.graphml')
763+
g.io('air-routes.graphml').read().iterate()
790764
graph.tx().commit()
791765
----
792766

0 commit comments

Comments
 (0)