DisBot
    Preparing search index...

    Type Alias VerificationGatesUpsertArgs<ExtArgs>

    VerificationGates upsert

    type VerificationGatesUpsertArgs<ExtArgs extends InternalArgs = DefaultArgs> = {
        create: XOR<
            VerificationGatesCreateInput,
            VerificationGatesUncheckedCreateInput,
        >;
        include?: VerificationGatesInclude<ExtArgs>
        | null;
        omit?: VerificationGatesOmit<ExtArgs> | null;
        select?: VerificationGatesSelect<ExtArgs> | null;
        update: XOR<
            VerificationGatesUpdateInput,
            VerificationGatesUncheckedUpdateInput,
        >;
        where: VerificationGatesWhereUniqueInput;
    }

    Type Parameters

    Index

    Properties

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

    Choose, which related nodes to fetch as well

    Omit specific fields from the VerificationGates

    Select specific fields to fetch from the VerificationGates

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

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