I need to implement a shared global realm where users can write new records and delete their previous ones but not delete other users records.
Example, a comment system.
I made it via object permission using query based sync but I cannot understand…
This is with reference to https://realm.io/docs/javascript/latest/api/tutorial-query-language.html
I am not looking for variable substitution syntax as mentioned in the documentation.
So i have a date field by the name createDate, and i am trying to…
I am using realm js for my react native app and the app has to be addressed to work offline and online, hence I need to have synchronization between the server database(Postgres/MySql/Oracle) and realm database.
How should I log the changes(Update…
Trying to push a new int into an int realm list. I can get the Realm object, I can print it and when I print the object it shows the list with it's content, I can use Realm Studio to edit, add numbers to the list, etc.. But when I try to call any…
So I'm developing an APP in react-native that receives a background event. And when the background event is received the APP crash and doesn't save Data on the realm library when the phone is locked.
Is geolocation Based APP, so it needs to save…
I'm currently working on a React Native application, the server is already implemented and my app should implement offline sync, I'm planning to integrate realm on the mobile device to deal with the offline data and pushing the data to the…
I'm facing an issue with realm.js. I add an object and give permission to that, and it seems to work well, but when I log out and then log in with another account I can see the previous data on device (even the ones for those I don't have…
I'm starting to use Realm.js as the database for my android apps but I have a problem understanding why if I log with invalid credentials it doesn't give me an error but instead it creates a new user.
I'd like to avoid this from happening and give…
I am developing an app where I'm using Realm JS with fine graded permissions.
I think this is a really huge feature, and it is way better than using separeted realms.
I succesfully implemented record level permission, so I have one table with…
Description
I went through the realm-js documentation and was unable to find any examples explaining how to push an object into the array property of its parent.
To be a little more clear, I have a Schema Test which has a property data: {type:…