Skip to main content
Module

x/tpy/mod.ts>Pylon.KV.OperationOptions.List

🔑 A strongly typed Pylon API client.
Latest
interface Pylon.KV.OperationOptions.List
import { type Pylon } from "https://deno.land/x/tpy@v1.0.0-RC/mod.ts";
const { List } = Pylon.KV.OperationOptions;

Operation options for retrieving an array of keys and values.

Properties

optional
from: string

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"].

optional
limit: number

The number of keys to return in the list call.

Default and maximum is 1000. Minimum is 1.