I'm sure this has wider implications but here goes:
I want to add a new field to my document - isDeleted
When isDeleted = true; I want to filter it out from queries.
Since I can't use !=, and I can't use < > queries (its boolean, but other documents already have it not set) what is the "right" way to handle augmenting the schema?
I know I can go and update each document to have "isDeleted = false", but a big part of using a schemaless database is that I don't need to stress so much about data all being the same, otherwise I might as well just use a relational database.