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

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

CLA Signed

Added an email field to the signup form, otherwise signup fails.

CLA Signed

For now it isn't backed by a store of any sorts, so apps would have to manually refresh the query. I think that's an acceptable situation for most apps. Going...

CLA Signed

Fix for https://github.com/ParsePlatform/ParseReact/pull/157 `mappedFlatten(el)` tried to flatten every element of the array (by calling `flatten(el)`) even if they are not Parse Objects, resulting in many **Attempted to flatten something that...

CLA Signed

I recently upgraded to RN 0.43 and then started to receive issue with `import { AsyncStorage } from 'react-native/Libraries/react-native/react-native.js';` module not found. after changing to below it started working `import...

Sometimes I get the following error: ``` TypeError: undefined is not an object (evaluating 'mutation.action') ObjectStore.js:396 (version 0.4.2) ``` Which is the second line in the following code: ``` javascript...

needs repro

Suppose I observe the user, and then I add fields to `_User` from the online gui. I can't access those fields from react or refresh the subscription from `refreshQueries` because...

I'm running into some issues getting the anyBudget demo code to function. I've deployed a Parse backend to Heroku, which is running fine (2.2.18). It is configured to serve the...

Hi, I want to do a Query without the observable patern in react native. Just a query and execute. Like the mutations. Sadly I find no hint in the documation...

Hello Because of the way ParseReact flattens objects, properties, methods, etc. that have been added to a class which extends Parse.Object [as described in the Parse docs](https://www.parse.com/docs/js/guide#objects-parse-object) disappear. Is there...