Skip to content

Commit c089623

Browse files
authored
Merge pull request #68 from Mats-SX/support-create
Support GDS 1.x graph.create syntax
2 parents 579eb7e + 06768c8 commit c089623

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

changelog/0.0.9.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
## New features
1212

1313
* 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.
1415

1516

1617
## Bug fixes

graphdatascience/graph/graph_proc_runner.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ def project(self) -> GraphProjectRunner:
2121
self._namespace += ".project"
2222
return GraphProjectRunner(self._query_runner, self._namespace)
2323

24+
@property
25+
def create(self) -> GraphProjectRunner:
26+
self._namespace += ".create"
27+
return GraphProjectRunner(self._query_runner, self._namespace)
28+
2429
@property
2530
def export(self) -> GraphExportRunner:
2631
self._namespace += ".export"

0 commit comments

Comments
 (0)