一键导入
query-falkordb-full-text-indexes
Search text properties with the db.idx.fulltext.queryNodes procedure when a full-text index exists
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Search text properties with the db.idx.fulltext.queryNodes procedure when a full-text index exists
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use algo.SPpaths/algo.SSpaths procedures and variable-length patterns to find paths in read queries
Write predicates that let FalkorDB use indexes and avoid full scans in read queries
Prefix read queries with CYPHER parameters for plan caching and safer value handling
Find nearest-neighbor nodes with the db.idx.vector.queryNodes procedure when a vector index exists
| name | Query FalkorDB full-text indexes |
| description | Search text properties with the db.idx.fulltext.queryNodes procedure when a full-text index exists |
Use FalkorDB's full-text search procedure to match text properties with wildcard and fuzzy matching.
Only when the ontology declares a full-text index for the label, call
db.idx.fulltext.queryNodes('Label', 'search_term') and yield node.
CALL db.idx.fulltext.queryNodes('Movie', 'Jun*') YIELD node
RETURN node.title
'Jun*') and fuzzy matching.YIELD node exposes each matched node; project specific properties in RETURN.WHERE ... CONTAINS ... predicate.