Created
July 11, 2023 01:26
-
-
Save mrlynn/bca1b8490e7ce250627e4f4d634f25b8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
$match: { | |
rated: "TV-PG", | |
}, | |
}, | |
{ | |
$match: | |
/** | |
* query: The query in MQL. | |
*/ | |
{ | |
year: { | |
$gt: 1965, | |
}, | |
}, | |
}, | |
{ | |
$project: { | |
title: 1, | |
"tomatoes.viewer.rating": 1, | |
}, | |
}, | |
{ | |
$group: { | |
_id: "avgRating", | |
averageViewerRatingOfTVPG: { | |
$avg: "$tomatoes.viewer.rating", | |
}, | |
}, | |
}, | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment