Skip to content

Commit 10a9ea3

Browse files
committed
disable graph versioning
1 parent db4649b commit 10a9ea3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

redisgraph/graph.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,8 @@ def query(self, q, params=None, timeout=None, read_only=False):
161161
# ask for compact result-set format
162162
# specify known graph version
163163
cmd = "GRAPH.RO_QUERY" if read_only else "GRAPH.QUERY"
164-
command = [cmd, self.name, query, "--compact", "version", self.version]
164+
# command = [cmd, self.name, query, "--compact", "version", self.version]
165+
command = [cmd, self.name, query, "--compact"]
165166

166167
# include timeout is specified
167168
if timeout:

0 commit comments

Comments
 (0)