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

    Type Alias RolePermissionsUpsertArgs<ExtArgs>

    RolePermissions upsert

    type RolePermissionsUpsertArgs<
        ExtArgs extends
            runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
    > = {
        create: Prisma.XOR<
            RolePermissionsCreateInput,
            RolePermissionsUncheckedCreateInput,
        >;
        include?: RolePermissionsInclude<ExtArgs>
        | null;
        omit?: RolePermissionsOmit<ExtArgs> | null;
        select?: RolePermissionsSelect<ExtArgs> | null;
        update: Prisma.XOR<
            RolePermissionsUpdateInput,
            RolePermissionsUncheckedUpdateInput,
        >;
        where: RolePermissionsWhereUniqueInput;
    }

    Type Parameters

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

    Properties

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

    Choose, which related nodes to fetch as well

    Omit specific fields from the RolePermissions

    Select specific fields to fetch from the RolePermissions

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

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