fix: missing group filter on node ft search (#752)
* Enhance full-text search to filter by group IDs in node queries * Bump version to 0.17.8 in pyproject.toml
This commit is contained in:
parent
1309a12119
commit
7daa46067e
2 changed files with 2 additions and 2 deletions
|
|
@ -353,7 +353,7 @@ async def node_fulltext_search(
|
|||
YIELD node AS n, score
|
||||
WITH n, score
|
||||
LIMIT $limit
|
||||
WHERE n:Entity
|
||||
WHERE n:Entity AND n.group_id IN $group_ids
|
||||
"""
|
||||
+ filter_query
|
||||
+ ENTITY_NODE_RETURN
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
[project]
|
||||
name = "graphiti-core"
|
||||
description = "A temporal graph building library"
|
||||
version = "0.17.7"
|
||||
version = "0.17.8"
|
||||
authors = [
|
||||
{ "name" = "Paul Paliychuk", "email" = "paul@getzep.com" },
|
||||
{ "name" = "Preston Rasmussen", "email" = "preston@getzep.com" },
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue