I want to filter fields to a document containing DBRef when it's fetched. The target filtering fields is a child document had relation using DBRef. I wanna code like this.
db.User.find(fields=['_id', 'profile._id', 'profile.text'])
The 'profile' field is using DBRef for this example.
Does someone have any idea?