I have a small problem with my mongoose schema, I'm using select: false in some fields of my Schemas to prevent some fields to be shown in the response, this is obviously common.
Now, the problem is, I need to select the entire document again, but if I try to do .select("+field_a +field_b +field_c +field_d [...] +field_n" it will eventually be problematic, I will need to add a +field_xyz in every single place I need the entire document.
Is there any way to select the entire document ignoring the select: false?