@earth-app/collegedb
    Preparing search index...

    Interface KVListResult

    Result payload returned by key-value store list operations.

    interface KVListResult {
        cursor?: string;
        keys: KVListKey[];
        list_complete?: boolean;
    }
    Index

    Properties

    cursor?: string

    Cursor for paginated list operations (backend-specific)

    keys: KVListKey[]

    The keys that matched the provided list filter

    list_complete?: boolean

    Whether the list is complete (backend-specific)