Skip to main content
Module

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

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

Operation options for retrieving keys.

Properties

optional
from: string

Returns keys after from. Meaning, if you had the keys ["a", "b", "c"] in the namespace, calling kv.items({from: "a"}) would return the items for the keys ["b", "c"].

optional
limit: number

The number of keys to return in the list call.

Default and maximum is 100. Minimum is 1.