ParseReact icon indicating copy to clipboard operation
ParseReact copied to clipboard

Seamlessly bring Parse data into your React applications.

Results 72 ParseReact issues
Sort by recently updated
recently updated
newest added

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...

Hello, I am using parse as my app back-end, but I am unable to receive data with the observe() method, although I'm sure that react is properly connect with parse...

Can this work in the cloud code environment? I assume because it relies on the Javascript SDK that its more browser based than anything. The cloud code environment would benefit...

Me and my team are exploring React Native + Parse. We already have had Android and iOS apps on Parse. We want to rebuild them using React Native. We intentionally...

Is there anyway to attach LiveQueries to observe? (for realtime apps) I see that there is a note in the readme about a new low-level SDK which will work with...

ParseReact (0.5.0) patches `Parse.User.logOut()` (Parse 1.6.14) [like so](https://github.com/ParsePlatform/ParseReact/blob/master/src/ParsePatches.js#L82): ``` logOut: function() { var promise = oldLogOut(); LocalSubscriptions.currentUser.update(); return promise; }, ``` Unfortunately, this breaks logging out since `LocalSubscriptions.currentUser.update()` runs before...

I want to use facebook login to parse in android device. when trying login parse with facebook on ios, the code is below: ``` onFacebookLogin: function(token) { if (!token) return;...

The updates for ParseComponent for ES6-based code states that all of the same methods in the ParseReact.Mixin should work the same way. However, the "new Parse.Query" doesn't seem to grab...

Hello, Without ParseReact, I can call Parse.FacebookUtils.logIn using only a promise, not a callback, like so: ``` Parse.FacebookUtils.logIn(authData).then(function (user) { // do something with user }); ``` With ParseReact, `user`...

I am using https://github.com/kriasoft/react-starter-kit when I use parse-react in a component with ES6 classes using ``` javascript import Parse from 'parse'; ``` Some time I get the result but if...