DropGameWhereInput: {
    AND?: DropGameWhereInput | DropGameWhereInput[];
    NOT?: DropGameWhereInput | DropGameWhereInput[];
    OR?: DropGameWhereInput[];
    createdAt?: DateTimeFilter<"DropGame"> | Date | string;
    dbId?: StringFilter<"DropGame"> | string;
    description?: StringNullableFilter<"DropGame"> | string | null;
    drops?: DropListRelationFilter;
    gameId?: StringFilter<"DropGame"> | string;
    guildDropsGames?: GuildDropsGameListRelationFilter;
    imageUrl?: StringNullableFilter<"DropGame"> | string | null;
    name?: StringFilter<"DropGame"> | string;
    platform?: EnumPlatformEnumFilter<"DropGame"> | PlatformEnum;
    platformData?: JsonNullableFilter<"DropGame">;
    slug?: StringNullableFilter<"DropGame"> | string | null;
    updatedAt?: DateTimeFilter<"DropGame"> | Date | string;
}