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.
1 parent 69e267f commit baaaf70Copy full SHA for baaaf70
redisgraph/client.py
@@ -153,3 +153,9 @@ def execution_plan(self, query):
153
Get the execution plan for given query.
154
"""
155
return self.redis_con.execute_command("GRAPH.EXPLAIN", self.name, query)
156
+
157
+ def delete(self):
158
+ """
159
+ Deletes graph.
160
161
+ return self.redis_con.execute_command("GRAPH.DELETE", self.name)
setup.py
@@ -1,7 +1,7 @@
1
from setuptools import setup, find_packages
2
setup(
3
name='redisgraph',
4
- version='1.4',
+ version='1.5',
5
6
description='RedisGraph Python Client',
7
url='https://github.com/swilly22/redisgraph-py',
0 commit comments