ClientBlogCreateManyInput: {
    authorIcon: string;
    authorName: string;
    clientId: string;
    content: string;
    createdAt: Date | string;
    dbId?: string;
    identifier: string;
    isPinned?: boolean;
    isPublic?: boolean;
    lastEdited: Date | string;
    reactions?: ClientBlogCreatereactionsInput | string[];
    reactionsCount?: number | null;
    tags?: ClientBlogCreatetagsInput | string[];
    thumbnail?: string | null;
    title: string;
    views?: number | null;
}