As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
I had the same problem. Casting the variable to string solved this.
Thanks.
Nico Barelmann
modules.collectionAccess.collection('squaduser').find({
"user._id" : "547499c25aee6ffe3600e2cb"
}, function(err, results) {
});
is working ...
logger(docs._id == "547499c25aee6ffe3600e2cb"); // true
var userID = docs._id;
modules.collectionAccess.collection('squaduser').find({
"user._id" : userID
}, function(err, results) {
});
is not working
meaning results always is empty, but the entity is there!
i really have no clue whats the problem .... any idea?
1 person has this question