@cbnsndwch/zero-sources

ProjectStage.$project property

Home > @cbnsndwch/zero-contracts > ProjectStage > $project

ProjectStage.$project property

MongoDB projection specification.

Can contain: - Inclusion: { field: 1 } - include this field - Exclusion: { field: 0 } - exclude this field - Field reference: { newField: '$existingField' } - rename/reference field - Operators: { field: { $concat: [...] } } - computed values

Note: Cannot mix inclusion and exclusion (except for _id which can always be explicitly excluded)

Signature:

$project: Projection<T>;

How was this page?