DisBot
    Preparing search index...

    Type Alias GuildAutoPublishCreateManyAndReturnArgs<ExtArgs>

    GuildAutoPublish createManyAndReturn

    type GuildAutoPublishCreateManyAndReturnArgs<
        ExtArgs extends InternalArgs = DefaultArgs,
    > = {
        data:
            | GuildAutoPublishCreateManyInput
            | GuildAutoPublishCreateManyInput[];
        include?: GuildAutoPublishIncludeCreateManyAndReturn<ExtArgs>
        | null;
        omit?: GuildAutoPublishOmit<ExtArgs> | null;
        select?: GuildAutoPublishSelectCreateManyAndReturn<ExtArgs> | null;
        skipDuplicates?: boolean;
    }

    Type Parameters

    Index

    Properties

    The data used to create many GuildAutoPublishes.

    Choose, which related nodes to fetch as well

    Omit specific fields from the GuildAutoPublish

    Select specific fields to fetch from the GuildAutoPublish

    skipDuplicates?: boolean