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

    Type Alias UserRoleUpsertArgs<ExtArgs>

    UserRole upsert

    type UserRoleUpsertArgs<
        ExtArgs extends
            runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
    > = {
        create: Prisma.XOR<UserRoleCreateInput, UserRoleUncheckedCreateInput>;
        include?: UserRoleInclude<ExtArgs> | null;
        omit?: UserRoleOmit<ExtArgs> | null;
        select?: UserRoleSelect<ExtArgs> | null;
        update: Prisma.XOR<UserRoleUpdateInput, UserRoleUncheckedUpdateInput>;
        where: UserRoleWhereUniqueInput;
    }

    Type Parameters

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

    Properties

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

    include?: UserRoleInclude<ExtArgs> | null

    Choose, which related nodes to fetch as well

    omit?: UserRoleOmit<ExtArgs> | null

    Omit specific fields from the UserRole

    select?: UserRoleSelect<ExtArgs> | null

    Select specific fields to fetch from the UserRole

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

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