You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need to run some complex queries (with aggregate functions and etc) which are not supported by the SDK. Perhaps I could construct my own query and send the query to mongo db directly from the cloud code using MongoClient. Once I get the results back, I want to transform them to Parse.Object and return them to the js client.
Is the following the right place to start with? Is it as simple as iterating the results and calling untransformObject()? Is there anything hidden that I'm not aware of that this approach would unlikely to work?