DisBot
    Preparing search index...

    Type Alias DisBotCreateManyAndReturnArgs<ExtArgs>

    DisBot createManyAndReturn

    type DisBotCreateManyAndReturnArgs<ExtArgs extends InternalArgs = DefaultArgs> = {
        data: DisBotCreateManyInput | DisBotCreateManyInput[];
        omit?: DisBotOmit<ExtArgs> | null;
        select?: DisBotSelectCreateManyAndReturn<ExtArgs> | null;
        skipDuplicates?: boolean;
    }

    Type Parameters

    Index

    Properties

    The data used to create many DisBots.

    omit?: DisBotOmit<ExtArgs> | null

    Omit specific fields from the DisBot

    Select specific fields to fetch from the DisBot

    skipDuplicates?: boolean