apoc.static.list
Procedure APOC Full
apoc.static.list(prefix) - returns statically stored values from config (apoc.static.<prefix>.*) or server lifetime storage
Usage Examples
The example in this section assumes that we’ve first stored values in memory using apoc.static.set:
CALL apoc.static.set("twitter.user", "Michael");
CALL apoc.static.set("twitter.username", "mesirii");
The following returns all static values under the
twitter
prefix:CALL apoc.static.list("twitter");
key |
---|
value |
"user" |
"Michael" |
"username" |
"mesirii" |