DisBot
    Preparing search index...

    Type Alias GuildSecurityCreateManyAndReturnArgs<ExtArgs>

    GuildSecurity createManyAndReturn

    type GuildSecurityCreateManyAndReturnArgs<
        ExtArgs extends InternalArgs = DefaultArgs,
    > = {
        data: GuildSecurityCreateManyInput | GuildSecurityCreateManyInput[];
        include?: GuildSecurityIncludeCreateManyAndReturn<ExtArgs> | null;
        omit?: GuildSecurityOmit<ExtArgs> | null;
        select?: GuildSecuritySelectCreateManyAndReturn<ExtArgs> | null;
        skipDuplicates?: boolean;
    }

    Type Parameters

    Index

    Properties

    The data used to create many GuildSecurities.

    Choose, which related nodes to fetch as well

    omit?: GuildSecurityOmit<ExtArgs> | null

    Omit specific fields from the GuildSecurity

    Select specific fields to fetch from the GuildSecurity

    skipDuplicates?: boolean