Query FalkorDB full-text indexes
Use FalkorDB's full-text search procedure to match text properties with wildcard and fuzzy matching.
Usage
Only when the ontology declares a full-text index for the label, call
db.idx.fulltext.queryNodes('Label', 'search_term') and yield node.
Example
CALL db.idx.fulltext.queryNodes('Movie', 'Jun*') YIELD node
RETURN node.title
Notes
- The search term supports wildcards (e.g.
'Jun*') and fuzzy matching. YIELD nodeexposes each matched node; project specific properties inRETURN.- Use this only when the ontology lists a full-text index for the label; otherwise use a normal
WHERE ... CONTAINS ...predicate. - Full-text search is read-only; it queries an existing index and does not modify the graph.