DisBot
    Preparing search index...

    Type Alias GuildReactionRolesCreateManyAndReturnArgs<ExtArgs>

    GuildReactionRoles createManyAndReturn

    type GuildReactionRolesCreateManyAndReturnArgs<
        ExtArgs extends InternalArgs = DefaultArgs,
    > = {
        data:
            | GuildReactionRolesCreateManyInput
            | GuildReactionRolesCreateManyInput[];
        include?: GuildReactionRolesIncludeCreateManyAndReturn<ExtArgs>
        | null;
        omit?: GuildReactionRolesOmit<ExtArgs> | null;
        select?: GuildReactionRolesSelectCreateManyAndReturn<ExtArgs> | null;
        skipDuplicates?: boolean;
    }

    Type Parameters

    Index

    Properties

    The data used to create many GuildReactionRoles.

    Choose, which related nodes to fetch as well

    Omit specific fields from the GuildReactionRoles

    Select specific fields to fetch from the GuildReactionRoles

    skipDuplicates?: boolean