Using Parse with react-redux - best practices

Hi,

What is the recommended approach for working with parse and react when using redux?

The ParseObjects returned from Parse queries are not serializable to allow for storing in redux so I am converting them toJSON() before storing them into the store, but perhaps Parse is not meant to be used with redux as I do not see any posts in the community relating to redux and Parse.

thanks,

I think toJSON() is the way to go in order to serialize the objects.