Skip to content

Commit 81aba1a

Browse files
committed
fix: docstring
1 parent 8acc0a8 commit 81aba1a

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

nx_arangodb/classes/dict/adj.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1458,6 +1458,12 @@ class AdjListOuterDict(UserDict[str, AdjListInnerDict]):
14581458
symmetrize_edges_if_directed : bool
14591459
Whether to add the reverse edge if the graph is directed.
14601460
1461+
read_parallelism : int
1462+
The number of parallel threads to use for reading data in _fetch_all.
1463+
1464+
read_batch_size : int
1465+
The number of documents to read in each batch in _fetch_all.
1466+
14611467
Example
14621468
-------
14631469
>>> g = nxadb.Graph(name="MyGraph")

nx_arangodb/classes/dict/node.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,12 @@ class NodeDict(UserDict[str, NodeAttrDict]):
260260
default_node_type : str
261261
The default node type for the graph.
262262
263+
read_parallelism : int
264+
The number of parallel threads to use for reading data in _fetch_all.
265+
266+
read_batch_size : int
267+
The number of documents to read in each batch in _fetch_all.
268+
263269
Example
264270
-------
265271
>>> G = nxadb.Graph("MyGraph")

0 commit comments

Comments
 (0)