DisBot
    Preparing search index...

    Type Alias GuildChannelLinksCreateManyAndReturnArgs<ExtArgs>

    GuildChannelLinks createManyAndReturn

    type GuildChannelLinksCreateManyAndReturnArgs<
        ExtArgs extends InternalArgs = DefaultArgs,
    > = {
        data:
            | GuildChannelLinksCreateManyInput
            | GuildChannelLinksCreateManyInput[];
        include?: GuildChannelLinksIncludeCreateManyAndReturn<ExtArgs>
        | null;
        omit?: GuildChannelLinksOmit<ExtArgs> | null;
        select?: GuildChannelLinksSelectCreateManyAndReturn<ExtArgs> | null;
        skipDuplicates?: boolean;
    }

    Type Parameters

    Index

    Properties

    The data used to create many GuildChannelLinks.

    Choose, which related nodes to fetch as well

    Omit specific fields from the GuildChannelLinks

    Select specific fields to fetch from the GuildChannelLinks

    skipDuplicates?: boolean