@@ -1433,19 +1433,6 @@ depending upon how the graph store handles this request.
1433
1433
g.E().drop()
1434
1434
----
1435
1435
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
-
1449
1436
You could also delete the whole graph, vertices and edges, by deleting all of the
1450
1437
vertices!
1451
1438
@@ -4921,70 +4908,6 @@ When run, this time the results do indeed include the edges as well as the verti
4921
4908
[v[3],e[5162][3-route->49],v[49],e[8454][49-route->71],v[71]]
4922
4909
----
4923
4910
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
-
4988
4911
[[tre]]
4989
4912
Turning graphs into trees
4990
4913
~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -6132,6 +6055,69 @@ Later on we will take a look at using an index with JanusGraph and look at exter
6132
6055
indexing technologies such as Apache Solr and Elasticsearch that do support
6133
6056
more complex types of comparison predicates.
6134
6057
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
+
6135
6121
[[olapoltp]]
6136
6122
OLTP vs OLAP
6137
6123
~~~~~~~~~~~~
@@ -6275,7 +6261,9 @@ degree test did not come up with.
6275
6261
The 'pageRank' step used in the prior query is a nice and convenient way for us to
6276
6262
quickly generate some rankings. However, it is important to understand how the query
6277
6263
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.
6279
6267
Notice that the result we get back includes a new graph with 3624 vertices and no
6280
6268
edges.
6281
6269
0 commit comments