We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe6e2f3 commit 26cc360Copy full SHA for 26cc360
graphdatascience/graph/graph_remote_project_runner.py
@@ -27,13 +27,17 @@ def __call__(
27
if undirected_relationship_types is None:
28
undirected_relationship_types = []
29
30
+ arrow_configuration = {}
31
+ if batch_size is not None:
32
+ arrow_configuration["batchSize"] = batch_size
33
+
34
params = CallParameters(
35
graph_name=graph_name,
36
query=query,
37
concurrency=concurrency,
38
undirected_relationship_types=undirected_relationship_types,
39
inverse_indexed_relationship_types=inverse_indexed_relationship_types,
- arrow_configuration={"batchSize": batch_size},
40
+ arrow_configuration=arrow_configuration,
41
)
42
43
result = self._query_runner.call_procedure(
0 commit comments