我想要查询的是Parse.User
对象在今天的日期尚未更新的每个MComparisonArray
。
以下是我到目前为止所使用的内容,包括常规和伪代码的混合。这不起作用,并提供错误ReferenceError: updatedAt is not defined
。
我认为问题在于我没有正确引用MComparisonArray对象,但我似乎无法在docs中找到可以指向正确方向的任何内容。
Parse.Cloud.job("MatchCenterBackground", function(request, status) {
Parse.Cloud.useMasterKey();
var usersQuery = new Parse.Query(Parse.User);
usersQuery.greaterThan(Parse.User.MComparisonArray, updatedAt);
return usersQuery.each(function(user) {
return processUser(user)
.then(function(eBayResults) {
return matchCenterComparison(user, eBayResults);
});
})
.then(function() {
// Set the job's success status
status.success("MatchCenterBackground completed successfully.");
}, function(error) {
// Set the job's error status
status.error("Got an error " + JSON.stringify(error));
});
});