Which operation is used to select specific documents?
{ $match: {find obj} }
Which operation is used to sort documents?
{ $sort: {attr: 1/-1} }
Which operation is used to add fields to documents?
{ $addFields: {fieldName: ‘$_attr’} }
Which operation is used to specify the number of documents to return?
{$limit: val}
Which operation is used to remove attributes from documents?
{ $project: {attr: 0} }
Which operation is used to transform documents into the first normal form?
{ $unwind: ‘$attr of focus’ }
Which operation is used to group documents when performing operations?
{ $group: {attrName: groupfunctions} }
What are some commonly used group functions?