DisBot
    Preparing search index...

    Type Alias GuildComponentManagerCreateManyAndReturnArgs<ExtArgs>

    GuildComponentManager createManyAndReturn

    type GuildComponentManagerCreateManyAndReturnArgs<
        ExtArgs extends InternalArgs = DefaultArgs,
    > = {
        data:
            | GuildComponentManagerCreateManyInput
            | GuildComponentManagerCreateManyInput[];
        include?: GuildComponentManagerIncludeCreateManyAndReturn<ExtArgs>
        | null;
        omit?: GuildComponentManagerOmit<ExtArgs> | null;
        select?: GuildComponentManagerSelectCreateManyAndReturn<ExtArgs> | null;
        skipDuplicates?: boolean;
    }

    Type Parameters

    Index

    Properties

    The data used to create many GuildComponentManagers.

    Choose, which related nodes to fetch as well

    Omit specific fields from the GuildComponentManager

    Select specific fields to fetch from the GuildComponentManager

    skipDuplicates?: boolean