When I'm calling:
const user = await app.logIn(creds);
const mongodb = user.mongoClient("mongodb-atlas");
from react-native in an attempt to connect to MongoDB Atlas (app
is an instance of a Realm App) I'm getting the following error:
TypeError: user.mongoClient is not a function
The user is not null and I can call user.logOut
successfully. I'm not sure where to from here. Any ideas?
Thanks in advance!