the order by does not work as expected in my query. I´m trying to find users in the given radius and to sort the users by membership and lastBoostAt but the order by query is doing nothing. do someone has a solution? the order array has the 3 orders [currentlocation.hash, membership, lastBoostAt]. The problem is that the documents in my result are not sorted by the given orders.
here is how i tried to solve it:
this.queryFilter = [];
return this.userCollectionService.getUsersByDistance(this.user.currentLocation,
20000, this.queryFilter, [
{key: 'currentLocation.hash', descending: 'asc'},
{key: 'membership', descending: 'desc'},
{key: 'lastBoostAt', descending: 'desc'}
]).then((users) => {
this.standardUsers = users;
})
const center: any = [currentLocation.lat, currentLocation.lng];
const bounds = geohashQueryBounds(center, distance * 1000);
const promises = [];
let queryFilters = [];
let queryOrders = [];
if (filters) {
for (let filter of filters) {
queryFilters.push(where(filter.key, filter.opr, filter.value))
}
}
if (order) {
if (typeof(order) === 'object') {
for (let o of order) {
console.log(o.key);
queryOrders.push(orderBy(o.key, o.descending));
}
} else {
queryOrders.push(orderBy(order, 'desc'));
}
}
let i = 0;
for (const b of bounds) {
console.log(b);
if (i === 0) {
queryFilters.push(where('currentLocation.hash', '>=', b[0]));
queryFilters.push(where('currentLocation.hash', '<=', b[1]));
} else {
queryFilters.push(or(...[where('currentLocation.hash', '>=', b[0]), where('currentLocation.hash', '>=', b[1])]));
}
i++;
}
console.log(queryOrders);
const q = query(
collection(this.db, 'Users'),
...queryFilters,
...queryOrders,
//orderBy('currentLocation.hash'),
order);
promises.push(getDocs(q));
const snapshots = await Promise.all(promises);
console.log(snapshots.length)
const users: IUser[] = [];
for (const snap of snapshots) {
for (const doc of snap.docs) {
const lat = doc.get('currentLocation.lat');
const lng = doc.get('currentLocation.lng');
const distanceInKm = distanceBetween([lat, lng], center);
const distanceInM = distanceInKm * 1000;
if (distanceInM <= distance * 1000) {
users.push(doc.data());
} else {
console.log(true);
}
}
}
return users;
when i dont use the geohash filter then it works fine but i need a max distance in my query. i appreciate it if someone has a better solution to solve the problem.
here ist the result screenshot
that should be sort by membership and lastBoostAt. lastBoostAt is just a timestamp in the database and the membership is a number in the database. 3 = vip, 2 = gold, 1 = standard. As u can see it is not sorted by hash or membership.