Documentation Index
Fetch the complete documentation index at: https://docs.helix-db.com/llms.txt
Use this file to discover all available pages before exploring further.
For the complete documentation index optimized for AI agents, see llms.txt.Text indexes provide BM25 full-text search on node and edge properties. They are stored durably like other indexes rather than rebuilt transiently per query. Indexed values can be
String or
StringArray, with configurable analyzer presets and optional term positions.
The third argument to the index-creation builders is an optional tenant property name; pass
None::<&str> for a global index. Tenant-partitioned text indexes currently require the
partition property name to be tenant_id — see Multi-Tenancy for the
partitioned variant.
The DSL fragments below are bare traversals. To execute them, wrap each one in a read_batch()
or write_batch() route as shown in Querying.
Text Index — Nodes
Declare the index. The second argument is the text property:k:
Text Index — Edges
Edges can be text-indexed when the relationship carries searchable content — for example a reviewer’s comment on a paper:Parameterized Searches
For routes that receive the query string and limit from request parameters, use the_with
variants. They accept PropertyInput::param(...) for the query text and Expr::param(...) for
k:
text_search_edges_with.