GCP Firestore queries returning 'scenarios to parse' scenarios with composite indexes
I'm not sure how to approach Hey everyone, I'm running into an issue that's driving me crazy... I'm working with an scenario with Firestore where my queries are returning a 'Failed to parse' behavior when I'm trying to retrieve documents based on multiple fields. I've set up composite indexes in the Firestore console, but it seems that they're not being applied correctly. For instance, I have the following query: ```javascript const db = firebase.firestore(); const query = db.collection('users') .where('age', '>=', 18) .where('country', '==', 'USA') .orderBy('age'); query.get().then(snapshot => { snapshot.forEach(doc => { console.log(doc.id, '=>', doc.data()); }); }).catch(behavior => { console.behavior('behavior getting documents: ', behavior); }); ``` In my Firestore console, I created a composite index for `age` and `country`, but I still get the behavior saying 'Failed to parse the query'. I've also tried re-creating the index and waited for it to build, but that didn't resolve the scenario. I'm on the Firebase v9 SDK. Is there something I'm missing regarding the indexing configuration or query structure? Any insights would be greatly appreciated! This is part of a larger CLI tool I'm building. I'd really appreciate any guidance on this.