@@ -362,7 +362,7 @@ g.V().has('region')
362
362
g.V().hasNot('region')
363
363
364
364
// The above is shorthand for
365
- g.V().not(has('region'))
365
+ g.V().not(has('region'))
366
366
----
367
367
368
368
[[count]]
@@ -5555,6 +5555,30 @@ g.V().has('airport','code','DFW').
5555
5555
[v[8]:221]]
5556
5556
----
5557
5557
5558
+ Another aspect of 'union' to consider is that it can be used as a start step, which
5559
+ means that you can essentially start a traversal from multiple points.
5560
+
5561
+ [source,groovy]
5562
+ ----
5563
+ g.union(V().has('airport','code','DFW'),
5564
+ V().has('airport','code','IAD')).
5565
+ values('code').fold()
5566
+
5567
+ [DFW,IAD]
5568
+ ----
5569
+
5570
+ The prior example is meant as a demonstration. Typically, it will make more sense to
5571
+ use a `union` this way when you have disparate sets of things you wish to combine to
5572
+ a single traversal stream. In this case, you can see that we're just filtering
5573
+ airports by their code. It's more likely that you would write that query as follows:
5574
+
5575
+ [source,groovy]
5576
+ ----
5577
+ g.V().has('airport','code',within('DFW','IAD')).values('code').fold()
5578
+
5579
+ [DFW,IAD]
5580
+ ----
5581
+
5558
5582
[[unionidentity]]
5559
5583
Introducing the 'identity' step
5560
5584
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -6289,6 +6313,78 @@ g.V().has('code','AUS').
6289
6313
Dallas
6290
6314
----
6291
6315
6316
+ [[midtraversalve]]
6317
+ Using 'V' and 'E' mid-traversal
6318
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6319
+
6320
+ All of our queries so far have used the 'V' and 'E' step to help start a traversal.
6321
+ We've seen them at the start of a traversal spawned from 'g' and as a spawn of
6322
+ anonymous child traversals with '__' . As start steps, they inject the objects that
6323
+ flow through the traversal stream. While they are commonly used at the start of a
6324
+ traversal, they can also be used in the middle of one.
6325
+
6326
+ [source,groovy]
6327
+ ----
6328
+ g.V().has('code','AUS').V().has('code', within('DFW','IAD')).
6329
+ values('code').fold()
6330
+
6331
+
6332
+ [DFW,IAD]
6333
+ ----
6334
+
6335
+ In the above example, we first find the '"AUS"' airport vertex. That start traverser
6336
+ triggers the mid-traversal 'V' that does a lookup for '"DFW"' and '"IAD"' . As a
6337
+ result, we get two vertices as the result. Each traverser that flows to the
6338
+ mid-traversal 'V' will issue that same filter, therefore, if we return two starting
6339
+ vertices, we will get some duplication and 4 results as follows:
6340
+
6341
+ [source,groovy]
6342
+ ----
6343
+ g.V().has('code',,within('SFO','AUS')).V().has('code', within('DFW','IAD')).
6344
+ values('code').fold()
6345
+
6346
+
6347
+ [DFW,IAD,DFW,IAD]
6348
+ ----
6349
+
6350
+ Mid-traversal 'V' has a similar counterpart for edges with 'E' and behaves in the
6351
+ same fashion.
6352
+
6353
+ [source,groovy]
6354
+ ----
6355
+ g.V().has('code',within('SFO','AUS')).E(3640)
6356
+
6357
+ e[3640][1-route->24]
6358
+ e[3640][1-route->24]
6359
+ ----
6360
+
6361
+ You typically find use for these mid-traversal steps when you do a mutation or
6362
+ side-effect first, but then want to traverse a wholly new path after that. Let's look
6363
+ at a more advanced example to demonstrate this. First, let's find out what the
6364
+ longest route is leaving '"IAD"' :
6365
+
6366
+ [source,groovy]
6367
+ ----
6368
+ g.V().has('code','IAD').outE('route').
6369
+ values('dist').max()
6370
+
6371
+ 7487
6372
+ ----
6373
+
6374
+ Now, let's extend on that query with mid-traversal 'V' to use that result to find
6375
+ "all routes from DFW that are longer than the longest route from IAD":
6376
+
6377
+
6378
+ [source,groovy]
6379
+ ----
6380
+ g.V().has('code','IAD').outE('route').
6381
+ values('dist').max().as('iad').
6382
+ V().has('code','DFW').outE('route').as('r').
6383
+ where(values('dist').where(gt('iad'))).
6384
+ inV().values('code').fold()
6385
+
6386
+ [SYD,DXB,HKG,DOH,AUH]
6387
+ ----
6292
6388
6293
6389
[[otherv]]
6294
6390
Other ways to explore vertices and edges using 'both' , 'bothE' , 'bothV' and 'otherV'
0 commit comments