Parse 目前不支持聚合查询。这是一个如何使用 js sdk api 执行此操作的示例。如果你很好奇,为了确保这有效,在我签出的 parse-server repo 版本中,我在 spec 目录中创建了一个 spec 文件,其中包含以下所有内容,然后我只专注于测试(在“describe”前面加一个“f”)。
/**
* Return a sorted list of cities with count of friends in that city
*
* @param userId id of the user to build the list for
* @returns an array of city, count pairs sorted descending
*/
const getCities = function getCities(userId) {
const aggregation = {};
const userPointer = new Parse.Object('Person').set('objectId', userId);
return new Parse.Query('Friend')
.equalTo('user1', userPointer)
.include('user2.city')
.each((friendship) => {
const city = friendship.get('user2').get('city').get('name');
if (aggregation[city]) {
aggregation[city]++
}
else {
aggregation[city] = 1;
}
})
.then(() => {
const sortable = [];
for (const city in aggregation) {
sortable.push([city, aggregation[city]]);
}
return sortable.sort((a, b) => b[1] - a[1]); // desc
});
}
// the unit test for the function above....
fdescribe('play with aggregations', () => {
it('should count friends by city and order desc', (done) => {
// create cities
const ny = new Parse.Object('City').set('name', 'ny');
const sf = new Parse.Object('City').set('name', 'sf');
// create some people to befriend
const people = [
new Parse.Object('Person').set('city', ny),
new Parse.Object('Person').set('city', sf),
new Parse.Object('Person').set('city', sf),
new Parse.Object('Person').set('city', sf),
];
// the object of these friendships
const friendee = new Parse.Object('Person').set('city', sf);
// make the friendships
const friends = people.map(person =>
new Parse.Object('Friend')
.set('user1', friendee)
.set('user2', person));
// just saving the friends will save the friendee and cities too!
Parse.Object.saveAll(friends)
// all saved, now call our function
.then(() => getCities(friendee.id))
.then((result) => {
const lastResult = result.pop();
const firstResult = result.pop();
expect(lastResult[0]).toBe('ny');
expect(lastResult[1]).toBe(1);
expect(firstResult[0]).toBe('sf');
expect(firstResult[1]).toBe(3);
done();
})
.catch(done.fail);
});
});