DisBot
    Preparing search index...

    Type Alias GuildCommandMangerCreateManyAndReturnArgs<ExtArgs>

    GuildCommandManger createManyAndReturn

    type GuildCommandMangerCreateManyAndReturnArgs<
        ExtArgs extends InternalArgs = DefaultArgs,
    > = {
        data:
            | GuildCommandMangerCreateManyInput
            | GuildCommandMangerCreateManyInput[];
        include?: GuildCommandMangerIncludeCreateManyAndReturn<ExtArgs>
        | null;
        omit?: GuildCommandMangerOmit<ExtArgs> | null;
        select?: GuildCommandMangerSelectCreateManyAndReturn<ExtArgs> | null;
        skipDuplicates?: boolean;
    }

    Type Parameters

    Index

    Properties

    The data used to create many GuildCommandMangers.

    Choose, which related nodes to fetch as well

    Omit specific fields from the GuildCommandManger

    Select specific fields to fetch from the GuildCommandManger

    skipDuplicates?: boolean