DisBot
    Preparing search index...

    Type Alias PollsCreateManyAndReturnArgs<ExtArgs>

    Polls createManyAndReturn

    type PollsCreateManyAndReturnArgs<ExtArgs extends InternalArgs = DefaultArgs> = {
        data: PollsCreateManyInput | PollsCreateManyInput[];
        include?: PollsIncludeCreateManyAndReturn<ExtArgs> | null;
        omit?: PollsOmit<ExtArgs> | null;
        select?: PollsSelectCreateManyAndReturn<ExtArgs> | null;
        skipDuplicates?: boolean;
    }

    Type Parameters

    Index

    Properties

    The data used to create many Polls.

    Choose, which related nodes to fetch as well

    omit?: PollsOmit<ExtArgs> | null

    Omit specific fields from the Polls

    Select specific fields to fetch from the Polls

    skipDuplicates?: boolean