relay-mongodb-connection
relay-mongodb-connection copied to clipboard
Remove .lean() from the mongoose query?
Hi, the query.lean() disables any mongoose virtuals, populations etc. set in the schema, so could this be removed as there is no way to disable it?
Then if you did want lean responses you could include it in the query...
return connectionFromMongooseQuery(User.find({}).lean(),args)