@robert-brightline/auth-db - v0.0.21
    Preparing search index...

    Type Alias AccessTokenUpsertArgs<ExtArgs>

    AccessToken upsert

    type AccessTokenUpsertArgs<
        ExtArgs extends
            runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
    > = {
        create: Prisma.XOR<
            AccessTokenCreateInput,
            AccessTokenUncheckedCreateInput,
        >;
        include?: AccessTokenInclude<ExtArgs>
        | null;
        omit?: AccessTokenOmit<ExtArgs> | null;
        select?: AccessTokenSelect<ExtArgs> | null;
        update: Prisma.XOR<AccessTokenUpdateInput, AccessTokenUncheckedUpdateInput>;
        where: AccessTokenWhereUniqueInput;
    }

    Type Parameters

    • ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs
    Index

    Properties

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

    include?: AccessTokenInclude<ExtArgs> | null

    Choose, which related nodes to fetch as well

    omit?: AccessTokenOmit<ExtArgs> | null

    Omit specific fields from the AccessToken

    select?: AccessTokenSelect<ExtArgs> | null

    Select specific fields to fetch from the AccessToken

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

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