ParseReact
ParseReact copied to clipboard
Seamlessly bring Parse data into your React applications.
Say I'm observing for MyObj, the data is populated and later refreshed. In case of error during the refresh, e.g. no network connection, the current data is lost. Moreover, an...
Hi, I have a few questions about caching : - With an infinite scroll where only the limit parameter is changing, it would be nice to only query the missing...
Is there any planned support for this? Perhaps via a native module wrapping the parse SDK for offline behavior?
If you create a Parse.File, it needs to be saved before it can be set to an object field. The code looks something like this: ``` js var myImage =...
I've read the license file and it seems to be related just to Parse backend. Am I allowed to fork ParseReact to integrate other Back-end as a Service systems with...
Will ParseReact support Parse count queries in the observe function? See https://parse.com/docs/js/guide#queries-counting-objects
I was calling `first()` instead of `limit(1)` and it took me a while to figure out XD
There aren't a lot of them, it shouldn't be difficult.
I am getting >> undefined is not an object (evaluating 'stackString.split')
variable
``` javascript var CommentBlock = React.createClass({ mixins: [ParseReact.Mixin], // Enable query subscriptions observe: function() { // Subscribe to all Comment objects, ordered by creation date // The results will be...