I'm looking for a method that is like equalsIgnoreCase, only in Bson Filters.
At the moment I use Filters.eq (" tag ", tag)
only I want a method where the tag can also be case sensitive, but still comes true. So, so to speak, equalsIgnoreCase if you understand what I mean.
return collection.find(Filters.eq("tag", tag)).first() != null;