@@ -343,7 +343,7 @@ def drop(
343343 def stream (self , G : Graph , relationship_types : list [str ] = ["*" ], ** config : Any ) -> TopologyDataFrame :
344344 self ._namespace += ".stream"
345345 params = CallParameters (graph_name = G .name (), relationship_types = relationship_types , config = config )
346- result = self ._query_runner .call_procedure (endpoint = self ._namespace , params = params )
346+ result = self ._query_runner .call_procedure (endpoint = self ._namespace , params = params , retryable = True )
347347
348348 return TopologyDataFrame (result )
349349
@@ -361,7 +361,9 @@ def stream(self, G: Graph, relationship_types: list[str] = ["*"], **config: Any)
361361 self ._namespace += ".stream"
362362 params = CallParameters (graph_name = G .name (), relationship_types = relationship_types , config = config )
363363
364- return TopologyDataFrame (self ._query_runner .call_procedure (endpoint = self ._namespace , params = params ))
364+ return TopologyDataFrame (
365+ self ._query_runner .call_procedure (endpoint = self ._namespace , params = params , retryable = True )
366+ )
365367
366368 @property
367369 @compatible_with ("toUndirected" , min_inclusive = ServerVersion (2 , 3 , 0 ))
@@ -382,7 +384,7 @@ def stream(
382384 self ._namespace += ".stream"
383385 params = CallParameters (graph_name = G .name (), graph_property = graph_property , config = config )
384386
385- return self ._query_runner .call_procedure (endpoint = self ._namespace , params = params )
387+ return self ._query_runner .call_procedure (endpoint = self ._namespace , params = params , retryable = True )
386388
387389 @compatible_with ("drop" , min_inclusive = ServerVersion (2 , 2 , 0 ))
388390 @graph_type_check
0 commit comments