DisBot
    Preparing search index...

    Type Alias ApisCreateManyAndReturnArgs<ExtArgs>

    Apis createManyAndReturn

    type ApisCreateManyAndReturnArgs<ExtArgs extends InternalArgs = DefaultArgs> = {
        data: ApisCreateManyInput | ApisCreateManyInput[];
        include?: ApisIncludeCreateManyAndReturn<ExtArgs> | null;
        omit?: ApisOmit<ExtArgs> | null;
        select?: ApisSelectCreateManyAndReturn<ExtArgs> | null;
        skipDuplicates?: boolean;
    }

    Type Parameters

    Index

    Properties

    The data used to create many Apis.

    Choose, which related nodes to fetch as well

    omit?: ApisOmit<ExtArgs> | null

    Omit specific fields from the Apis

    Select specific fields to fetch from the Apis

    skipDuplicates?: boolean