I can't get the results of any query when not debugging, but works perfectly when debugging
Also I noticed that Realm is behaving very differently according to wither debugging or not
This is just a summary of the idea :
I'm printing…
I’m using the WildAid O-FISH post to create a similar project using realm JS react-native SDK with flexible sync.
I’m trying to create a Photo object but I get a “no internal field” error.
Here’s my Photo model
export class Photo extends…
For a hobby project, I was trying to create and access the realm DB local using NodeJS SDK. I've created the DB (.realm file) with realm studio and CSV file, and able to browse the objects.
However, when I tried to connect with NodeJS SDK, I'm…
I started using realm react native SDK and I am wondering if I can define a user defined attribute for a given object or attribute.
With Apple Core Data there was a User Info dictionary attached to NSEntityDescription / NSPropertyDescription and I…
Let's say that we have a group object with a field called contacts on it. Contacts is a list that holds references to contact objects and can in theory have up to 20 000 objects in it.
My question(s):
If I query group object, am I taking a…
Crash, Error: Unable to open a realm at path '/data/user/0/xxx/files/geo.realm': Realm file initial open failed: Invalid mnemonic.
In our React Native project, this error has started to appear for 10-15% of our users since our last release, yet we…
Very occasionally the Realm pod (Realm-JS) will actually build and run correctly. The majority of the time in order for it to build without the "file not found" error I have to:
Delete derived data and project build folder
Clean pod cache $pod…
I have no idea how to get around to fixing this.
I have a feeling it might be related to RealmJS but i have tried everything from their issues page on github.
I have tried, downgrading Realm, cleaning the project, restart xcode, restart the whole…
Our tester captured some unknown GET request while doing API testing in our React Native application.
GET /inspector/device?name=some_unique_id&app=com.companyname.appname HTTP/1.1
Upgrade: websocket
Connection: Upgrade
Sec-WebSocket-Key: encrypted…
I want to compact a Realm file in my Node JS app, but there is nothing about it in the Realm JS docs.
I dug into the JS API reference, but the usage is vague (at least to me).
Here's what I've tried so far:
//This is my own custom function
function…
I have a .realm file with 5 classes and I want to open that .realm file and read a column of one class but when I try to access the database I receive an error. It's an app for Android made in react native.This is the function I use to read data…
I'm using realmjs DB in my react-native app where I have a schema settings. I want to change a property type of that schema from int to string. So I understand that I need to perform migration and I decided to perform a linear migration. For the…
I create a function to handle transaction, then I call it to multi places. I got crash when another transaction not yet complete when I open new transaction.
Here my code:
const RealmMakeTransaction = async (action) => {
try {
…
I have meet this situation for my requirements:
step 1. save data to local db which in the mobile phone (realm)
step 2. upload the local data to the server, and the server will return the data ids if success
step 3. delete the records in local db by…