@wxn0brp/vql-client
    Preparing search index...

    Type Alias VQL_Query_CRUD_Data<T>

    VQL_Query_CRUD_Data:
        | { find: VQL_OP_Find<T> }
        | { findOne: VQL_OP_FindOne<T> }
        | { f: VQL_OP_FindOne<T> }
        | { add: VQL_OP_Add<T> }
        | { update: VQL_OP_Update<T> }
        | { updateOne: VQL_OP_Update<T> }
        | { remove: VQL_OP_Remove<T> }
        | { removeOne: VQL_OP_Remove<T> }
        | { updateOneOrAdd: VQL_OP_UpdateOneOrAdd<T> }
        | { toggleOne: VQL_OP_ToggleOne<T> }
        | { removeCollection: VQL_OP_CollectionOperation }
        | { ensureCollection: VQL_OP_CollectionOperation }
        | { issetCollection: VQL_OP_CollectionOperation }
        | { getCollections: {} }

    Type Parameters

    • T = any