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.
2 parents 579eb7e + 06768c8 commit c089623Copy full SHA for c089623
changelog/0.0.9.md
@@ -11,6 +11,7 @@
11
## New features
12
13
* Convenience support for AuraDS connections by configuring the Python driver with recommended non-default configuration.
14
+* Added support for GDS 1.x `graph.create` syntax.
15
16
17
## Bug fixes
graphdatascience/graph/graph_proc_runner.py
@@ -21,6 +21,11 @@ def project(self) -> GraphProjectRunner:
21
self._namespace += ".project"
22
return GraphProjectRunner(self._query_runner, self._namespace)
23
24
+ @property
25
+ def create(self) -> GraphProjectRunner:
26
+ self._namespace += ".create"
27
+ return GraphProjectRunner(self._query_runner, self._namespace)
28
+
29
@property
30
def export(self) -> GraphExportRunner:
31
self._namespace += ".export"
0 commit comments