gremlin 3.7.0 → 3.7.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.
- package/.eslintrc.js +3 -4
- package/.nvmrc +1 -0
- package/LICENSE +9 -1
- package/NOTICE +1 -1
- package/README.md +1 -1
- package/doc/AnonymousTraversalSource.html +2 -2
- package/doc/Authenticator.html +2 -2
- package/doc/Bytecode.html +2 -2
- package/doc/CardinalityValue.html +6 -6
- package/doc/Client.html +12 -78
- package/doc/Connection.html +12 -166
- package/doc/DataType.js.html +149 -0
- package/doc/DriverRemoteConnection.html +15 -81
- package/doc/EdgeLabelVerificationStrategy.html +2 -2
- package/doc/Graph.html +2 -2
- package/doc/GraphBinaryReader.js.html +132 -0
- package/doc/GraphBinaryWriter.js.html +135 -0
- package/doc/GraphSON2Reader.html +4 -4
- package/doc/GraphSON2Writer.html +5 -5
- package/doc/GraphSON3Reader.html +3 -3
- package/doc/GraphSON3Writer.html +3 -3
- package/doc/GraphTraversal.html +4306 -298
- package/doc/GraphTraversalSource.html +2 -2
- package/doc/HaltedTraverserStrategy.html +2 -2
- package/doc/MatchAlgorithmStrategy.html +2 -2
- package/doc/P.html +2 -2
- package/doc/PartitionStrategy.html +2 -2
- package/doc/Path.html +2 -2
- package/doc/PlainTextSaslAuthenticator.html +2 -2
- package/doc/ProductiveByStrategy.html +2 -2
- package/doc/RemoteConnection.html +2 -2
- package/doc/RemoteStrategy.html +2 -2
- package/doc/RemoteTraversal.html +2 -2
- package/doc/ReservedKeysVerificationStrategy.html +2 -2
- package/doc/ResponseError.html +2 -2
- package/doc/ResultSet.html +7 -95
- package/doc/SaslAuthenticator.html +2 -2
- package/doc/SaslMechanismBase.html +2 -2
- package/doc/SaslMechanismPlain.html +7 -7
- package/doc/SeedStrategy.html +2 -2
- package/doc/SubgraphStrategy.html +2 -2
- package/doc/TextP.html +2 -2
- package/doc/Transaction.html +5 -5
- package/doc/Translator.html +2 -2
- package/doc/TraversalStrategies.html +2 -2
- package/doc/TraversalStrategy.html +2 -2
- package/doc/TypeSerializer.html +2 -2
- package/doc/driver_auth_authenticator.js.html +2 -2
- package/doc/driver_auth_mechanisms_sasl-mechanism-base.js.html +2 -2
- package/doc/driver_auth_mechanisms_sasl-mechanism-plain.js.html +3 -2
- package/doc/driver_auth_plain-text-sasl-authenticator.js.html +2 -2
- package/doc/driver_auth_sasl-authenticator.js.html +2 -2
- package/doc/driver_client.js.html +3 -5
- package/doc/driver_connection.js.html +91 -116
- package/doc/driver_driver-remote-connection.js.html +3 -5
- package/doc/driver_remote-connection.js.html +2 -2
- package/doc/driver_response-error.js.html +2 -2
- package/doc/driver_result-set.js.html +2 -11
- package/doc/global.html +159 -4
- package/doc/index.html +3 -3
- package/doc/module.exports.html +4 -4
- package/doc/process_anonymous-traversal.js.html +2 -2
- package/doc/process_bytecode.js.html +2 -2
- package/doc/process_graph-traversal.js.html +259 -2
- package/doc/process_transaction.js.html +12 -4
- package/doc/process_translator.js.html +2 -2
- package/doc/process_traversal-strategy.js.html +2 -2
- package/doc/process_traversal.js.html +3 -2
- package/doc/structure_graph.js.html +2 -2
- package/doc/structure_io_binary_internals_DataType.js.html +3 -2
- package/doc/structure_io_binary_internals_GraphBinaryReader.js.html +4 -2
- package/doc/structure_io_binary_internals_GraphBinaryWriter.js.html +4 -2
- package/doc/structure_io_graph-serializer.js.html +3 -2
- package/doc/structure_io_type-serializers.js.html +2 -2
- package/doc/utils.js.html +181 -0
- package/index.js +1 -0
- package/lib/driver/auth/mechanisms/sasl-mechanism-plain.js +1 -0
- package/lib/driver/client.js +1 -3
- package/lib/driver/connection.js +89 -114
- package/lib/driver/driver-remote-connection.js +1 -3
- package/lib/driver/result-set.js +0 -9
- package/lib/process/graph-traversal.js +257 -0
- package/lib/process/transaction.js +10 -2
- package/lib/process/traversal.js +1 -0
- package/lib/structure/io/binary/internals/AnySerializer.js +2 -0
- package/lib/structure/io/binary/internals/ArraySerializer.js +2 -0
- package/lib/structure/io/binary/internals/BigIntegerSerializer.js +2 -0
- package/lib/structure/io/binary/internals/BooleanSerializer.js +2 -0
- package/lib/structure/io/binary/internals/BulkSetSerializer.js +2 -0
- package/lib/structure/io/binary/internals/ByteBufferSerializer.js +2 -0
- package/lib/structure/io/binary/internals/ByteSerializer.js +2 -0
- package/lib/structure/io/binary/internals/BytecodeSerializer.js +1 -0
- package/lib/structure/io/binary/internals/DataType.js +1 -0
- package/lib/structure/io/binary/internals/DateSerializer.js +2 -0
- package/lib/structure/io/binary/internals/DoubleSerializer.js +2 -0
- package/lib/structure/io/binary/internals/EdgeSerializer.js +1 -0
- package/lib/structure/io/binary/internals/EnumSerializer.js +2 -0
- package/lib/structure/io/binary/internals/FloatSerializer.js +2 -0
- package/lib/structure/io/binary/internals/GraphBinaryReader.js +2 -0
- package/lib/structure/io/binary/internals/GraphBinaryWriter.js +2 -0
- package/lib/structure/io/binary/internals/IntSerializer.js +2 -0
- package/lib/structure/io/binary/internals/LambdaSerializer.js +1 -0
- package/lib/structure/io/binary/internals/LongSerializer.js +2 -0
- package/lib/structure/io/binary/internals/LongSerializerNg.js +2 -0
- package/lib/structure/io/binary/internals/MapSerializer.js +2 -0
- package/lib/structure/io/binary/internals/PSerializer.js +1 -0
- package/lib/structure/io/binary/internals/PathSerializer.js +1 -0
- package/lib/structure/io/binary/internals/PropertySerializer.js +1 -0
- package/lib/structure/io/binary/internals/ShortSerializer.js +2 -0
- package/lib/structure/io/binary/internals/StringSerializer.js +2 -0
- package/lib/structure/io/binary/internals/TextPSerializer.js +1 -0
- package/lib/structure/io/binary/internals/TraversalStrategySerializer.js +2 -0
- package/lib/structure/io/binary/internals/TraverserSerializer.js +1 -0
- package/lib/structure/io/binary/internals/UnspecifiedNullSerializer.js +2 -0
- package/lib/structure/io/binary/internals/UuidSerializer.js +2 -0
- package/lib/structure/io/binary/internals/VertexPropertySerializer.js +1 -0
- package/lib/structure/io/binary/internals/VertexSerializer.js +1 -0
- package/lib/structure/io/binary/internals/utils.js +2 -0
- package/lib/structure/io/graph-serializer.js +1 -0
- package/lib/utils.js +40 -29
- package/licenses/chai +21 -0
- package/package.json +8 -4
package/doc/Connection.html
CHANGED
|
@@ -548,13 +548,13 @@
|
|
|
548
548
|
|
|
549
549
|
<tr>
|
|
550
550
|
|
|
551
|
-
<td class="name"><code>
|
|
551
|
+
<td class="name"><code>agent</code></td>
|
|
552
552
|
|
|
553
553
|
|
|
554
554
|
<td class="type">
|
|
555
555
|
|
|
556
556
|
|
|
557
|
-
<span class="param-type">
|
|
557
|
+
<span class="param-type">http.Agent</span>
|
|
558
558
|
|
|
559
559
|
|
|
560
560
|
|
|
@@ -574,73 +574,7 @@
|
|
|
574
574
|
|
|
575
575
|
|
|
576
576
|
|
|
577
|
-
<td class="description last">
|
|
578
|
-
</tr>
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
<tr>
|
|
583
|
-
|
|
584
|
-
<td class="name"><code>pingInterval</code></td>
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
<td class="type">
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
<span class="param-type">Number</span>
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
</td>
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
<td class="attributes">
|
|
598
|
-
|
|
599
|
-
<optional><br>
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
</td>
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
<td class="description last">Ping request interval in ms if ping enabled. Defaults to: 60000.</td>
|
|
611
|
-
</tr>
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
<tr>
|
|
616
|
-
|
|
617
|
-
<td class="name"><code>pongTimeout</code></td>
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
<td class="type">
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
<span class="param-type">Number</span>
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
</td>
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
<td class="attributes">
|
|
631
|
-
|
|
632
|
-
<optional><br>
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
</td>
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
<td class="description last">Timeout of pong response in ms after sending a ping. Defaults to: 30000.</td>
|
|
577
|
+
<td class="description last">The http.Agent implementation to use.</td>
|
|
644
578
|
</tr>
|
|
645
579
|
|
|
646
580
|
|
|
@@ -688,7 +622,7 @@
|
|
|
688
622
|
|
|
689
623
|
<dt class="tag-source">Source:</dt>
|
|
690
624
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
691
|
-
<a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#
|
|
625
|
+
<a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line51">line 51</a>
|
|
692
626
|
</li></ul></dd>
|
|
693
627
|
|
|
694
628
|
|
|
@@ -792,7 +726,7 @@
|
|
|
792
726
|
|
|
793
727
|
<dt class="tag-source">Source:</dt>
|
|
794
728
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
795
|
-
<a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#
|
|
729
|
+
<a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line80">line 80</a>
|
|
796
730
|
</li></ul></dd>
|
|
797
731
|
|
|
798
732
|
|
|
@@ -814,94 +748,6 @@
|
|
|
814
748
|
|
|
815
749
|
<h3 class="subsection-title">Methods</h3>
|
|
816
750
|
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
<h4 class="name" id="_cleanupWebsocket"><span class="type-signature"></span>_cleanupWebsocket<span class="signature">()</span><span class="type-signature"></span></h4>
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
<div class="description">
|
|
831
|
-
clean websocket context
|
|
832
|
-
</div>
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
<dl class="details">
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
<dt class="tag-source">Source:</dt>
|
|
874
|
-
<dd class="tag-source"><ul class="dummy"><li>
|
|
875
|
-
<a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line377">line 377</a>
|
|
876
|
-
</li></ul></dd>
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
</dl>
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
751
|
|
|
906
752
|
|
|
907
753
|
|
|
@@ -960,7 +806,7 @@
|
|
|
960
806
|
|
|
961
807
|
<dt class="tag-source">Source:</dt>
|
|
962
808
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
963
|
-
<a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#
|
|
809
|
+
<a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line392">line 392</a>
|
|
964
810
|
</li></ul></dd>
|
|
965
811
|
|
|
966
812
|
|
|
@@ -1014,7 +860,7 @@
|
|
|
1014
860
|
|
|
1015
861
|
|
|
1016
862
|
|
|
1017
|
-
<h4 class="name" id="open"><span class="type-signature"
|
|
863
|
+
<h4 class="name" id="open"><span class="type-signature">(async) </span>open<span class="signature">()</span><span class="type-signature"> → {Promise}</span></h4>
|
|
1018
864
|
|
|
1019
865
|
|
|
1020
866
|
|
|
@@ -1066,7 +912,7 @@
|
|
|
1066
912
|
|
|
1067
913
|
<dt class="tag-source">Source:</dt>
|
|
1068
914
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1069
|
-
<a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#
|
|
915
|
+
<a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line103">line 103</a>
|
|
1070
916
|
</li></ul></dd>
|
|
1071
917
|
|
|
1072
918
|
|
|
@@ -1168,7 +1014,7 @@
|
|
|
1168
1014
|
|
|
1169
1015
|
<dt class="tag-source">Source:</dt>
|
|
1170
1016
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1171
|
-
<a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#
|
|
1017
|
+
<a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line188">line 188</a>
|
|
1172
1018
|
</li></ul></dd>
|
|
1173
1019
|
|
|
1174
1020
|
|
|
@@ -1252,7 +1098,7 @@
|
|
|
1252
1098
|
|
|
1253
1099
|
<dt class="tag-source">Source:</dt>
|
|
1254
1100
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1255
|
-
<a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#
|
|
1101
|
+
<a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line155">line 155</a>
|
|
1256
1102
|
</li></ul></dd>
|
|
1257
1103
|
|
|
1258
1104
|
|
|
@@ -1298,13 +1144,13 @@
|
|
|
1298
1144
|
</div>
|
|
1299
1145
|
|
|
1300
1146
|
<nav>
|
|
1301
|
-
<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="CardinalityValue.html">CardinalityValue</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="module.exports.html">exports</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#DataType">DataType</a></li><li><a href="global.html#statics">statics</a></li></ul>
|
|
1147
|
+
<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="CardinalityValue.html">CardinalityValue</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="module.exports.html">exports</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#DataType">DataType</a></li><li><a href="global.html#statics">statics</a></li><li><a href="global.html#toArrayBuffer">toArrayBuffer</a></li></ul>
|
|
1302
1148
|
</nav>
|
|
1303
1149
|
|
|
1304
1150
|
<br class="clear">
|
|
1305
1151
|
|
|
1306
1152
|
<footer>
|
|
1307
|
-
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on
|
|
1153
|
+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Mon Apr 15 2024 11:06:40 GMT-0700 (Pacific Daylight Time)
|
|
1308
1154
|
</footer>
|
|
1309
1155
|
|
|
1310
1156
|
<script> prettyPrint(); </script>
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<title>JSDoc: Source: DataType.js</title>
|
|
6
|
+
|
|
7
|
+
<script src="scripts/prettify/prettify.js"> </script>
|
|
8
|
+
<script src="scripts/prettify/lang-css.js"> </script>
|
|
9
|
+
<!--[if lt IE 9]>
|
|
10
|
+
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
|
11
|
+
<![endif]-->
|
|
12
|
+
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
|
|
13
|
+
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
|
|
14
|
+
</head>
|
|
15
|
+
|
|
16
|
+
<body>
|
|
17
|
+
|
|
18
|
+
<div id="main">
|
|
19
|
+
|
|
20
|
+
<h1 class="page-title">Source: DataType.js</h1>
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
<section>
|
|
28
|
+
<article>
|
|
29
|
+
<pre class="prettyprint source linenums"><code>/*
|
|
30
|
+
* Licensed to the Apache Software Foundation (ASF) under one
|
|
31
|
+
* or more contributor license agreements. See the NOTICE file
|
|
32
|
+
* distributed with this work for additional information
|
|
33
|
+
* regarding copyright ownership. The ASF licenses this file
|
|
34
|
+
* to you under the Apache License, Version 2.0 (the
|
|
35
|
+
* "License"); you may not use this file except in compliance
|
|
36
|
+
* with the License. You may obtain a copy of the License at
|
|
37
|
+
*
|
|
38
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
39
|
+
*
|
|
40
|
+
* Unless required by applicable law or agreed to in writing,
|
|
41
|
+
* software distributed under the License is distributed on an
|
|
42
|
+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
43
|
+
* KIND, either express or implied. See the License for the
|
|
44
|
+
* specific language governing permissions and limitations
|
|
45
|
+
* under the License.
|
|
46
|
+
*/
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* @author Igor Ostapenko
|
|
50
|
+
*/
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* Represents a GraphBinary data type.
|
|
54
|
+
*
|
|
55
|
+
* See org.apache.tinkerpop.gremlin.structure.io.binary.DataType Java class.
|
|
56
|
+
*/
|
|
57
|
+
const DataType = {
|
|
58
|
+
INT: 0x01,
|
|
59
|
+
LONG: 0x02,
|
|
60
|
+
STRING: 0x03,
|
|
61
|
+
DATE: 0x04,
|
|
62
|
+
TIMESTAMP: 0x05,
|
|
63
|
+
CLASS: 0x06,
|
|
64
|
+
DOUBLE: 0x07,
|
|
65
|
+
FLOAT: 0x08,
|
|
66
|
+
LIST: 0x09,
|
|
67
|
+
MAP: 0x0a,
|
|
68
|
+
SET: 0x0b,
|
|
69
|
+
UUID: 0x0c,
|
|
70
|
+
EDGE: 0x0d,
|
|
71
|
+
PATH: 0x0e,
|
|
72
|
+
PROPERTY: 0x0f,
|
|
73
|
+
GRAPH: 0x10,
|
|
74
|
+
VERTEX: 0x11,
|
|
75
|
+
VERTEXPROPERTY: 0x12,
|
|
76
|
+
BARRIER: 0x13,
|
|
77
|
+
BINDING: 0x14,
|
|
78
|
+
BYTECODE: 0x15,
|
|
79
|
+
CARDINALITY: 0x16,
|
|
80
|
+
COLUMN: 0x17,
|
|
81
|
+
DIRECTION: 0x18,
|
|
82
|
+
OPERATOR: 0x19,
|
|
83
|
+
ORDER: 0x1a,
|
|
84
|
+
PICK: 0x1b,
|
|
85
|
+
POP: 0x1c,
|
|
86
|
+
LAMBDA: 0x1d,
|
|
87
|
+
P: 0x1e,
|
|
88
|
+
SCOPE: 0x1f,
|
|
89
|
+
T: 0x20,
|
|
90
|
+
TRAVERSER: 0x21,
|
|
91
|
+
BIGDECIMAL: 0x22,
|
|
92
|
+
BIGINTEGER: 0x23,
|
|
93
|
+
BYTE: 0x24,
|
|
94
|
+
BYTEBUFFER: 0x25,
|
|
95
|
+
SHORT: 0x26,
|
|
96
|
+
BOOLEAN: 0x27,
|
|
97
|
+
TEXTP: 0x28,
|
|
98
|
+
TRAVERSALSTRATEGY: 0x29,
|
|
99
|
+
BULKSET: 0x2a,
|
|
100
|
+
TREE: 0x2b,
|
|
101
|
+
METRICS: 0x2c,
|
|
102
|
+
TRAVERSALMETRICS: 0x2d,
|
|
103
|
+
MERGE: 0x2e,
|
|
104
|
+
DT: 0x2f,
|
|
105
|
+
|
|
106
|
+
CHAR: 0x80,
|
|
107
|
+
DURATION: 0x81,
|
|
108
|
+
INETADDRESS: 0x82,
|
|
109
|
+
INSTANT: 0x83,
|
|
110
|
+
LOCALDATE: 0x84,
|
|
111
|
+
LOCALDATETIME: 0x85,
|
|
112
|
+
LOCALTIME: 0x86,
|
|
113
|
+
MONTHDAY: 0x87,
|
|
114
|
+
OFFSETDATETIME: 0x88,
|
|
115
|
+
OFFSETTIME: 0x89,
|
|
116
|
+
PERIOD: 0x8a,
|
|
117
|
+
YEAR: 0x8b,
|
|
118
|
+
YEARMONTH: 0x8c,
|
|
119
|
+
ZONEDATETIME: 0x8d,
|
|
120
|
+
ZONEOFFSET: 0x8e,
|
|
121
|
+
|
|
122
|
+
CUSTOM: 0,
|
|
123
|
+
UNSPECIFIED_NULL: 0xfe,
|
|
124
|
+
};
|
|
125
|
+
|
|
126
|
+
export default DataType;
|
|
127
|
+
</code></pre>
|
|
128
|
+
</article>
|
|
129
|
+
</section>
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
</div>
|
|
135
|
+
|
|
136
|
+
<nav>
|
|
137
|
+
<h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="module.exports.html">exports</a></li></ul><h3>Global</h3><ul><li><a href="global.html#DataType">DataType</a></li></ul>
|
|
138
|
+
</nav>
|
|
139
|
+
|
|
140
|
+
<br class="clear">
|
|
141
|
+
|
|
142
|
+
<footer>
|
|
143
|
+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Mon Apr 08 2024 22:33:46 GMT-0700 (Pacific Daylight Time)
|
|
144
|
+
</footer>
|
|
145
|
+
|
|
146
|
+
<script> prettyPrint(); </script>
|
|
147
|
+
<script src="scripts/linenumber.js"> </script>
|
|
148
|
+
</body>
|
|
149
|
+
</html>
|
|
@@ -548,79 +548,13 @@
|
|
|
548
548
|
|
|
549
549
|
<tr>
|
|
550
550
|
|
|
551
|
-
<td class="name"><code>
|
|
551
|
+
<td class="name"><code>agent</code></td>
|
|
552
552
|
|
|
553
553
|
|
|
554
554
|
<td class="type">
|
|
555
555
|
|
|
556
556
|
|
|
557
|
-
<span class="param-type">
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
</td>
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
<td class="attributes">
|
|
565
|
-
|
|
566
|
-
<optional><br>
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
</td>
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
<td class="description last">Setup ping interval. Defaults to: true.</td>
|
|
578
|
-
</tr>
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
<tr>
|
|
583
|
-
|
|
584
|
-
<td class="name"><code>pingInterval</code></td>
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
<td class="type">
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
<span class="param-type">Number</span>
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
</td>
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
<td class="attributes">
|
|
598
|
-
|
|
599
|
-
<optional><br>
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
</td>
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
<td class="description last">Ping request interval in ms if ping enabled. Defaults to: 60000.</td>
|
|
611
|
-
</tr>
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
<tr>
|
|
616
|
-
|
|
617
|
-
<td class="name"><code>pongTimeout</code></td>
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
<td class="type">
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
<span class="param-type">Number</span>
|
|
557
|
+
<span class="param-type">http.Agent</span>
|
|
624
558
|
|
|
625
559
|
|
|
626
560
|
|
|
@@ -640,7 +574,7 @@
|
|
|
640
574
|
|
|
641
575
|
|
|
642
576
|
|
|
643
|
-
<td class="description last">
|
|
577
|
+
<td class="description last">The http.Agent implementation to use.</td>
|
|
644
578
|
</tr>
|
|
645
579
|
|
|
646
580
|
|
|
@@ -778,7 +712,7 @@
|
|
|
778
712
|
|
|
779
713
|
<dt class="tag-source">Source:</dt>
|
|
780
714
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
781
|
-
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#
|
|
715
|
+
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line66">line 66</a>
|
|
782
716
|
</li></ul></dd>
|
|
783
717
|
|
|
784
718
|
|
|
@@ -836,7 +770,7 @@
|
|
|
836
770
|
|
|
837
771
|
<dt class="tag-source">Source:</dt>
|
|
838
772
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
839
|
-
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#
|
|
773
|
+
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line111">line 111</a>
|
|
840
774
|
</li></ul></dd>
|
|
841
775
|
|
|
842
776
|
|
|
@@ -912,7 +846,7 @@
|
|
|
912
846
|
|
|
913
847
|
<dt class="tag-source">Source:</dt>
|
|
914
848
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
915
|
-
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#
|
|
849
|
+
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line131">line 131</a>
|
|
916
850
|
</li></ul></dd>
|
|
917
851
|
|
|
918
852
|
|
|
@@ -996,7 +930,7 @@
|
|
|
996
930
|
|
|
997
931
|
<dt class="tag-source">Source:</dt>
|
|
998
932
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
999
|
-
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#
|
|
933
|
+
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line126">line 126</a>
|
|
1000
934
|
</li></ul></dd>
|
|
1001
935
|
|
|
1002
936
|
|
|
@@ -1080,7 +1014,7 @@
|
|
|
1080
1014
|
|
|
1081
1015
|
<dt class="tag-source">Source:</dt>
|
|
1082
1016
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1083
|
-
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#
|
|
1017
|
+
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line116">line 116</a>
|
|
1084
1018
|
</li></ul></dd>
|
|
1085
1019
|
|
|
1086
1020
|
|
|
@@ -1164,7 +1098,7 @@
|
|
|
1164
1098
|
|
|
1165
1099
|
<dt class="tag-source">Source:</dt>
|
|
1166
1100
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1167
|
-
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#
|
|
1101
|
+
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line99">line 99</a>
|
|
1168
1102
|
</li></ul></dd>
|
|
1169
1103
|
|
|
1170
1104
|
|
|
@@ -1248,7 +1182,7 @@
|
|
|
1248
1182
|
|
|
1249
1183
|
<dt class="tag-source">Source:</dt>
|
|
1250
1184
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1251
|
-
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#
|
|
1185
|
+
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line61">line 61</a>
|
|
1252
1186
|
</li></ul></dd>
|
|
1253
1187
|
|
|
1254
1188
|
|
|
@@ -1332,7 +1266,7 @@
|
|
|
1332
1266
|
|
|
1333
1267
|
<dt class="tag-source">Source:</dt>
|
|
1334
1268
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1335
|
-
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#
|
|
1269
|
+
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line136">line 136</a>
|
|
1336
1270
|
</li></ul></dd>
|
|
1337
1271
|
|
|
1338
1272
|
|
|
@@ -1416,7 +1350,7 @@
|
|
|
1416
1350
|
|
|
1417
1351
|
<dt class="tag-source">Source:</dt>
|
|
1418
1352
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1419
|
-
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#
|
|
1353
|
+
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line121">line 121</a>
|
|
1420
1354
|
</li></ul></dd>
|
|
1421
1355
|
|
|
1422
1356
|
|
|
@@ -1500,7 +1434,7 @@
|
|
|
1500
1434
|
|
|
1501
1435
|
<dt class="tag-source">Source:</dt>
|
|
1502
1436
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1503
|
-
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#
|
|
1437
|
+
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line71">line 71</a>
|
|
1504
1438
|
</li></ul></dd>
|
|
1505
1439
|
|
|
1506
1440
|
|
|
@@ -1546,13 +1480,13 @@
|
|
|
1546
1480
|
</div>
|
|
1547
1481
|
|
|
1548
1482
|
<nav>
|
|
1549
|
-
<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="CardinalityValue.html">CardinalityValue</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="module.exports.html">exports</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#DataType">DataType</a></li><li><a href="global.html#statics">statics</a></li></ul>
|
|
1483
|
+
<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="CardinalityValue.html">CardinalityValue</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="module.exports.html">exports</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#DataType">DataType</a></li><li><a href="global.html#statics">statics</a></li><li><a href="global.html#toArrayBuffer">toArrayBuffer</a></li></ul>
|
|
1550
1484
|
</nav>
|
|
1551
1485
|
|
|
1552
1486
|
<br class="clear">
|
|
1553
1487
|
|
|
1554
1488
|
<footer>
|
|
1555
|
-
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on
|
|
1489
|
+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Mon Apr 15 2024 11:06:40 GMT-0700 (Pacific Daylight Time)
|
|
1556
1490
|
</footer>
|
|
1557
1491
|
|
|
1558
1492
|
<script> prettyPrint(); </script>
|
|
@@ -237,13 +237,13 @@
|
|
|
237
237
|
</div>
|
|
238
238
|
|
|
239
239
|
<nav>
|
|
240
|
-
<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="CardinalityValue.html">CardinalityValue</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="module.exports.html">exports</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#DataType">DataType</a></li><li><a href="global.html#statics">statics</a></li></ul>
|
|
240
|
+
<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="CardinalityValue.html">CardinalityValue</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="module.exports.html">exports</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#DataType">DataType</a></li><li><a href="global.html#statics">statics</a></li><li><a href="global.html#toArrayBuffer">toArrayBuffer</a></li></ul>
|
|
241
241
|
</nav>
|
|
242
242
|
|
|
243
243
|
<br class="clear">
|
|
244
244
|
|
|
245
245
|
<footer>
|
|
246
|
-
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on
|
|
246
|
+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Mon Apr 15 2024 11:06:40 GMT-0700 (Pacific Daylight Time)
|
|
247
247
|
</footer>
|
|
248
248
|
|
|
249
249
|
<script> prettyPrint(); </script>
|