apply-falkordb-cypher-limitations-correctly

star 21

Account for FalkorDB Cypher limitations like non-indexed not-equal filters when designing queries

FalkorDB By FalkorDB schedule Updated 2/4/2026

name: Apply FalkorDB Cypher limitations correctly description: Account for FalkorDB Cypher limitations like non-indexed not-equal filters when designing queries

Apply FalkorDB Cypher limitations correctly

Account for known limitations in FalkorDB's Cypher implementation when designing queries.

Usage

Be aware of FalkorDB-specific limitations and design queries accordingly to avoid performance issues.

Example

# Not-equal filters are not index-accelerated
redis-cli GRAPH.QUERY social "MATCH (p:Person) WHERE p.age <> 30 RETURN p"

Notes

  • Not-equal (<> or !=) filters cannot use indexes and will perform full scans
  • Certain Cypher features may have different behavior in FalkorDB compared to other graph databases
  • Always test queries with representative data to understand performance characteristics
  • Review FalkorDB documentation for the complete list of limitations
  • Plan query design around these limitations for optimal performance
Install via CLI
npx skills add https://github.com/FalkorDB/skills --skill apply-falkordb-cypher-limitations-correctly
Repository Details
star Stars 21
call_split Forks 2
navigation Branch main
article Path SKILL.md
More from Creator