Skip to main content

GRAPH.CONFIG-GET

Retrieves the current value of a FalkorDB configuration parameter.

FalkorDB configuration parameters are detailed here.

* can be used to retrieve the value of all FalkorDB configuration parameters.

from falkordb import FalkorDB
client = FalkorDB()
config = client.get_config('*')
print(config)
timeout = client.get_config('TIMEOUT')
print(timeout)