apoc.static.set
Procedure APOC Full
apoc.static.set(name, value) - stores value under key for server lifetime storage, returns previously stored or configured value
Usage Examples
The following stores an in memory value that lasts for the lifetime of the server:
CALL apoc.static.set("twitter.user", "Michael");
value |
---|
null |
We can retrieve static values using apoc.static.get and apoc.static.getAll.