300 and 40 stars and not a single tutorial or Example
I am impressed with the popularity of react-native-store but unable to implement. Let me write a secnario
var storage = {
'following': Store.model('following'),
'token': Store.model('token')
}
storage.following.add({following: responseData})
storage.token.add({token: responseData.token})
storage.following.find().then(resp => console.log(resp));
storage.token.find().then(token => console.log(token));
whenever i try to fetch i am unable to get the required results. sometimes it returned null and sometime it returned only one from the two.
300 and 40 stars and not a single tutorial or Example
I am impressed with the popularity of react-native-store but unable to implement. Let me write a secnario
var storage = {
'following': Store.model('following'),
'token': Store.model('token')
}
storage.following.add({following: responseData})
storage.token.add({token: responseData.token})
storage.following.find().then(resp => console.log(resp));
storage.token.find().then(token => console.log(token));
whenever i try to fetch i am unable to get the required results. sometimes it returned null and sometime it returned only one from the two.