Delete or flush UDF libraries
Remove specific UDF libraries or clear all UDFs from FalkorDB.
Usage
Use GRAPH.UDF DELETE to remove a specific library by name, or GRAPH.UDF FLUSH to remove all libraries.
Example
redis-cli GRAPH.UDF DELETE StringUtils
redis-cli GRAPH.UDF FLUSH
Notes
GRAPH.UDF DELETEremoves a single library by nameGRAPH.UDF FLUSHremoves all UDF libraries at once- Be careful with
FLUSHas it removes all UDFs without confirmation - After deletion, queries using those UDFs will fail
- Useful for cleanup during development or when replacing UDF implementations