apoc.config.map
Procedure APOC Full
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:
|