DisBot
    Preparing search index...

    Type Alias PollOptionsCreateManyAndReturnArgs<ExtArgs>

    PollOptions createManyAndReturn

    type PollOptionsCreateManyAndReturnArgs<
        ExtArgs extends InternalArgs = DefaultArgs,
    > = {
        data: PollOptionsCreateManyInput | PollOptionsCreateManyInput[];
        include?: PollOptionsIncludeCreateManyAndReturn<ExtArgs> | null;
        omit?: PollOptionsOmit<ExtArgs> | null;
        select?: PollOptionsSelectCreateManyAndReturn<ExtArgs> | null;
        skipDuplicates?: boolean;
    }

    Type Parameters

    Index

    Properties

    The data used to create many PollOptions.

    Choose, which related nodes to fetch as well

    omit?: PollOptionsOmit<ExtArgs> | null

    Omit specific fields from the PollOptions

    Select specific fields to fetch from the PollOptions

    skipDuplicates?: boolean