@robert-brightline/auth-db - v0.0.21
    Preparing search index...

    Type Alias UserUpsertArgs<ExtArgs>

    User upsert

    type UserUpsertArgs<
        ExtArgs extends
            runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
    > = {
        create: Prisma.XOR<UserCreateInput, UserUncheckedCreateInput>;
        include?: UserInclude<ExtArgs> | null;
        omit?: UserOmit<ExtArgs> | null;
        select?: UserSelect<ExtArgs> | null;
        update: Prisma.XOR<UserUpdateInput, UserUncheckedUpdateInput>;
        where: UserWhereUniqueInput;
    }

    Type Parameters

    • ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs
    Index

    Properties

    In case the User found by the where argument doesn't exist, create a new User with this data.

    include?: UserInclude<ExtArgs> | null

    Choose, which related nodes to fetch as well

    omit?: UserOmit<ExtArgs> | null

    Omit specific fields from the User

    select?: UserSelect<ExtArgs> | null

    Select specific fields to fetch from the User

    In case the User was found with the provided where argument, update it with this data.

    The filter to search for the User to update in case it exists.