Create range indexes for exact/range lookups

Create FalkorDB range indexes on node properties for exact and range lookups.

22|2|Updated Jan 27, 2026
One-click install
npx skills add https://github.com/FalkorDB/skills --skill create-range-indexes-for-exact-range-lookups
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Create range indexes for exact/range lookups
Source: https://github.com/FalkorDB/skills/tree/main/cypher-skills/create-range-indexes
Command: npx skills add https://github.com/FalkorDB/skills --skill create-range-indexes-for-exact-range-lookups

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill helps developers improve FalkorDB query performance by creating indexes for node properties used in equality and range lookups instead of relying on slower scans.

Core Features & Use Cases

  • Range Index Creation: Create FalkorDB indexes for node labels and properties to accelerate exact matches and range-based filters.
  • Query Performance Optimization: Support faster WHERE clause execution by adding appropriate property indexes for graph workloads.
  • Use Case: Improve a social graph application by indexing Person properties such as age so user searches and range queries execute more efficiently.

Quick Start

Ask the AI to create a FalkorDB range index for the Person node label on the age property.

Frequently Asked Questions about Create range indexes for exact/range lookups

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a range index in FalkorDB to speed up Cypher queries?

To create a range index in FalkorDB, you create indexes for specific node labels and properties to accelerate exact matches and range-based filters in Cypher WHERE clauses. This prevents slower full graph scans.

Why is my FalkorDB WHERE clause running slow on property filters?

Your FalkorDB WHERE clause is slow because it relies on full scans instead of using indexes. Creating range indexes for node properties accelerates exact and range query lookups, improving predicate execution.

When do I need range indexes for graph database property lookups?

You need range indexes for graph database property lookups when executing queries that filter nodes using equality or range conditions. Indexing properties like age accelerates user searches and range queries in graph workloads.

Can I use FalkorDB indexes to optimize exact match and range queries?

Yes, you can use FalkorDB indexes to optimize both exact match and range queries. Creating indexes for node labels and properties directly accelerates WHERE clause execution for equality and range-based filters.

What is the best way to index a Person node label for age range queries in FalkorDB?

The best way to index a Person node label for age range queries is to create a FalkorDB range index on the age property. This optimizes social graph applications by making user searches and range filters execute efficiently.