Type Alias ClientUpsertArgs<ExtArgs>

ClientUpsertArgs<ExtArgs>: {
    create: XOR<ClientCreateInput, ClientUncheckedCreateInput>;
    include?: ClientInclude<ExtArgs> | null;
    omit?: ClientOmit<ExtArgs> | null;
    select?: ClientSelect<ExtArgs> | null;
    update: XOR<ClientUpdateInput, ClientUncheckedUpdateInput>;
    where: ClientWhereUniqueInput;
}

Client upsert

Type Parameters

Type declaration