Kenneth Geisshirt
Kenneth Geisshirt
I believe this is related to our lack of support for the spread operator.
Thank you for reporting. We will upgrade a number of our dependencies soon.
It is difficult to tell as the functionality of `RealmManager.getRealmInstance()` is unknown. My guess is that the method returns a cached Realm instance which is already in a write transaction....
You could try to write your method to: ```js public static saveTransaction(entity) { const realm = RealmManager.getRealmInstance(); let inTransaction = realm.isInTransaction; if (!inTransaction) { realm.beginTransaction(); } realm.create('Transaction', entity, UpdateMode.All); if...
`mmap() failed: Cannot allocate memory ...` - it sounds like you have a transaction which is too large to handle for the database. Can you split it multiple transactions?
@HunainHumail Thank you for the request. We don't have support for React Native Windows/MacOS on our roadmap but we follow the development of the project. It is my understanding that...
@AlexSubZero We don't provide binaries for RN Windows yet so currently RN Windows is unsupported.
@cyril36 > If I refresh my page I loose this token This is expected as It is a current [limitation](https://www.mongodb.com/docs/atlas/device-sdks/web/sync/#limitations-of-device-sync-on-web)
@nuratun When calling `GoogleAuth.initialize()`, did you set `grantOfflineAccess` to false or true?
@nuratun Sorry for the late reply. I suggest you take a look at https://www.mongodb.com/community/forums/t/error-fetching-info-from-oauth2-provider/116780/4.