DisBot
    Preparing search index...

    Type Alias SyncedChannelLinkMessagesUpsertArgs<ExtArgs>

    SyncedChannelLinkMessages upsert

    type SyncedChannelLinkMessagesUpsertArgs<
        ExtArgs extends InternalArgs = DefaultArgs,
    > = {
        create: XOR<
            SyncedChannelLinkMessagesCreateInput,
            SyncedChannelLinkMessagesUncheckedCreateInput,
        >;
        include?: SyncedChannelLinkMessagesInclude<ExtArgs>
        | null;
        omit?: SyncedChannelLinkMessagesOmit<ExtArgs> | null;
        select?: SyncedChannelLinkMessagesSelect<ExtArgs> | null;
        update: XOR<
            SyncedChannelLinkMessagesUpdateInput,
            SyncedChannelLinkMessagesUncheckedUpdateInput,
        >;
        where: SyncedChannelLinkMessagesWhereUniqueInput;
    }

    Type Parameters

    Index

    Properties

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

    Choose, which related nodes to fetch as well

    Omit specific fields from the SyncedChannelLinkMessages

    Select specific fields to fetch from the SyncedChannelLinkMessages

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

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