Just to give an example of @Stennie's solution.
Given the following text in Mongo:
{ _id: 123456, Items: [ { Name: "Item1", Color : "Red" }, { Name: "Item2", Color : "Blue" }, { Name: "Item3", Color : "Red" } ] }
In MongueVue, by right-clicking on a collection and selecting Aggregate , you can apply a pipeline such as the following to smooth out elements, filter only red elements and re-project only element names starting from this document:
{ $match: {_id: 123456}}, { $unwind: '$Items'}, { $match: {'Items.Color': 'Red'}}, { $project: {_id: 0, Name : '$Items.Name'}}

source share