Let's say I have an Array of Objects
chars: [{'name':'tom','age':2},{'name':'jerry','age':3}]
What's the aggregation to get
chars: ['tom','jerry'] or chars: 'tom,jerry' ?
I know I can get
chars: [{'name':'tom'},{'name':'jerry'}] by $project on chars.name, but I want a more compact way to see what I have in the values since the keys are uninteresting.