Meldbase TypeScript API
    Preparing search index...

    Interface Update

    interface Update {
        $inc?: Readonly<Record<string, number | bigint>>;
        $pull?: Readonly<Record<string, Value>>;
        $push?: Readonly<Record<string, Value>>;
        $set?: Readonly<Record<string, Value>>;
        $unset?: Readonly<Record<string, true>> | readonly string[];
    }
    Index
    $inc?: Readonly<Record<string, number | bigint>>
    $pull?: Readonly<Record<string, Value>>
    $push?: Readonly<Record<string, Value>>
    $set?: Readonly<Record<string, Value>>
    $unset?: Readonly<Record<string, true>> | readonly string[]