Papr does not support the [`$` projection](https://www.mongodb.com/docs/manual/reference/operator/projection/positional/#mongodb-projection-proj.-) syntax: ```ts await Student.find( { semester: 1, grades: { $gte: 85 } }, { projection: { 'grades.$': 1 // this throws a TS error } } ); ```