ワンクリックで
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.