gremlin 3.7.1 → 3.7.3
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 +2 -2
- package/doc/Client.html +15 -81
- package/doc/Connection.html +15 -169
- package/doc/DataType.js.html +149 -0
- package/doc/DriverRemoteConnection.html +18 -84
- 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 +2 -2
- 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 +85 -118
- 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 +158 -3
- 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 +2 -2
- package/doc/process_transaction.js.html +12 -4
- package/doc/process_translator.js.html +5 -5
- package/doc/process_traversal-strategy.js.html +2 -2
- package/doc/process_traversal.js.html +2 -2
- package/doc/structure_graph.js.html +2 -2
- package/doc/structure_io_binary_internals_DataType.js.html +2 -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/docker-compose.yml +0 -2
- package/lib/driver/auth/mechanisms/sasl-mechanism-plain.js +1 -0
- package/lib/driver/client.js +1 -3
- package/lib/driver/connection.js +83 -116
- package/lib/driver/driver-remote-connection.js +1 -3
- package/lib/driver/result-set.js +0 -9
- package/lib/process/transaction.js +10 -2
- package/lib/process/translator.js +3 -3
- 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/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 +1 -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 +5 -1
- package/lib/structure/io/binary/internals/VertexSerializer.js +5 -1
- 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,79 +548,13 @@
|
|
|
548
548
|
|
|
549
549
|
<tr>
|
|
550
550
|
|
|
551
|
-
<td class="name"><code>
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
<td class="type">
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
<span class="param-type">Boolean</span>
|
|
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>
|
|
551
|
+
<td class="name"><code>agent</code></td>
|
|
618
552
|
|
|
619
553
|
|
|
620
554
|
<td class="type">
|
|
621
555
|
|
|
622
556
|
|
|
623
|
-
<span class="param-type">
|
|
557
|
+
<span class="param-type">http.Agent</span>
|
|
624
558
|
|
|
625
559
|
|
|
626
560
|
|
|
@@ -640,20 +574,20 @@
|
|
|
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
|
|
|
647
581
|
|
|
648
582
|
<tr>
|
|
649
583
|
|
|
650
|
-
<td class="name"><code>
|
|
584
|
+
<td class="name"><code>enableCompression</code></td>
|
|
651
585
|
|
|
652
586
|
|
|
653
587
|
<td class="type">
|
|
654
588
|
|
|
655
589
|
|
|
656
|
-
<span class="param-type">
|
|
590
|
+
<span class="param-type">Boolean</span>
|
|
657
591
|
|
|
658
592
|
|
|
659
593
|
|
|
@@ -673,7 +607,7 @@
|
|
|
673
607
|
|
|
674
608
|
|
|
675
609
|
|
|
676
|
-
<td class="description last">
|
|
610
|
+
<td class="description last">Enable per-message deflate compression. Defaults to: false.</td>
|
|
677
611
|
</tr>
|
|
678
612
|
|
|
679
613
|
|
|
@@ -721,7 +655,7 @@
|
|
|
721
655
|
|
|
722
656
|
<dt class="tag-source">Source:</dt>
|
|
723
657
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
724
|
-
<a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#
|
|
658
|
+
<a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line51">line 51</a>
|
|
725
659
|
</li></ul></dd>
|
|
726
660
|
|
|
727
661
|
|
|
@@ -825,7 +759,7 @@
|
|
|
825
759
|
|
|
826
760
|
<dt class="tag-source">Source:</dt>
|
|
827
761
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
828
|
-
<a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#
|
|
762
|
+
<a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line81">line 81</a>
|
|
829
763
|
</li></ul></dd>
|
|
830
764
|
|
|
831
765
|
|
|
@@ -847,94 +781,6 @@
|
|
|
847
781
|
|
|
848
782
|
<h3 class="subsection-title">Methods</h3>
|
|
849
783
|
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
<h4 class="name" id="_cleanupWebsocket"><span class="type-signature"></span>_cleanupWebsocket<span class="signature">()</span><span class="type-signature"></span></h4>
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
<div class="description">
|
|
864
|
-
clean websocket context
|
|
865
|
-
</div>
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
<dl class="details">
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
<dt class="tag-source">Source:</dt>
|
|
907
|
-
<dd class="tag-source"><ul class="dummy"><li>
|
|
908
|
-
<a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line388">line 388</a>
|
|
909
|
-
</li></ul></dd>
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
</dl>
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
784
|
|
|
939
785
|
|
|
940
786
|
|
|
@@ -993,7 +839,7 @@
|
|
|
993
839
|
|
|
994
840
|
<dt class="tag-source">Source:</dt>
|
|
995
841
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
996
|
-
<a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#
|
|
842
|
+
<a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line395">line 395</a>
|
|
997
843
|
</li></ul></dd>
|
|
998
844
|
|
|
999
845
|
|
|
@@ -1047,7 +893,7 @@
|
|
|
1047
893
|
|
|
1048
894
|
|
|
1049
895
|
|
|
1050
|
-
<h4 class="name" id="open"><span class="type-signature"
|
|
896
|
+
<h4 class="name" id="open"><span class="type-signature">(async) </span>open<span class="signature">()</span><span class="type-signature"> → {Promise}</span></h4>
|
|
1051
897
|
|
|
1052
898
|
|
|
1053
899
|
|
|
@@ -1099,7 +945,7 @@
|
|
|
1099
945
|
|
|
1100
946
|
<dt class="tag-source">Source:</dt>
|
|
1101
947
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1102
|
-
<a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#
|
|
948
|
+
<a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line104">line 104</a>
|
|
1103
949
|
</li></ul></dd>
|
|
1104
950
|
|
|
1105
951
|
|
|
@@ -1201,7 +1047,7 @@
|
|
|
1201
1047
|
|
|
1202
1048
|
<dt class="tag-source">Source:</dt>
|
|
1203
1049
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1204
|
-
<a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#
|
|
1050
|
+
<a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line190">line 190</a>
|
|
1205
1051
|
</li></ul></dd>
|
|
1206
1052
|
|
|
1207
1053
|
|
|
@@ -1285,7 +1131,7 @@
|
|
|
1285
1131
|
|
|
1286
1132
|
<dt class="tag-source">Source:</dt>
|
|
1287
1133
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1288
|
-
<a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#
|
|
1134
|
+
<a href="driver_connection.js.html">driver/connection.js</a>, <a href="driver_connection.js.html#line157">line 157</a>
|
|
1289
1135
|
</li></ul></dd>
|
|
1290
1136
|
|
|
1291
1137
|
|
|
@@ -1331,13 +1177,13 @@
|
|
|
1331
1177
|
</div>
|
|
1332
1178
|
|
|
1333
1179
|
<nav>
|
|
1334
|
-
<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>
|
|
1180
|
+
<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>
|
|
1335
1181
|
</nav>
|
|
1336
1182
|
|
|
1337
1183
|
<br class="clear">
|
|
1338
1184
|
|
|
1339
1185
|
<footer>
|
|
1340
|
-
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on
|
|
1186
|
+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Tue Oct 29 2024 10:43:41 GMT-0700 (Pacific Daylight Time)
|
|
1341
1187
|
</footer>
|
|
1342
1188
|
|
|
1343
1189
|
<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 Thu Oct 17 2024 15:29:12 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>
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
<td class="type">
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
<span class="param-type">Boolean</span>
|
|
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>
|
|
551
|
+
<td class="name"><code>agent</code></td>
|
|
618
552
|
|
|
619
553
|
|
|
620
554
|
<td class="type">
|
|
621
555
|
|
|
622
556
|
|
|
623
|
-
<span class="param-type">
|
|
557
|
+
<span class="param-type">http.Agent</span>
|
|
624
558
|
|
|
625
559
|
|
|
626
560
|
|
|
@@ -640,20 +574,20 @@
|
|
|
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
|
|
|
647
581
|
|
|
648
582
|
<tr>
|
|
649
583
|
|
|
650
|
-
<td class="name"><code>
|
|
584
|
+
<td class="name"><code>enableCompression</code></td>
|
|
651
585
|
|
|
652
586
|
|
|
653
587
|
<td class="type">
|
|
654
588
|
|
|
655
589
|
|
|
656
|
-
<span class="param-type">
|
|
590
|
+
<span class="param-type">Boolean</span>
|
|
657
591
|
|
|
658
592
|
|
|
659
593
|
|
|
@@ -673,7 +607,7 @@
|
|
|
673
607
|
|
|
674
608
|
|
|
675
609
|
|
|
676
|
-
<td class="description last">
|
|
610
|
+
<td class="description last">Enable per-message deflate compression. Defaults to: false.</td>
|
|
677
611
|
</tr>
|
|
678
612
|
|
|
679
613
|
|
|
@@ -811,7 +745,7 @@
|
|
|
811
745
|
|
|
812
746
|
<dt class="tag-source">Source:</dt>
|
|
813
747
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
814
|
-
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#
|
|
748
|
+
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line67">line 67</a>
|
|
815
749
|
</li></ul></dd>
|
|
816
750
|
|
|
817
751
|
|
|
@@ -869,7 +803,7 @@
|
|
|
869
803
|
|
|
870
804
|
<dt class="tag-source">Source:</dt>
|
|
871
805
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
872
|
-
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#
|
|
806
|
+
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line112">line 112</a>
|
|
873
807
|
</li></ul></dd>
|
|
874
808
|
|
|
875
809
|
|
|
@@ -945,7 +879,7 @@
|
|
|
945
879
|
|
|
946
880
|
<dt class="tag-source">Source:</dt>
|
|
947
881
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
948
|
-
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#
|
|
882
|
+
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line132">line 132</a>
|
|
949
883
|
</li></ul></dd>
|
|
950
884
|
|
|
951
885
|
|
|
@@ -1029,7 +963,7 @@
|
|
|
1029
963
|
|
|
1030
964
|
<dt class="tag-source">Source:</dt>
|
|
1031
965
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1032
|
-
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#
|
|
966
|
+
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line127">line 127</a>
|
|
1033
967
|
</li></ul></dd>
|
|
1034
968
|
|
|
1035
969
|
|
|
@@ -1113,7 +1047,7 @@
|
|
|
1113
1047
|
|
|
1114
1048
|
<dt class="tag-source">Source:</dt>
|
|
1115
1049
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1116
|
-
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#
|
|
1050
|
+
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line117">line 117</a>
|
|
1117
1051
|
</li></ul></dd>
|
|
1118
1052
|
|
|
1119
1053
|
|
|
@@ -1197,7 +1131,7 @@
|
|
|
1197
1131
|
|
|
1198
1132
|
<dt class="tag-source">Source:</dt>
|
|
1199
1133
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1200
|
-
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#
|
|
1134
|
+
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line100">line 100</a>
|
|
1201
1135
|
</li></ul></dd>
|
|
1202
1136
|
|
|
1203
1137
|
|
|
@@ -1281,7 +1215,7 @@
|
|
|
1281
1215
|
|
|
1282
1216
|
<dt class="tag-source">Source:</dt>
|
|
1283
1217
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1284
|
-
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#
|
|
1218
|
+
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line62">line 62</a>
|
|
1285
1219
|
</li></ul></dd>
|
|
1286
1220
|
|
|
1287
1221
|
|
|
@@ -1365,7 +1299,7 @@
|
|
|
1365
1299
|
|
|
1366
1300
|
<dt class="tag-source">Source:</dt>
|
|
1367
1301
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1368
|
-
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#
|
|
1302
|
+
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line137">line 137</a>
|
|
1369
1303
|
</li></ul></dd>
|
|
1370
1304
|
|
|
1371
1305
|
|
|
@@ -1449,7 +1383,7 @@
|
|
|
1449
1383
|
|
|
1450
1384
|
<dt class="tag-source">Source:</dt>
|
|
1451
1385
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1452
|
-
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#
|
|
1386
|
+
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line122">line 122</a>
|
|
1453
1387
|
</li></ul></dd>
|
|
1454
1388
|
|
|
1455
1389
|
|
|
@@ -1533,7 +1467,7 @@
|
|
|
1533
1467
|
|
|
1534
1468
|
<dt class="tag-source">Source:</dt>
|
|
1535
1469
|
<dd class="tag-source"><ul class="dummy"><li>
|
|
1536
|
-
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#
|
|
1470
|
+
<a href="driver_driver-remote-connection.js.html">driver/driver-remote-connection.js</a>, <a href="driver_driver-remote-connection.js.html#line72">line 72</a>
|
|
1537
1471
|
</li></ul></dd>
|
|
1538
1472
|
|
|
1539
1473
|
|
|
@@ -1579,13 +1513,13 @@
|
|
|
1579
1513
|
</div>
|
|
1580
1514
|
|
|
1581
1515
|
<nav>
|
|
1582
|
-
<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>
|
|
1516
|
+
<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>
|
|
1583
1517
|
</nav>
|
|
1584
1518
|
|
|
1585
1519
|
<br class="clear">
|
|
1586
1520
|
|
|
1587
1521
|
<footer>
|
|
1588
|
-
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on
|
|
1522
|
+
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.10</a> on Tue Oct 29 2024 10:43:41 GMT-0700 (Pacific Daylight Time)
|
|
1589
1523
|
</footer>
|
|
1590
1524
|
|
|
1591
1525
|
<script> prettyPrint(); </script>
|