Javascript – Firebase Firestore Query Index Issue with Multiple Filters and Combinations
I am building a website that uses pagination and filtering of some data. if (eventType) query = query.where('general.eventType', '==', eventType); if (price) query = query.where('general.eventTicketPrice', price == "free" ? '==' : '>=', 0); if (startDate) query = query.where('general.eventDates.start', '>=', new…