Skip to content

Commit

Permalink
fix worng changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dvora-h committed Jan 11, 2022
1 parent c7dfcd9 commit 8f5a339
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions redis/commands/graph/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def labels(self):
return self.call_procedure("db.labels", read_only=True).result_set

def relationship_types(self):
return self.call_procedure("db.relationship_types", read_only=True).result_set
return self.call_procedure("db.relationshipTypes", read_only=True).result_set

def property_keys(self):
return self.call_procedure("db.property_keys", read_only=True).result_set
return self.call_procedure("db.propertyKeys", read_only=True).result_set

0 comments on commit 8f5a339

Please sign in to comment.