Reputation: 437
All of my mongoose blog posts have a array of tags, is there a way to fetch all unique tags from those arrays?
Blog Schema Excerpt
{
...
tags: {
type: [{type:String,lowercase:true}],
default: [],
required: true
}
...
}
Upvotes: 1
Views: 86