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.
Gary W
This is my endpoint so far.
What do I need to put in the find to return all users?
`function onRequest(request, response, modules) {
var collectionAccess = modules.collectionAccess;
collectionAccess.collection('user').find( { "_id": { $gt: "0" } } , function(err, user) {
response.body = user;
response.complete();
});
}`
Currently when testing it the response is this:
`200 SUCCESS -- []`