Skip to content

Commit b5c870f

Browse files
fix(graph): search entities cypher query str format
1 parent 33a7fb0 commit b5c870f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "brainapi2"
3-
version = "1.5.1-dev"
3+
version = "1.5.3-dev"
44
description = "Version 1.x.x of the BrainAPI memory layer."
55
authors = [
66
{name = "Christian",email = "[email protected]"}

src/lib/neo4j/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -846,7 +846,7 @@ def search_entities(
846846
SKIP {skip}
847847
LIMIT {limit}
848848
"""
849-
cypher_count = """
849+
cypher_count = f"""
850850
MATCH (n)
851851
{"WHERE " + " AND ".join(filters) if filters else ""}
852852
RETURN count(n) AS total

0 commit comments

Comments
 (0)