DisBot
    Preparing search index...

    Type Alias GuildUserModerationCreateManyAndReturnArgs<ExtArgs>

    GuildUserModeration createManyAndReturn

    type GuildUserModerationCreateManyAndReturnArgs<
        ExtArgs extends InternalArgs = DefaultArgs,
    > = {
        data:
            | GuildUserModerationCreateManyInput
            | GuildUserModerationCreateManyInput[];
        include?: GuildUserModerationIncludeCreateManyAndReturn<ExtArgs>
        | null;
        omit?: GuildUserModerationOmit<ExtArgs> | null;
        select?: GuildUserModerationSelectCreateManyAndReturn<ExtArgs> | null;
        skipDuplicates?: boolean;
    }

    Type Parameters

    Index

    Properties

    The data used to create many GuildUserModerations.

    Choose, which related nodes to fetch as well

    Omit specific fields from the GuildUserModeration

    Select specific fields to fetch from the GuildUserModeration

    skipDuplicates?: boolean