DisBot
    Preparing search index...

    Type Alias ModerationScoutReportsUpsertArgs<ExtArgs>

    ModerationScoutReports upsert

    type ModerationScoutReportsUpsertArgs<
        ExtArgs extends InternalArgs = DefaultArgs,
    > = {
        create: XOR<
            ModerationScoutReportsCreateInput,
            ModerationScoutReportsUncheckedCreateInput,
        >;
        include?: ModerationScoutReportsInclude<ExtArgs>
        | null;
        omit?: ModerationScoutReportsOmit<ExtArgs> | null;
        select?: ModerationScoutReportsSelect<ExtArgs> | null;
        update: XOR<
            ModerationScoutReportsUpdateInput,
            ModerationScoutReportsUncheckedUpdateInput,
        >;
        where: ModerationScoutReportsWhereUniqueInput;
    }

    Type Parameters

    Index

    Properties

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

    Choose, which related nodes to fetch as well

    Omit specific fields from the ModerationScoutReports

    Select specific fields to fetch from the ModerationScoutReports

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

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