# Create and query full-text indexes

> Use RediSearch-backed full-text indexes for text search with wildcard and fuzzy matching

- Skill: `falkordb/create-and-query-full-text-indexes` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add falkordb/create-and-query-full-text-indexes`
- Raw SKILL.md: https://api.skillmd.com/api/skills/falkordb/create-and-query-full-text-indexes/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: falkordb (https://skillmd.com/u/falkordb)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/falkordb/create-and-query-full-text-indexes

---


# Create and query full-text indexes

Use RediSearch-backed full-text indexes for text search capabilities.

## Usage

Create full-text indexes using the `db.idx.fulltext.createNodeIndex` procedure, then query them using `db.idx.fulltext.queryNodes`.

## Example

```bash
redis-cli GRAPH.QUERY social "CALL db.idx.fulltext.createNodeIndex('Movie', 'title')"
redis-cli GRAPH.QUERY social "CALL db.idx.fulltext.queryNodes('Movie', 'Jun*') YIELD node RETURN node.title"
```

## Notes

- Full-text indexes leverage RediSearch for advanced text search capabilities
- Supports wildcard searches and fuzzy matching
- Use `CALL` to invoke the index creation and query procedures
- `YIELD node` is used to capture results from the procedure
- Full-text indexes are ideal for searching text content with partial matches

