sqlkit
    Preparing search index...

    Interface UpdatePayload<T>

    interface UpdatePayload<T> {
        data: Partial<T>;
        returning?: (keyof T)[];
        where: WhereCondition<T>;
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    data: Partial<T>
    returning?: (keyof T)[]