respect-udf-limitations

star 21

Design UDFs as pure functions that transform data without mutating the graph in FalkorDB

FalkorDB By FalkorDB schedule Updated 2/4/2026

name: Respect UDF limitations description: Design UDFs as pure functions that transform data without mutating the graph in FalkorDB

Respect UDF limitations

Understand and work within the constraints of FalkorDB's UDF system.

Usage

Design UDFs as pure functions that perform transformations without attempting to modify the graph.

Example

# Use UDFs for transformations only; do not attempt CREATE/SET/DELETE inside JS.

Notes

  • UDFs cannot mutate the graph - they are read-only
  • UDFs cannot execute CREATE, SET, DELETE, or MERGE operations
  • UDFs should be pure functions with no side effects
  • UDFs cannot make network calls or access external resources
  • Use UDFs for data transformation, computation, and formatting only
  • For graph mutations, use Cypher queries that call UDFs for computed values
Install via CLI
npx skills add https://github.com/FalkorDB/skills --skill respect-udf-limitations
Repository Details
star Stars 21
call_split Forks 2
navigation Branch main
article Path SKILL.md
More from Creator