DisBot
    Preparing search index...

    Type Alias ModerationScoutFormsUpsertArgs<ExtArgs>

    ModerationScoutForms upsert

    type ModerationScoutFormsUpsertArgs<ExtArgs extends InternalArgs = DefaultArgs> = {
        create: XOR<
            ModerationScoutFormsCreateInput,
            ModerationScoutFormsUncheckedCreateInput,
        >;
        include?: ModerationScoutFormsInclude<ExtArgs>
        | null;
        omit?: ModerationScoutFormsOmit<ExtArgs> | null;
        select?: ModerationScoutFormsSelect<ExtArgs> | null;
        update: XOR<
            ModerationScoutFormsUpdateInput,
            ModerationScoutFormsUncheckedUpdateInput,
        >;
        where: ModerationScoutFormsWhereUniqueInput;
    }

    Type Parameters

    Index

    Properties

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

    Choose, which related nodes to fetch as well

    Omit specific fields from the ModerationScoutForms

    Select specific fields to fetch from the ModerationScoutForms

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

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