DisBot
    Preparing search index...

    Type Alias ModerationScoutFormsDataUpsertArgs<ExtArgs>

    ModerationScoutFormsData upsert

    type ModerationScoutFormsDataUpsertArgs<
        ExtArgs extends InternalArgs = DefaultArgs,
    > = {
        create: XOR<
            ModerationScoutFormsDataCreateInput,
            ModerationScoutFormsDataUncheckedCreateInput,
        >;
        include?: ModerationScoutFormsDataInclude<ExtArgs>
        | null;
        omit?: ModerationScoutFormsDataOmit<ExtArgs> | null;
        select?: ModerationScoutFormsDataSelect<ExtArgs> | null;
        update: XOR<
            ModerationScoutFormsDataUpdateInput,
            ModerationScoutFormsDataUncheckedUpdateInput,
        >;
        where: ModerationScoutFormsDataWhereUniqueInput;
    }

    Type Parameters

    Index

    Properties

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

    Choose, which related nodes to fetch as well

    Omit specific fields from the ModerationScoutFormsData

    Select specific fields to fetch from the ModerationScoutFormsData

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

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