apoc.config.list
This is the APOC Extended documentation. APOC Extended is not supported by Neo4j. For the officially supported APOC Core, go to the APOC Core page. |
Procedure Apoc Extended
apoc.config.list | Lists the Neo4j configuration as key,value table
Usage Examples
CALL apoc.config.list()
YIELD key, value
WHERE key CONTAINS "apoc"
RETURN key, value;
key | value |
---|---|
"apoc_ttl_enabled" |
"true" |
"apoc.export.file.enabled" |
"false" |
"apoc.ttl.enabled" |
"true" |
"apoc.ttl.schedule" |
"PT1M" |
"apoc.ttl.limit" |
"1000" |
"apoc.import.file.enabled" |
"false" |
"apoc.import.file.use_neo4j_config" |
"true" |
"apoc.import.file.allow_read_from_filesystem" |
"true" |
"apoc.trigger.enabled" |
"false" |
"apoc.uuid.enabled" |
"false" |
Please note that this procedure only gets the following configurations, to avoid retrieving sensitive data:
|