Currently, I am in the process of creating a platform where users can upload past exams. Each document contains various fields such as teacher, year, and class, all stored in cloud Firestore. To filter the data by teacher, I am using the .where("Teacher", "==", teacher) method. However, I would like to implement a feature that allows for empty queries so that users can search for multiple math tests from different teachers. Is there a way to achieve this functionality with the .where() operator, or do I need to handle each search case separately?