gremlin 3.4.12 → 3.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (77) hide show
  1. package/NOTICE +1 -1
  2. package/doc/AnonymousTraversalSource.html +11 -3
  3. package/doc/Authenticator.html +6 -2
  4. package/doc/Bytecode.html +258 -6
  5. package/doc/Client.html +84 -6
  6. package/doc/Connection.html +12 -2
  7. package/doc/DriverRemoteConnection.html +392 -8
  8. package/doc/EdgeLabelVerificationStrategy.html +5 -3
  9. package/doc/Graph.html +6 -2
  10. package/doc/GraphSON2Reader.html +6 -2
  11. package/doc/GraphSON2Writer.html +8 -2
  12. package/doc/GraphSON3Reader.html +4 -2
  13. package/doc/GraphSON3Writer.html +4 -2
  14. package/doc/GraphTraversal.html +317 -107
  15. package/doc/GraphTraversalSource.html +164 -19
  16. package/doc/HaltedTraverserStrategy.html +5 -3
  17. package/doc/MatchAlgorithmStrategy.html +5 -3
  18. package/doc/P.html +28 -2
  19. package/doc/PartitionStrategy.html +5 -3
  20. package/doc/Path.html +4 -2
  21. package/doc/PlainTextSaslAuthenticator.html +6 -2
  22. package/doc/ProductiveByStrategy.html +288 -0
  23. package/doc/RemoteConnection.html +561 -13
  24. package/doc/RemoteStrategy.html +8 -4
  25. package/doc/RemoteTraversal.html +5 -3
  26. package/doc/ReservedKeysVerificationStrategy.html +5 -3
  27. package/doc/ResponseError.html +4 -2
  28. package/doc/ResultSet.html +10 -2
  29. package/doc/SaslAuthenticator.html +6 -2
  30. package/doc/SaslMechanismBase.html +8 -2
  31. package/doc/SaslMechanismPlain.html +10 -2
  32. package/doc/SeedStrategy.html +288 -0
  33. package/doc/SubgraphStrategy.html +5 -3
  34. package/doc/TextP.html +18 -2
  35. package/doc/Transaction.html +2 -2
  36. package/doc/Translator.html +202 -4
  37. package/doc/TraversalStrategies.html +142 -3
  38. package/doc/TraversalStrategy.html +8 -4
  39. package/doc/TypeSerializer.html +4 -2
  40. package/doc/driver_auth_authenticator.js.html +2 -2
  41. package/doc/driver_auth_mechanisms_sasl-mechanism-base.js.html +2 -2
  42. package/doc/driver_auth_mechanisms_sasl-mechanism-plain.js.html +2 -2
  43. package/doc/driver_auth_plain-text-sasl-authenticator.js.html +2 -2
  44. package/doc/driver_auth_sasl-authenticator.js.html +2 -2
  45. package/doc/driver_client.js.html +20 -8
  46. package/doc/driver_connection.js.html +2 -2
  47. package/doc/driver_driver-remote-connection.js.html +38 -4
  48. package/doc/driver_remote-connection.js.html +55 -5
  49. package/doc/driver_response-error.js.html +2 -2
  50. package/doc/driver_result-set.js.html +2 -2
  51. package/doc/global.html +3 -3
  52. package/doc/index.html +35 -18
  53. package/doc/process_anonymous-traversal.js.html +3 -3
  54. package/doc/process_bytecode.js.html +32 -3
  55. package/doc/process_graph-traversal.js.html +25 -6
  56. package/doc/process_transaction.js.html +2 -2
  57. package/doc/process_translator.js.html +45 -32
  58. package/doc/process_traversal-strategy.js.html +23 -2
  59. package/doc/process_traversal.js.html +3 -3
  60. package/doc/scripts/linenumber.js +9 -9
  61. package/doc/structure_graph.js.html +2 -2
  62. package/doc/structure_io_graph-serializer.js.html +2 -2
  63. package/doc/structure_io_type-serializers.js.html +2 -2
  64. package/doc/styles/jsdoc-default.css +2 -2
  65. package/lib/driver/client.js +18 -6
  66. package/lib/driver/driver-remote-connection.js +36 -2
  67. package/lib/driver/remote-connection.js +53 -3
  68. package/lib/process/anonymous-traversal.js +1 -1
  69. package/lib/process/bytecode.js +30 -1
  70. package/lib/process/graph-traversal.js +23 -4
  71. package/lib/process/transaction.js +86 -0
  72. package/lib/process/translator.js +43 -30
  73. package/lib/process/traversal-strategy.js +21 -0
  74. package/lib/process/traversal.js +1 -1
  75. package/package.json +6 -5
  76. package/.npmignore +0 -26
  77. package/package-lock.json +0 -5828
@@ -286,7 +286,7 @@
286
286
 
287
287
  <dt class="tag-source">Source:</dt>
288
288
  <dd class="tag-source"><ul class="dummy"><li>
289
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line35">line 35</a>
289
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line34">line 34</a>
290
290
  </li></ul></dd>
291
291
 
292
292
 
@@ -314,6 +314,8 @@
314
314
 
315
315
 
316
316
 
317
+
318
+
317
319
 
318
320
  </div>
319
321
 
@@ -453,7 +455,7 @@
453
455
 
454
456
  <dt class="tag-source">Source:</dt>
455
457
  <dd class="tag-source"><ul class="dummy"><li>
456
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line192">line 192</a>
458
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line211">line 211</a>
457
459
  </li></ul></dd>
458
460
 
459
461
 
@@ -476,6 +478,8 @@
476
478
 
477
479
 
478
480
 
481
+
482
+
479
483
  <h5>Returns:</h5>
480
484
 
481
485
 
@@ -618,7 +622,7 @@
618
622
 
619
623
  <dt class="tag-source">Source:</dt>
620
624
  <dd class="tag-source"><ul class="dummy"><li>
621
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line202">line 202</a>
625
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line221">line 221</a>
622
626
  </li></ul></dd>
623
627
 
624
628
 
@@ -641,6 +645,8 @@
641
645
 
642
646
 
643
647
 
648
+
649
+
644
650
  <h5>Returns:</h5>
645
651
 
646
652
 
@@ -783,7 +789,7 @@
783
789
 
784
790
  <dt class="tag-source">Source:</dt>
785
791
  <dd class="tag-source"><ul class="dummy"><li>
786
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line172">line 172</a>
792
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line191">line 191</a>
787
793
  </li></ul></dd>
788
794
 
789
795
 
@@ -806,6 +812,8 @@
806
812
 
807
813
 
808
814
 
815
+
816
+
809
817
  <h5>Returns:</h5>
810
818
 
811
819
 
@@ -948,7 +956,7 @@
948
956
 
949
957
  <dt class="tag-source">Source:</dt>
950
958
  <dd class="tag-source"><ul class="dummy"><li>
951
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line212">line 212</a>
959
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line231">line 231</a>
952
960
  </li></ul></dd>
953
961
 
954
962
 
@@ -971,6 +979,8 @@
971
979
 
972
980
 
973
981
 
982
+
983
+
974
984
  <h5>Returns:</h5>
975
985
 
976
986
 
@@ -1113,7 +1123,7 @@
1113
1123
 
1114
1124
  <dt class="tag-source">Source:</dt>
1115
1125
  <dd class="tag-source"><ul class="dummy"><li>
1116
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line222">line 222</a>
1126
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line241">line 241</a>
1117
1127
  </li></ul></dd>
1118
1128
 
1119
1129
 
@@ -1136,6 +1146,8 @@
1136
1146
 
1137
1147
 
1138
1148
 
1149
+
1150
+
1139
1151
  <h5>Returns:</h5>
1140
1152
 
1141
1153
 
@@ -1217,7 +1229,7 @@
1217
1229
 
1218
1230
  <dt class="tag-source">Source:</dt>
1219
1231
  <dd class="tag-source"><ul class="dummy"><li>
1220
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line103">line 103</a>
1232
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line122">line 122</a>
1221
1233
  </li></ul></dd>
1222
1234
 
1223
1235
 
@@ -1240,6 +1252,8 @@
1240
1252
 
1241
1253
 
1242
1254
 
1255
+
1256
+
1243
1257
  <h5>Returns:</h5>
1244
1258
 
1245
1259
 
@@ -1269,6 +1283,112 @@
1269
1283
 
1270
1284
 
1271
1285
 
1286
+ <h4 class="name" id="tx"><span class="type-signature"></span>tx<span class="signature">()</span><span class="type-signature"> &rarr; {<a href="Transaction.html">Transaction</a>}</span></h4>
1287
+
1288
+
1289
+
1290
+
1291
+
1292
+
1293
+ <div class="description">
1294
+ Spawn a new <code>Transaction</code> object that can then start and stop a transaction.
1295
+ </div>
1296
+
1297
+
1298
+
1299
+
1300
+
1301
+
1302
+
1303
+
1304
+
1305
+
1306
+
1307
+
1308
+
1309
+ <dl class="details">
1310
+
1311
+
1312
+
1313
+
1314
+
1315
+
1316
+
1317
+
1318
+
1319
+
1320
+
1321
+
1322
+
1323
+
1324
+
1325
+
1326
+
1327
+
1328
+
1329
+
1330
+
1331
+
1332
+
1333
+
1334
+
1335
+
1336
+ <dt class="tag-source">Source:</dt>
1337
+ <dd class="tag-source"><ul class="dummy"><li>
1338
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line73">line 73</a>
1339
+ </li></ul></dd>
1340
+
1341
+
1342
+
1343
+
1344
+
1345
+
1346
+
1347
+ </dl>
1348
+
1349
+
1350
+
1351
+
1352
+
1353
+
1354
+
1355
+
1356
+
1357
+
1358
+
1359
+
1360
+
1361
+
1362
+
1363
+ <h5>Returns:</h5>
1364
+
1365
+
1366
+
1367
+
1368
+ <dl>
1369
+ <dt>
1370
+ Type
1371
+ </dt>
1372
+ <dd>
1373
+
1374
+ <span class="param-type"><a href="Transaction.html">Transaction</a></span>
1375
+
1376
+
1377
+ </dd>
1378
+ </dl>
1379
+
1380
+
1381
+
1382
+
1383
+
1384
+
1385
+
1386
+
1387
+
1388
+
1389
+
1390
+
1391
+
1272
1392
  <h4 class="name" id="V"><span class="type-signature"></span>V<span class="signature">(&hellip;args)</span><span class="type-signature"> &rarr; {<a href="GraphTraversal.html">GraphTraversal</a>}</span></h4>
1273
1393
 
1274
1394
 
@@ -1382,7 +1502,7 @@
1382
1502
 
1383
1503
  <dt class="tag-source">Source:</dt>
1384
1504
  <dd class="tag-source"><ul class="dummy"><li>
1385
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line182">line 182</a>
1505
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line201">line 201</a>
1386
1506
  </li></ul></dd>
1387
1507
 
1388
1508
 
@@ -1405,6 +1525,8 @@
1405
1525
 
1406
1526
 
1407
1527
 
1528
+
1529
+
1408
1530
  <h5>Returns:</h5>
1409
1531
 
1410
1532
 
@@ -1558,7 +1680,7 @@
1558
1680
 
1559
1681
  <dt class="tag-source">Source:</dt>
1560
1682
  <dd class="tag-source"><ul class="dummy"><li>
1561
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line85">line 85</a>
1683
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line104">line 104</a>
1562
1684
  </li></ul></dd>
1563
1685
 
1564
1686
 
@@ -1581,6 +1703,8 @@
1581
1703
 
1582
1704
 
1583
1705
 
1706
+
1707
+
1584
1708
  <h5>Returns:</h5>
1585
1709
 
1586
1710
 
@@ -1723,7 +1847,7 @@
1723
1847
 
1724
1848
  <dt class="tag-source">Source:</dt>
1725
1849
  <dd class="tag-source"><ul class="dummy"><li>
1726
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line112">line 112</a>
1850
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line131">line 131</a>
1727
1851
  </li></ul></dd>
1728
1852
 
1729
1853
 
@@ -1746,6 +1870,8 @@
1746
1870
 
1747
1871
 
1748
1872
 
1873
+
1874
+
1749
1875
  <h5>Returns:</h5>
1750
1876
 
1751
1877
 
@@ -1975,7 +2101,7 @@
1975
2101
 
1976
2102
  <dt class="tag-source">Source:</dt>
1977
2103
  <dd class="tag-source"><ul class="dummy"><li>
1978
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line73">line 73</a>
2104
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line92">line 92</a>
1979
2105
  </li></ul></dd>
1980
2106
 
1981
2107
 
@@ -1998,6 +2124,8 @@
1998
2124
 
1999
2125
 
2000
2126
 
2127
+
2128
+
2001
2129
  <h5>Returns:</h5>
2002
2130
 
2003
2131
 
@@ -2140,7 +2268,7 @@
2140
2268
 
2141
2269
  <dt class="tag-source">Source:</dt>
2142
2270
  <dd class="tag-source"><ul class="dummy"><li>
2143
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line162">line 162</a>
2271
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line181">line 181</a>
2144
2272
  </li></ul></dd>
2145
2273
 
2146
2274
 
@@ -2163,6 +2291,8 @@
2163
2291
 
2164
2292
 
2165
2293
 
2294
+
2295
+
2166
2296
  <h5>Returns:</h5>
2167
2297
 
2168
2298
 
@@ -2305,7 +2435,7 @@
2305
2435
 
2306
2436
  <dt class="tag-source">Source:</dt>
2307
2437
  <dd class="tag-source"><ul class="dummy"><li>
2308
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line122">line 122</a>
2438
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line141">line 141</a>
2309
2439
  </li></ul></dd>
2310
2440
 
2311
2441
 
@@ -2328,6 +2458,8 @@
2328
2458
 
2329
2459
 
2330
2460
 
2461
+
2462
+
2331
2463
  <h5>Returns:</h5>
2332
2464
 
2333
2465
 
@@ -2402,6 +2534,11 @@
2402
2534
 
2403
2535
  <td class="type">
2404
2536
 
2537
+
2538
+ <span class="param-type"><a href="RemoteConnection.html">RemoteConnection</a></span>
2539
+
2540
+
2541
+
2405
2542
  </td>
2406
2543
 
2407
2544
 
@@ -2449,7 +2586,7 @@
2449
2586
 
2450
2587
  <dt class="tag-source">Source:</dt>
2451
2588
  <dd class="tag-source"><ul class="dummy"><li>
2452
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line57">line 57</a>
2589
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line62">line 62</a>
2453
2590
  </li></ul></dd>
2454
2591
 
2455
2592
 
@@ -2472,6 +2609,8 @@
2472
2609
 
2473
2610
 
2474
2611
 
2612
+
2613
+
2475
2614
  <h5>Returns:</h5>
2476
2615
 
2477
2616
 
@@ -2614,7 +2753,7 @@
2614
2753
 
2615
2754
  <dt class="tag-source">Source:</dt>
2616
2755
  <dd class="tag-source"><ul class="dummy"><li>
2617
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line132">line 132</a>
2756
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line151">line 151</a>
2618
2757
  </li></ul></dd>
2619
2758
 
2620
2759
 
@@ -2637,6 +2776,8 @@
2637
2776
 
2638
2777
 
2639
2778
 
2779
+
2780
+
2640
2781
  <h5>Returns:</h5>
2641
2782
 
2642
2783
 
@@ -2779,7 +2920,7 @@
2779
2920
 
2780
2921
  <dt class="tag-source">Source:</dt>
2781
2922
  <dd class="tag-source"><ul class="dummy"><li>
2782
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line142">line 142</a>
2923
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line161">line 161</a>
2783
2924
  </li></ul></dd>
2784
2925
 
2785
2926
 
@@ -2802,6 +2943,8 @@
2802
2943
 
2803
2944
 
2804
2945
 
2946
+
2947
+
2805
2948
  <h5>Returns:</h5>
2806
2949
 
2807
2950
 
@@ -2944,7 +3087,7 @@
2944
3087
 
2945
3088
  <dt class="tag-source">Source:</dt>
2946
3089
  <dd class="tag-source"><ul class="dummy"><li>
2947
- <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line152">line 152</a>
3090
+ <a href="process_graph-traversal.js.html">process/graph-traversal.js</a>, <a href="process_graph-traversal.js.html#line171">line 171</a>
2948
3091
  </li></ul></dd>
2949
3092
 
2950
3093
 
@@ -2967,6 +3110,8 @@
2967
3110
 
2968
3111
 
2969
3112
 
3113
+
3114
+
2970
3115
  <h5>Returns:</h5>
2971
3116
 
2972
3117
 
@@ -3006,13 +3151,13 @@
3006
3151
  </div>
3007
3152
 
3008
3153
  <nav>
3009
- <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="AnonymousTraversalSource.html">AnonymousTraversalSource</a></li><li><a href="Authenticator.html">Authenticator</a></li><li><a href="Bytecode.html">Bytecode</a></li><li><a href="Client.html">Client</a></li><li><a href="Connection.html">Connection</a></li><li><a href="DriverRemoteConnection.html">DriverRemoteConnection</a></li><li><a href="EdgeLabelVerificationStrategy.html">EdgeLabelVerificationStrategy</a></li><li><a href="Graph.html">Graph</a></li><li><a href="GraphSON2Reader.html">GraphSON2Reader</a></li><li><a href="GraphSON2Writer.html">GraphSON2Writer</a></li><li><a href="GraphSON3Reader.html">GraphSON3Reader</a></li><li><a href="GraphSON3Writer.html">GraphSON3Writer</a></li><li><a href="GraphTraversal.html">GraphTraversal</a></li><li><a href="GraphTraversalSource.html">GraphTraversalSource</a></li><li><a href="HaltedTraverserStrategy.html">HaltedTraverserStrategy</a></li><li><a href="MatchAlgorithmStrategy.html">MatchAlgorithmStrategy</a></li><li><a href="P.html">P</a></li><li><a href="PartitionStrategy.html">PartitionStrategy</a></li><li><a href="Path.html">Path</a></li><li><a href="PlainTextSaslAuthenticator.html">PlainTextSaslAuthenticator</a></li><li><a href="RemoteConnection.html">RemoteConnection</a></li><li><a href="RemoteStrategy.html">RemoteStrategy</a></li><li><a href="RemoteTraversal.html">RemoteTraversal</a></li><li><a href="ReservedKeysVerificationStrategy.html">ReservedKeysVerificationStrategy</a></li><li><a href="ResponseError.html">ResponseError</a></li><li><a href="ResultSet.html">ResultSet</a></li><li><a href="SaslAuthenticator.html">SaslAuthenticator</a></li><li><a href="SaslMechanismBase.html">SaslMechanismBase</a></li><li><a href="SaslMechanismPlain.html">SaslMechanismPlain</a></li><li><a href="SubgraphStrategy.html">SubgraphStrategy</a></li><li><a href="TextP.html">TextP</a></li><li><a href="Translator.html">Translator</a></li><li><a href="TraversalStrategies.html">TraversalStrategies</a></li><li><a href="TraversalStrategy.html">TraversalStrategy</a></li><li><a href="TypeSerializer.html">TypeSerializer</a></li></ul><h3>Global</h3><ul><li><a href="global.html#statics">statics</a></li></ul>
3154
+ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="AnonymousTraversalSource.html">AnonymousTraversalSource</a></li><li><a href="Authenticator.html">Authenticator</a></li><li><a href="Bytecode.html">Bytecode</a></li><li><a href="Client.html">Client</a></li><li><a href="Connection.html">Connection</a></li><li><a href="DriverRemoteConnection.html">DriverRemoteConnection</a></li><li><a href="EdgeLabelVerificationStrategy.html">EdgeLabelVerificationStrategy</a></li><li><a href="Graph.html">Graph</a></li><li><a href="GraphSON2Reader.html">GraphSON2Reader</a></li><li><a href="GraphSON2Writer.html">GraphSON2Writer</a></li><li><a href="GraphSON3Reader.html">GraphSON3Reader</a></li><li><a href="GraphSON3Writer.html">GraphSON3Writer</a></li><li><a href="GraphTraversal.html">GraphTraversal</a></li><li><a href="GraphTraversalSource.html">GraphTraversalSource</a></li><li><a href="HaltedTraverserStrategy.html">HaltedTraverserStrategy</a></li><li><a href="MatchAlgorithmStrategy.html">MatchAlgorithmStrategy</a></li><li><a href="P.html">P</a></li><li><a href="PartitionStrategy.html">PartitionStrategy</a></li><li><a href="Path.html">Path</a></li><li><a href="PlainTextSaslAuthenticator.html">PlainTextSaslAuthenticator</a></li><li><a href="ProductiveByStrategy.html">ProductiveByStrategy</a></li><li><a href="RemoteConnection.html">RemoteConnection</a></li><li><a href="RemoteStrategy.html">RemoteStrategy</a></li><li><a href="RemoteTraversal.html">RemoteTraversal</a></li><li><a href="ReservedKeysVerificationStrategy.html">ReservedKeysVerificationStrategy</a></li><li><a href="ResponseError.html">ResponseError</a></li><li><a href="ResultSet.html">ResultSet</a></li><li><a href="SaslAuthenticator.html">SaslAuthenticator</a></li><li><a href="SaslMechanismBase.html">SaslMechanismBase</a></li><li><a href="SaslMechanismPlain.html">SaslMechanismPlain</a></li><li><a href="SubgraphStrategy.html">SubgraphStrategy</a></li><li><a href="TextP.html">TextP</a></li><li><a href="Transaction.html">Transaction</a></li><li><a href="Translator.html">Translator</a></li><li><a href="TraversalStrategies.html">TraversalStrategies</a></li><li><a href="TraversalStrategy.html">TraversalStrategy</a></li><li><a href="TypeSerializer.html">TypeSerializer</a></li></ul><h3>Global</h3><ul><li><a href="global.html#statics">statics</a></li></ul>
3010
3155
  </nav>
3011
3156
 
3012
3157
  <br class="clear">
3013
3158
 
3014
3159
  <footer>
3015
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Mon Jul 26 2021 08:59:15 GMT+0200 (CEST)
3160
+ Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.7</a> on Fri Jan 14 2022 09:04:29 GMT-0500 (Eastern Standard Time)
3016
3161
  </footer>
3017
3162
 
3018
3163
  <script> prettyPrint(); </script>
@@ -138,7 +138,7 @@
138
138
 
139
139
  <dt class="tag-source">Source:</dt>
140
140
  <dd class="tag-source"><ul class="dummy"><li>
141
- <a href="process_traversal-strategy.js.html">process/traversal-strategy.js</a>, <a href="process_traversal-strategy.js.html#line99">line 99</a>
141
+ <a href="process_traversal-strategy.js.html">process/traversal-strategy.js</a>, <a href="process_traversal-strategy.js.html#line109">line 109</a>
142
142
  </li></ul></dd>
143
143
 
144
144
 
@@ -166,6 +166,8 @@
166
166
 
167
167
 
168
168
 
169
+
170
+
169
171
 
170
172
  </div>
171
173
 
@@ -198,13 +200,13 @@
198
200
  </div>
199
201
 
200
202
  <nav>
201
- <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="AnonymousTraversalSource.html">AnonymousTraversalSource</a></li><li><a href="Authenticator.html">Authenticator</a></li><li><a href="Bytecode.html">Bytecode</a></li><li><a href="Client.html">Client</a></li><li><a href="Connection.html">Connection</a></li><li><a href="DriverRemoteConnection.html">DriverRemoteConnection</a></li><li><a href="EdgeLabelVerificationStrategy.html">EdgeLabelVerificationStrategy</a></li><li><a href="Graph.html">Graph</a></li><li><a href="GraphSON2Reader.html">GraphSON2Reader</a></li><li><a href="GraphSON2Writer.html">GraphSON2Writer</a></li><li><a href="GraphSON3Reader.html">GraphSON3Reader</a></li><li><a href="GraphSON3Writer.html">GraphSON3Writer</a></li><li><a href="GraphTraversal.html">GraphTraversal</a></li><li><a href="GraphTraversalSource.html">GraphTraversalSource</a></li><li><a href="HaltedTraverserStrategy.html">HaltedTraverserStrategy</a></li><li><a href="MatchAlgorithmStrategy.html">MatchAlgorithmStrategy</a></li><li><a href="P.html">P</a></li><li><a href="PartitionStrategy.html">PartitionStrategy</a></li><li><a href="Path.html">Path</a></li><li><a href="PlainTextSaslAuthenticator.html">PlainTextSaslAuthenticator</a></li><li><a href="RemoteConnection.html">RemoteConnection</a></li><li><a href="RemoteStrategy.html">RemoteStrategy</a></li><li><a href="RemoteTraversal.html">RemoteTraversal</a></li><li><a href="ReservedKeysVerificationStrategy.html">ReservedKeysVerificationStrategy</a></li><li><a href="ResponseError.html">ResponseError</a></li><li><a href="ResultSet.html">ResultSet</a></li><li><a href="SaslAuthenticator.html">SaslAuthenticator</a></li><li><a href="SaslMechanismBase.html">SaslMechanismBase</a></li><li><a href="SaslMechanismPlain.html">SaslMechanismPlain</a></li><li><a href="SubgraphStrategy.html">SubgraphStrategy</a></li><li><a href="TextP.html">TextP</a></li><li><a href="Translator.html">Translator</a></li><li><a href="TraversalStrategies.html">TraversalStrategies</a></li><li><a href="TraversalStrategy.html">TraversalStrategy</a></li><li><a href="TypeSerializer.html">TypeSerializer</a></li></ul><h3>Global</h3><ul><li><a href="global.html#statics">statics</a></li></ul>
203
+ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="AnonymousTraversalSource.html">AnonymousTraversalSource</a></li><li><a href="Authenticator.html">Authenticator</a></li><li><a href="Bytecode.html">Bytecode</a></li><li><a href="Client.html">Client</a></li><li><a href="Connection.html">Connection</a></li><li><a href="DriverRemoteConnection.html">DriverRemoteConnection</a></li><li><a href="EdgeLabelVerificationStrategy.html">EdgeLabelVerificationStrategy</a></li><li><a href="Graph.html">Graph</a></li><li><a href="GraphSON2Reader.html">GraphSON2Reader</a></li><li><a href="GraphSON2Writer.html">GraphSON2Writer</a></li><li><a href="GraphSON3Reader.html">GraphSON3Reader</a></li><li><a href="GraphSON3Writer.html">GraphSON3Writer</a></li><li><a href="GraphTraversal.html">GraphTraversal</a></li><li><a href="GraphTraversalSource.html">GraphTraversalSource</a></li><li><a href="HaltedTraverserStrategy.html">HaltedTraverserStrategy</a></li><li><a href="MatchAlgorithmStrategy.html">MatchAlgorithmStrategy</a></li><li><a href="P.html">P</a></li><li><a href="PartitionStrategy.html">PartitionStrategy</a></li><li><a href="Path.html">Path</a></li><li><a href="PlainTextSaslAuthenticator.html">PlainTextSaslAuthenticator</a></li><li><a href="ProductiveByStrategy.html">ProductiveByStrategy</a></li><li><a href="RemoteConnection.html">RemoteConnection</a></li><li><a href="RemoteStrategy.html">RemoteStrategy</a></li><li><a href="RemoteTraversal.html">RemoteTraversal</a></li><li><a href="ReservedKeysVerificationStrategy.html">ReservedKeysVerificationStrategy</a></li><li><a href="ResponseError.html">ResponseError</a></li><li><a href="ResultSet.html">ResultSet</a></li><li><a href="SaslAuthenticator.html">SaslAuthenticator</a></li><li><a href="SaslMechanismBase.html">SaslMechanismBase</a></li><li><a href="SaslMechanismPlain.html">SaslMechanismPlain</a></li><li><a href="SubgraphStrategy.html">SubgraphStrategy</a></li><li><a href="TextP.html">TextP</a></li><li><a href="Transaction.html">Transaction</a></li><li><a href="Translator.html">Translator</a></li><li><a href="TraversalStrategies.html">TraversalStrategies</a></li><li><a href="TraversalStrategy.html">TraversalStrategy</a></li><li><a href="TypeSerializer.html">TypeSerializer</a></li></ul><h3>Global</h3><ul><li><a href="global.html#statics">statics</a></li></ul>
202
204
  </nav>
203
205
 
204
206
  <br class="clear">
205
207
 
206
208
  <footer>
207
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Mon Jul 26 2021 08:59:15 GMT+0200 (CEST)
209
+ Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.7</a> on Fri Jan 14 2022 09:04:29 GMT-0500 (Eastern Standard Time)
208
210
  </footer>
209
211
 
210
212
  <script> prettyPrint(); </script>
@@ -133,7 +133,7 @@
133
133
 
134
134
  <dt class="tag-source">Source:</dt>
135
135
  <dd class="tag-source"><ul class="dummy"><li>
136
- <a href="process_traversal-strategy.js.html">process/traversal-strategy.js</a>, <a href="process_traversal-strategy.js.html#line155">line 155</a>
136
+ <a href="process_traversal-strategy.js.html">process/traversal-strategy.js</a>, <a href="process_traversal-strategy.js.html#line175">line 175</a>
137
137
  </li></ul></dd>
138
138
 
139
139
 
@@ -161,6 +161,8 @@
161
161
 
162
162
 
163
163
 
164
+
165
+
164
166
 
165
167
  </div>
166
168
 
@@ -193,13 +195,13 @@
193
195
  </div>
194
196
 
195
197
  <nav>
196
- <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="AnonymousTraversalSource.html">AnonymousTraversalSource</a></li><li><a href="Authenticator.html">Authenticator</a></li><li><a href="Bytecode.html">Bytecode</a></li><li><a href="Client.html">Client</a></li><li><a href="Connection.html">Connection</a></li><li><a href="DriverRemoteConnection.html">DriverRemoteConnection</a></li><li><a href="EdgeLabelVerificationStrategy.html">EdgeLabelVerificationStrategy</a></li><li><a href="Graph.html">Graph</a></li><li><a href="GraphSON2Reader.html">GraphSON2Reader</a></li><li><a href="GraphSON2Writer.html">GraphSON2Writer</a></li><li><a href="GraphSON3Reader.html">GraphSON3Reader</a></li><li><a href="GraphSON3Writer.html">GraphSON3Writer</a></li><li><a href="GraphTraversal.html">GraphTraversal</a></li><li><a href="GraphTraversalSource.html">GraphTraversalSource</a></li><li><a href="HaltedTraverserStrategy.html">HaltedTraverserStrategy</a></li><li><a href="MatchAlgorithmStrategy.html">MatchAlgorithmStrategy</a></li><li><a href="P.html">P</a></li><li><a href="PartitionStrategy.html">PartitionStrategy</a></li><li><a href="Path.html">Path</a></li><li><a href="PlainTextSaslAuthenticator.html">PlainTextSaslAuthenticator</a></li><li><a href="RemoteConnection.html">RemoteConnection</a></li><li><a href="RemoteStrategy.html">RemoteStrategy</a></li><li><a href="RemoteTraversal.html">RemoteTraversal</a></li><li><a href="ReservedKeysVerificationStrategy.html">ReservedKeysVerificationStrategy</a></li><li><a href="ResponseError.html">ResponseError</a></li><li><a href="ResultSet.html">ResultSet</a></li><li><a href="SaslAuthenticator.html">SaslAuthenticator</a></li><li><a href="SaslMechanismBase.html">SaslMechanismBase</a></li><li><a href="SaslMechanismPlain.html">SaslMechanismPlain</a></li><li><a href="SubgraphStrategy.html">SubgraphStrategy</a></li><li><a href="TextP.html">TextP</a></li><li><a href="Translator.html">Translator</a></li><li><a href="TraversalStrategies.html">TraversalStrategies</a></li><li><a href="TraversalStrategy.html">TraversalStrategy</a></li><li><a href="TypeSerializer.html">TypeSerializer</a></li></ul><h3>Global</h3><ul><li><a href="global.html#statics">statics</a></li></ul>
198
+ <h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="AnonymousTraversalSource.html">AnonymousTraversalSource</a></li><li><a href="Authenticator.html">Authenticator</a></li><li><a href="Bytecode.html">Bytecode</a></li><li><a href="Client.html">Client</a></li><li><a href="Connection.html">Connection</a></li><li><a href="DriverRemoteConnection.html">DriverRemoteConnection</a></li><li><a href="EdgeLabelVerificationStrategy.html">EdgeLabelVerificationStrategy</a></li><li><a href="Graph.html">Graph</a></li><li><a href="GraphSON2Reader.html">GraphSON2Reader</a></li><li><a href="GraphSON2Writer.html">GraphSON2Writer</a></li><li><a href="GraphSON3Reader.html">GraphSON3Reader</a></li><li><a href="GraphSON3Writer.html">GraphSON3Writer</a></li><li><a href="GraphTraversal.html">GraphTraversal</a></li><li><a href="GraphTraversalSource.html">GraphTraversalSource</a></li><li><a href="HaltedTraverserStrategy.html">HaltedTraverserStrategy</a></li><li><a href="MatchAlgorithmStrategy.html">MatchAlgorithmStrategy</a></li><li><a href="P.html">P</a></li><li><a href="PartitionStrategy.html">PartitionStrategy</a></li><li><a href="Path.html">Path</a></li><li><a href="PlainTextSaslAuthenticator.html">PlainTextSaslAuthenticator</a></li><li><a href="ProductiveByStrategy.html">ProductiveByStrategy</a></li><li><a href="RemoteConnection.html">RemoteConnection</a></li><li><a href="RemoteStrategy.html">RemoteStrategy</a></li><li><a href="RemoteTraversal.html">RemoteTraversal</a></li><li><a href="ReservedKeysVerificationStrategy.html">ReservedKeysVerificationStrategy</a></li><li><a href="ResponseError.html">ResponseError</a></li><li><a href="ResultSet.html">ResultSet</a></li><li><a href="SaslAuthenticator.html">SaslAuthenticator</a></li><li><a href="SaslMechanismBase.html">SaslMechanismBase</a></li><li><a href="SaslMechanismPlain.html">SaslMechanismPlain</a></li><li><a href="SubgraphStrategy.html">SubgraphStrategy</a></li><li><a href="TextP.html">TextP</a></li><li><a href="Transaction.html">Transaction</a></li><li><a href="Translator.html">Translator</a></li><li><a href="TraversalStrategies.html">TraversalStrategies</a></li><li><a href="TraversalStrategy.html">TraversalStrategy</a></li><li><a href="TypeSerializer.html">TypeSerializer</a></li></ul><h3>Global</h3><ul><li><a href="global.html#statics">statics</a></li></ul>
197
199
  </nav>
198
200
 
199
201
  <br class="clear">
200
202
 
201
203
  <footer>
202
- Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Mon Jul 26 2021 08:59:15 GMT+0200 (CEST)
204
+ Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.7</a> on Fri Jan 14 2022 09:04:29 GMT-0500 (Eastern Standard Time)
203
205
  </footer>
204
206
 
205
207
  <script> prettyPrint(); </script>