Javascript – FirebaseError: Invalid query. All where filters with an inequality
According to this documentation of compound queires I can make queries like this: query( collection(db, 'users', user.value.id, 'leaderboard'), and( where('series.seriesStartDate', '<=', new Date()), where('score', '>', 0), ), limit(5) ) I have already made the index: and tested the query that…