DisBot
    Preparing search index...

    Type Alias MessageTemplatesUpsertArgs<ExtArgs>

    MessageTemplates upsert

    type MessageTemplatesUpsertArgs<ExtArgs extends InternalArgs = DefaultArgs> = {
        create: XOR<
            MessageTemplatesCreateInput,
            MessageTemplatesUncheckedCreateInput,
        >;
        include?: MessageTemplatesInclude<ExtArgs>
        | null;
        omit?: MessageTemplatesOmit<ExtArgs> | null;
        select?: MessageTemplatesSelect<ExtArgs> | null;
        update: XOR<
            MessageTemplatesUpdateInput,
            MessageTemplatesUncheckedUpdateInput,
        >;
        where: MessageTemplatesWhereUniqueInput;
    }

    Type Parameters

    Index

    Properties

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

    Choose, which related nodes to fetch as well

    Omit specific fields from the MessageTemplates

    Select specific fields to fetch from the MessageTemplates

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

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