DisBot
    Preparing search index...

    Type Alias GuildWelcomeSetupCreateManyAndReturnArgs<ExtArgs>

    GuildWelcomeSetup createManyAndReturn

    type GuildWelcomeSetupCreateManyAndReturnArgs<
        ExtArgs extends InternalArgs = DefaultArgs,
    > = {
        data:
            | GuildWelcomeSetupCreateManyInput
            | GuildWelcomeSetupCreateManyInput[];
        include?: GuildWelcomeSetupIncludeCreateManyAndReturn<ExtArgs>
        | null;
        omit?: GuildWelcomeSetupOmit<ExtArgs> | null;
        select?: GuildWelcomeSetupSelectCreateManyAndReturn<ExtArgs> | null;
        skipDuplicates?: boolean;
    }

    Type Parameters

    Index

    Properties

    The data used to create many GuildWelcomeSetups.

    Choose, which related nodes to fetch as well

    Omit specific fields from the GuildWelcomeSetup

    Select specific fields to fetch from the GuildWelcomeSetup

    skipDuplicates?: boolean