Mike Mintz
Mike Mintz
It would be nice if developers could add before-execute and after-execute callback functions to their queries in the whitelist. Some use cases: - Send push notifications after a row is...
When I implemented `simulatedLatencyMs` using `setTimeout`, I assumed that multiple calls to `setTimeout` with the same interval would have the callbacks executed in the same order that the timeouts were...
Mixins don't work with React components written as ES6 classes. Let's provide something that will work like a superclass, higher order component, or ES7 decorator.
This resolves https://github.com/ParsePlatform/ParseReact/issues/37 This allows an equalTo constraint to use a Parse.Object pointer instance and be automatically updated with the result of a mutation. Previously it would only work with...
I have a query that automatically updates when I issue a Mutation.Create. However, the pointer values of my results are inconsistent between objects that were pulled from the server and...
I have the following query that I would like to automatically update after I do a create mutation: ``` var Group = Parse.Object.extend("Group"); observe(props, state) { var groupObject = new...
Will ParseReact support Parse count queries in the observe function? See https://parse.com/docs/js/guide#queries-counting-objects