ClientBlogGroupByOutputType: {
    _avg: ClientBlogAvgAggregateOutputType | null;
    _count: ClientBlogCountAggregateOutputType | null;
    _max: ClientBlogMaxAggregateOutputType | null;
    _min: ClientBlogMinAggregateOutputType | null;
    _sum: ClientBlogSumAggregateOutputType | null;
    authorIcon: string;
    authorName: string;
    clientId: string;
    content: string;
    createdAt: Date;
    dbId: string;
    identifier: string;
    isPinned: boolean;
    isPublic: boolean;
    lastEdited: Date;
    reactions: string[];
    reactionsCount: number | null;
    tags: string[];
    thumbnail: string | null;
    title: string;
    views: number | null;
}