DropGroupByOutputType: {
    _count: DropCountAggregateOutputType | null;
    _max: DropMaxAggregateOutputType | null;
    _min: DropMinAggregateOutputType | null;
    createdAt: Date;
    dbId: string;
    description: string | null;
    dropId: string;
    endsAt: Date;
    gameId: string | null;
    imageUrl: string | null;
    name: string;
    organizationId: string | null;
    organizationName: string | null;
    organizationUrl: string | null;
    platform: PlatformEnum;
    platformData: JsonValue | null;
    startsAt: Date;
    status: string;
    updatedAt: Date;
    url: string | null;
}