apoc.config.map
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.map | Lists the Neo4j configuration as map
Usage Examples
CALL apoc.config.map()
YIELD value
WITH [key in keys(value) WHERE not(key STARTS WITH "apoc")] AS keys, value
RETURN apoc.map.clean(value, keys, []) AS value;
value |
---|
{ |
Please note that this procedure only gets the following configurations, to avoid retrieving sensitive data:
|