I am working on an mobile app with react native and Atlas Realm + MongoDB backend.
Main functionality should be to share and sync a user generated document between other users based on invitation.
So i wrote a backend function triggered after signup that creates the document to share and stores the id in user customdata.
Like recommended in the realm docs i tried to call user.refreshCustomData() in react native to get grab the id. But the function "refreshCustomData" does not exists on the user object.
Im wondering if refreshCustomData has been removed and how i could resolve that now.
Thanks for your help!