DisBot
    Preparing search index...

    Type Alias VanityEmbedCreateManyAndReturnArgs<ExtArgs>

    VanityEmbed createManyAndReturn

    type VanityEmbedCreateManyAndReturnArgs<
        ExtArgs extends InternalArgs = DefaultArgs,
    > = {
        data: VanityEmbedCreateManyInput | VanityEmbedCreateManyInput[];
        include?: VanityEmbedIncludeCreateManyAndReturn<ExtArgs> | null;
        omit?: VanityEmbedOmit<ExtArgs> | null;
        select?: VanityEmbedSelectCreateManyAndReturn<ExtArgs> | null;
        skipDuplicates?: boolean;
    }

    Type Parameters

    Index

    Properties

    The data used to create many VanityEmbeds.

    Choose, which related nodes to fetch as well

    omit?: VanityEmbedOmit<ExtArgs> | null

    Omit specific fields from the VanityEmbed

    Select specific fields to fetch from the VanityEmbed

    skipDuplicates?: boolean