Graph Management¶
graph_delete¶
Delete a graph and all its data.
graph_list¶
List all graph keys.
graph_explain¶
Return the execution plan without executing the query.
plan = r.graph_explain("social", """
MATCH (a:Person)-[:KNOWS]->(b:Person)
RETURN a.name, b.name
""")
graph_profile¶
Execute a query and return profiling data (timing per operation).
profile = r.graph_profile("social", """
MATCH (a:Person)-[:KNOWS]->(b:Person)
RETURN a.name, b.name
""")
graph_slowlog¶
Return the slow query log.
graph_config¶
Get or set FalkorDB configuration.