원클릭으로
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 직업 분류 기준
| 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.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