Skip to main content
Returns information and statistics about currently running queries, waiting queries, and the object pool.

Syntax

Where each Section is one of:
  • RunningQueries — lists currently executing queries
  • WaitingQueries — lists queries waiting to be executed
  • ObjectPool — reports object pool statistics
Multiple sections can be specified simultaneously. If no section is provided, all sections are returned.

Examples

Frequently Asked Questions

When called without arguments, GRAPH.INFO returns all sections: RunningQueries, WaitingQueries, and ObjectPool statistics.
RunningQueries shows queries currently being executed by worker threads. WaitingQueries shows queries that have been received but are queued waiting for a thread to become available.
The ObjectPool section reports statistics about FalkorDB’s internal object pool, including the number of unique objects and average references per object. This is useful for monitoring memory efficiency.
Yes. GRAPH.INFO is designed for real-time monitoring. You can poll it periodically to detect long-running queries, queue buildup, and resource utilization issues.