Is there a way to specify a range and list from KV?
Is it possible to retrieve only those of these that match the content of ["parent", 1~3] ?
const kv = await Deno.openKv();
kv.set(["parent", 1], "key1")
kv.set(["parent", 2], "key1")
kv.set(["parent", 3], "key1")
kv.set(["parent", 4], "key1")