Skip to content

Commit 4db86cd

Browse files
committed
Move back util data runner
1 parent 2c86aad commit 4db86cd

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

graphdatascience/graph_data_science.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
from .query_runner.query_runner import QueryRunner
1818
from .server_version.server_version import ServerVersion
1919
from graphdatascience.graph.graph_proc_runner import GraphProcRunner
20+
from graphdatascience.utils.util_proc_runner import UtilProcRunner
2021

2122

2223
class GraphDataScience(DirectEndpoints, UncallableNamespace):
@@ -115,6 +116,10 @@ def _path(package: str, resource: str) -> pathlib.Path:
115116
def graph(self) -> GraphProcRunner:
116117
return GraphProcRunner(self._query_runner, f"{self._namespace}.graph", self._server_version)
117118

119+
@property
120+
def util(self) -> UtilProcRunner:
121+
return UtilProcRunner(self._query_runner, f"{self._namespace}.util", self._server_version)
122+
118123
@property
119124
def alpha(self) -> AlphaEndpoints:
120125
return AlphaEndpoints(self._query_runner, "gds.alpha", self._server_version)

0 commit comments

Comments
 (0)