Skip to content

Commit b2f7f69

Browse files
committed
Move back util data runner
1 parent 18f5a61 commit b2f7f69

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):
@@ -114,6 +115,10 @@ def _path(package: str, resource: str) -> pathlib.Path:
114115
def graph(self) -> GraphProcRunner:
115116
return GraphProcRunner(self._query_runner, f"{self._namespace}.graph", self._server_version)
116117

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

0 commit comments

Comments
 (0)