DisBot
    Preparing search index...

    Type Alias GuildLoggingCreateManyAndReturnArgs<ExtArgs>

    GuildLogging createManyAndReturn

    type GuildLoggingCreateManyAndReturnArgs<
        ExtArgs extends InternalArgs = DefaultArgs,
    > = {
        data: GuildLoggingCreateManyInput | GuildLoggingCreateManyInput[];
        include?: GuildLoggingIncludeCreateManyAndReturn<ExtArgs> | null;
        omit?: GuildLoggingOmit<ExtArgs> | null;
        select?: GuildLoggingSelectCreateManyAndReturn<ExtArgs> | null;
        skipDuplicates?: boolean;
    }

    Type Parameters

    Index

    Properties

    The data used to create many GuildLoggings.

    Choose, which related nodes to fetch as well

    omit?: GuildLoggingOmit<ExtArgs> | null

    Omit specific fields from the GuildLogging

    Select specific fields to fetch from the GuildLogging

    skipDuplicates?: boolean