Returns keys after from. Meaning, if you had the keys ["a", "b", "c"] in the namespace, calling kv.list({from: "a"}) would return ["b", "c"].
from
["a", "b", "c"]
kv.list({from: "a"})
["b", "c"]
The number of keys to return in the list call.
Default and maximum is 1000. Minimum is 1.
1000
1
Generated using TypeDoc
Returns keys after
from
. Meaning, if you had the keys["a", "b", "c"]
in the namespace, callingkv.list({from: "a"})
would return["b", "c"]
.