gremlin 3.5.1 → 3.6.0

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 (89) hide show
  1. package/.eslintrc.js +154 -0
  2. package/.prettierrc.js +29 -0
  3. package/Gruntfile.js +15 -16
  4. package/README.md +2 -2
  5. package/doc/AnonymousTraversalSource.html +5 -5
  6. package/doc/Authenticator.html +2 -2
  7. package/doc/Bytecode.html +7 -7
  8. package/doc/Client.html +138 -64
  9. package/doc/Connection.html +89 -5
  10. package/doc/DriverRemoteConnection.html +11 -11
  11. package/doc/EdgeLabelVerificationStrategy.html +3 -3
  12. package/doc/Graph.html +2 -2
  13. package/doc/GraphSON2Reader.html +4 -4
  14. package/doc/GraphSON2Writer.html +3 -3
  15. package/doc/GraphSON3Reader.html +3 -3
  16. package/doc/GraphSON3Writer.html +3 -3
  17. package/doc/GraphTraversal.html +1025 -190
  18. package/doc/GraphTraversalSource.html +520 -19
  19. package/doc/HaltedTraverserStrategy.html +3 -3
  20. package/doc/MatchAlgorithmStrategy.html +3 -3
  21. package/doc/P.html +13 -13
  22. package/doc/PartitionStrategy.html +3 -3
  23. package/doc/Path.html +2 -2
  24. package/doc/PlainTextSaslAuthenticator.html +2 -2
  25. package/doc/ProductiveByStrategy.html +288 -0
  26. package/doc/RemoteConnection.html +10 -10
  27. package/doc/RemoteStrategy.html +4 -4
  28. package/doc/RemoteTraversal.html +3 -3
  29. package/doc/ReservedKeysVerificationStrategy.html +3 -3
  30. package/doc/ResponseError.html +2 -2
  31. package/doc/ResultSet.html +7 -7
  32. package/doc/SaslAuthenticator.html +2 -2
  33. package/doc/SaslMechanismBase.html +2 -2
  34. package/doc/SaslMechanismPlain.html +6 -6
  35. package/doc/SeedStrategy.html +288 -0
  36. package/doc/SubgraphStrategy.html +3 -3
  37. package/doc/TextP.html +300 -10
  38. package/doc/Transaction.html +6 -6
  39. package/doc/Translator.html +198 -4
  40. package/doc/TraversalStrategies.html +5 -5
  41. package/doc/TraversalStrategy.html +3 -3
  42. package/doc/TypeSerializer.html +2 -2
  43. package/doc/driver_auth_authenticator.js.html +4 -4
  44. package/doc/driver_auth_mechanisms_sasl-mechanism-base.js.html +3 -3
  45. package/doc/driver_auth_mechanisms_sasl-mechanism-plain.js.html +26 -17
  46. package/doc/driver_auth_plain-text-sasl-authenticator.js.html +7 -7
  47. package/doc/driver_auth_sasl-authenticator.js.html +3 -3
  48. package/doc/driver_client.js.html +73 -23
  49. package/doc/driver_connection.js.html +108 -89
  50. package/doc/driver_driver-remote-connection.js.html +12 -11
  51. package/doc/driver_remote-connection.js.html +4 -5
  52. package/doc/driver_response-error.js.html +5 -4
  53. package/doc/driver_result-set.js.html +4 -4
  54. package/doc/global.html +200 -3
  55. package/doc/index.html +4 -4
  56. package/doc/process_anonymous-traversal.js.html +4 -4
  57. package/doc/process_bytecode.js.html +11 -9
  58. package/doc/process_graph-traversal.js.html +277 -143
  59. package/doc/process_transaction.js.html +16 -9
  60. package/doc/process_translator.js.html +53 -37
  61. package/doc/process_traversal-strategy.js.html +83 -53
  62. package/doc/process_traversal.js.html +111 -107
  63. package/doc/structure_graph.js.html +7 -7
  64. package/doc/structure_io_graph-serializer.js.html +65 -18
  65. package/doc/structure_io_type-serializers.js.html +86 -89
  66. package/index.js +5 -5
  67. package/lib/driver/auth/authenticator.js +2 -2
  68. package/lib/driver/auth/mechanisms/sasl-mechanism-base.js +1 -1
  69. package/lib/driver/auth/mechanisms/sasl-mechanism-plain.js +24 -15
  70. package/lib/driver/auth/plain-text-sasl-authenticator.js +5 -5
  71. package/lib/driver/auth/sasl-authenticator.js +1 -1
  72. package/lib/driver/client.js +71 -21
  73. package/lib/driver/connection.js +106 -87
  74. package/lib/driver/driver-remote-connection.js +10 -9
  75. package/lib/driver/remote-connection.js +2 -3
  76. package/lib/driver/response-error.js +2 -2
  77. package/lib/driver/result-set.js +1 -2
  78. package/lib/process/anonymous-traversal.js +1 -2
  79. package/lib/process/bytecode.js +9 -7
  80. package/lib/process/graph-traversal.js +274 -141
  81. package/lib/process/transaction.js +13 -7
  82. package/lib/process/translator.js +50 -35
  83. package/lib/process/traversal-strategy.js +80 -51
  84. package/lib/process/traversal.js +109 -105
  85. package/lib/structure/graph.js +5 -5
  86. package/lib/structure/io/graph-serializer.js +62 -16
  87. package/lib/structure/io/type-serializers.js +84 -87
  88. package/lib/utils.js +15 -10
  89. package/package.json +11 -4
package/doc/TextP.html CHANGED
@@ -93,7 +93,7 @@
93
93
 
94
94
  <dt class="tag-source">Source:</dt>
95
95
  <dd class="tag-source"><ul class="dummy"><li>
96
- <a href="process_traversal.js.html">process/traversal.js</a>, <a href="process_traversal.js.html#line368">line 368</a>
96
+ <a href="process_traversal.js.html">process/traversal.js</a>, <a href="process_traversal.js.html#line364">line 364</a>
97
97
  </li></ul></dd>
98
98
 
99
99
 
@@ -258,7 +258,7 @@
258
258
 
259
259
  <dt class="tag-source">Source:</dt>
260
260
  <dd class="tag-source"><ul class="dummy"><li>
261
- <a href="process_traversal.js.html">process/traversal.js</a>, <a href="process_traversal.js.html#line401">line 401</a>
261
+ <a href="process_traversal.js.html">process/traversal.js</a>, <a href="process_traversal.js.html#line397">line 397</a>
262
262
  </li></ul></dd>
263
263
 
264
264
 
@@ -403,7 +403,7 @@
403
403
 
404
404
  <dt class="tag-source">Source:</dt>
405
405
  <dd class="tag-source"><ul class="dummy"><li>
406
- <a href="process_traversal.js.html">process/traversal.js</a>, <a href="process_traversal.js.html#line406">line 406</a>
406
+ <a href="process_traversal.js.html">process/traversal.js</a>, <a href="process_traversal.js.html#line402">line 402</a>
407
407
  </li></ul></dd>
408
408
 
409
409
 
@@ -548,7 +548,7 @@
548
548
 
549
549
  <dt class="tag-source">Source:</dt>
550
550
  <dd class="tag-source"><ul class="dummy"><li>
551
- <a href="process_traversal.js.html">process/traversal.js</a>, <a href="process_traversal.js.html#line411">line 411</a>
551
+ <a href="process_traversal.js.html">process/traversal.js</a>, <a href="process_traversal.js.html#line407">line 407</a>
552
552
  </li></ul></dd>
553
553
 
554
554
 
@@ -693,7 +693,152 @@
693
693
 
694
694
  <dt class="tag-source">Source:</dt>
695
695
  <dd class="tag-source"><ul class="dummy"><li>
696
- <a href="process_traversal.js.html">process/traversal.js</a>, <a href="process_traversal.js.html#line416">line 416</a>
696
+ <a href="process_traversal.js.html">process/traversal.js</a>, <a href="process_traversal.js.html#line412">line 412</a>
697
+ </li></ul></dd>
698
+
699
+
700
+
701
+
702
+
703
+
704
+
705
+ </dl>
706
+
707
+
708
+
709
+
710
+
711
+
712
+
713
+
714
+
715
+
716
+
717
+
718
+
719
+
720
+
721
+
722
+
723
+
724
+
725
+
726
+
727
+
728
+
729
+
730
+
731
+
732
+ <h4 class="name" id=".notRegex"><span class="type-signature">(static) </span>notRegex<span class="signature">(&hellip;args)</span><span class="type-signature"></span></h4>
733
+
734
+
735
+
736
+
737
+
738
+
739
+
740
+
741
+
742
+
743
+
744
+
745
+
746
+
747
+ <h5>Parameters:</h5>
748
+
749
+
750
+ <table class="params">
751
+ <thead>
752
+ <tr>
753
+
754
+ <th>Name</th>
755
+
756
+
757
+ <th>Type</th>
758
+
759
+
760
+ <th>Attributes</th>
761
+
762
+
763
+
764
+
765
+ <th class="last">Description</th>
766
+ </tr>
767
+ </thead>
768
+
769
+ <tbody>
770
+
771
+
772
+ <tr>
773
+
774
+ <td class="name"><code>args</code></td>
775
+
776
+
777
+ <td class="type">
778
+
779
+
780
+ <span class="param-type">Object</span>
781
+
782
+
783
+
784
+ </td>
785
+
786
+
787
+ <td class="attributes">
788
+
789
+
790
+
791
+
792
+
793
+ &lt;repeatable><br>
794
+
795
+ </td>
796
+
797
+
798
+
799
+
800
+ <td class="description last"></td>
801
+ </tr>
802
+
803
+
804
+ </tbody>
805
+ </table>
806
+
807
+
808
+
809
+
810
+
811
+
812
+ <dl class="details">
813
+
814
+
815
+
816
+
817
+
818
+
819
+
820
+
821
+
822
+
823
+
824
+
825
+
826
+
827
+
828
+
829
+
830
+
831
+
832
+
833
+
834
+
835
+
836
+
837
+
838
+
839
+ <dt class="tag-source">Source:</dt>
840
+ <dd class="tag-source"><ul class="dummy"><li>
841
+ <a href="process_traversal.js.html">process/traversal.js</a>, <a href="process_traversal.js.html#line432">line 432</a>
697
842
  </li></ul></dd>
698
843
 
699
844
 
@@ -838,7 +983,152 @@
838
983
 
839
984
  <dt class="tag-source">Source:</dt>
840
985
  <dd class="tag-source"><ul class="dummy"><li>
841
- <a href="process_traversal.js.html">process/traversal.js</a>, <a href="process_traversal.js.html#line421">line 421</a>
986
+ <a href="process_traversal.js.html">process/traversal.js</a>, <a href="process_traversal.js.html#line417">line 417</a>
987
+ </li></ul></dd>
988
+
989
+
990
+
991
+
992
+
993
+
994
+
995
+ </dl>
996
+
997
+
998
+
999
+
1000
+
1001
+
1002
+
1003
+
1004
+
1005
+
1006
+
1007
+
1008
+
1009
+
1010
+
1011
+
1012
+
1013
+
1014
+
1015
+
1016
+
1017
+
1018
+
1019
+
1020
+
1021
+
1022
+ <h4 class="name" id=".regex"><span class="type-signature">(static) </span>regex<span class="signature">(&hellip;args)</span><span class="type-signature"></span></h4>
1023
+
1024
+
1025
+
1026
+
1027
+
1028
+
1029
+
1030
+
1031
+
1032
+
1033
+
1034
+
1035
+
1036
+
1037
+ <h5>Parameters:</h5>
1038
+
1039
+
1040
+ <table class="params">
1041
+ <thead>
1042
+ <tr>
1043
+
1044
+ <th>Name</th>
1045
+
1046
+
1047
+ <th>Type</th>
1048
+
1049
+
1050
+ <th>Attributes</th>
1051
+
1052
+
1053
+
1054
+
1055
+ <th class="last">Description</th>
1056
+ </tr>
1057
+ </thead>
1058
+
1059
+ <tbody>
1060
+
1061
+
1062
+ <tr>
1063
+
1064
+ <td class="name"><code>args</code></td>
1065
+
1066
+
1067
+ <td class="type">
1068
+
1069
+
1070
+ <span class="param-type">Object</span>
1071
+
1072
+
1073
+
1074
+ </td>
1075
+
1076
+
1077
+ <td class="attributes">
1078
+
1079
+
1080
+
1081
+
1082
+
1083
+ &lt;repeatable><br>
1084
+
1085
+ </td>
1086
+
1087
+
1088
+
1089
+
1090
+ <td class="description last"></td>
1091
+ </tr>
1092
+
1093
+
1094
+ </tbody>
1095
+ </table>
1096
+
1097
+
1098
+
1099
+
1100
+
1101
+
1102
+ <dl class="details">
1103
+
1104
+
1105
+
1106
+
1107
+
1108
+
1109
+
1110
+
1111
+
1112
+
1113
+
1114
+
1115
+
1116
+
1117
+
1118
+
1119
+
1120
+
1121
+
1122
+
1123
+
1124
+
1125
+
1126
+
1127
+
1128
+
1129
+ <dt class="tag-source">Source:</dt>
1130
+ <dd class="tag-source"><ul class="dummy"><li>
1131
+ <a href="process_traversal.js.html">process/traversal.js</a>, <a href="process_traversal.js.html#line427">line 427</a>
842
1132
  </li></ul></dd>
843
1133
 
844
1134
 
@@ -983,7 +1273,7 @@
983
1273
 
984
1274
  <dt class="tag-source">Source:</dt>
985
1275
  <dd class="tag-source"><ul class="dummy"><li>
986
- <a href="process_traversal.js.html">process/traversal.js</a>, <a href="process_traversal.js.html#line426">line 426</a>
1276
+ <a href="process_traversal.js.html">process/traversal.js</a>, <a href="process_traversal.js.html#line422">line 422</a>
987
1277
  </li></ul></dd>
988
1278
 
989
1279
 
@@ -1071,7 +1361,7 @@
1071
1361
 
1072
1362
  <dt class="tag-source">Source:</dt>
1073
1363
  <dd class="tag-source"><ul class="dummy"><li>
1074
- <a href="process_traversal.js.html">process/traversal.js</a>, <a href="process_traversal.js.html#line378">line 378</a>
1364
+ <a href="process_traversal.js.html">process/traversal.js</a>, <a href="process_traversal.js.html#line374">line 374</a>
1075
1365
  </li></ul></dd>
1076
1366
 
1077
1367
 
@@ -1135,13 +1425,13 @@
1135
1425
  </div>
1136
1426
 
1137
1427
  <nav>
1138
- <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="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>
1428
+ <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="SeedStrategy.html">SeedStrategy</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>
1139
1429
  </nav>
1140
1430
 
1141
1431
  <br class="clear">
1142
1432
 
1143
1433
  <footer>
1144
- Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.7</a> on Mon Jul 26 2021 10:29:09 GMT+0200 (Central European Summer Time)
1434
+ Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Mon Apr 11 2022 07:53:52 GMT-0400 (Eastern Daylight Time)
1145
1435
  </footer>
1146
1436
 
1147
1437
  <script> prettyPrint(); </script>
@@ -190,7 +190,7 @@ then close the transaction and thus, the session. This feature only works with t
190
190
 
191
191
  <dt class="tag-source">Source:</dt>
192
192
  <dd class="tag-source"><ul class="dummy"><li>
193
- <a href="process_transaction.js.html">process/transaction.js</a>, <a href="process_transaction.js.html#line71">line 71</a>
193
+ <a href="process_transaction.js.html">process/transaction.js</a>, <a href="process_transaction.js.html#line76">line 76</a>
194
194
  </li></ul></dd>
195
195
 
196
196
 
@@ -372,7 +372,7 @@ then close the transaction and thus, the session. This feature only works with t
372
372
 
373
373
  <dt class="tag-source">Source:</dt>
374
374
  <dd class="tag-source"><ul class="dummy"><li>
375
- <a href="process_transaction.js.html">process/transaction.js</a>, <a href="process_transaction.js.html#line78">line 78</a>
375
+ <a href="process_transaction.js.html">process/transaction.js</a>, <a href="process_transaction.js.html#line83">line 83</a>
376
376
  </li></ul></dd>
377
377
 
378
378
 
@@ -474,7 +474,7 @@ then close the transaction and thus, the session. This feature only works with t
474
474
 
475
475
  <dt class="tag-source">Source:</dt>
476
476
  <dd class="tag-source"><ul class="dummy"><li>
477
- <a href="process_transaction.js.html">process/transaction.js</a>, <a href="process_transaction.js.html#line56">line 56</a>
477
+ <a href="process_transaction.js.html">process/transaction.js</a>, <a href="process_transaction.js.html#line61">line 61</a>
478
478
  </li></ul></dd>
479
479
 
480
480
 
@@ -576,7 +576,7 @@ then close the transaction and thus, the session. This feature only works with t
576
576
 
577
577
  <dt class="tag-source">Source:</dt>
578
578
  <dd class="tag-source"><ul class="dummy"><li>
579
- <a href="process_transaction.js.html">process/transaction.js</a>, <a href="process_transaction.js.html#line63">line 63</a>
579
+ <a href="process_transaction.js.html">process/transaction.js</a>, <a href="process_transaction.js.html#line68">line 68</a>
580
580
  </li></ul></dd>
581
581
 
582
582
 
@@ -640,13 +640,13 @@ then close the transaction and thus, the session. This feature only works with t
640
640
  </div>
641
641
 
642
642
  <nav>
643
- <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="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>
643
+ <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="SeedStrategy.html">SeedStrategy</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>
644
644
  </nav>
645
645
 
646
646
  <br class="clear">
647
647
 
648
648
  <footer>
649
- Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.7</a> on Mon Jul 26 2021 10:29:09 GMT+0200 (Central European Summer Time)
649
+ Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Mon Apr 11 2022 07:53:52 GMT-0400 (Eastern Daylight Time)
650
650
  </footer>
651
651
 
652
652
  <script> prettyPrint(); </script>