I have Schema
person = {
skill = [{
type: String
}]
name = { type : String}
}
I have a skill array
skill = ['python', 'css']
I want all the people that match at least one skill from the skill array.
$all and $in retrieve only people that match all the skills in the skill array but I want the people that match at least one skill from the skill array.