File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff 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")
Original file line number Diff line number Diff 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")
You can’t perform that action at this time.
0 commit comments