Is there a way to have an "empty" where query (that searches for anything).
Having
db.collection('skies').where('sky','==','blue')
right now I have to do
if (searchForAny){
db.collection('skies').otherStuff();
}
else {
db.collection('skies').where('sky','==','blue').otherStuff();
}