collection Status:
[
{
_id: '1',
StatusName: '....',
Comments: [
{
id_: '2',
CommentName: '.....',
Likes: ['user1', 'user2', 'user3']
},
{
id_: '3',
CommentName: '.....',
Likes: ['user2', 'user3']
}
]
},
{
_id: '3',
StatusName: '....',
Comments: [
{
id_: '4',
CommentName: '.....',
Likes: ['user1', 'user2', 'user3', 'user4']
},
{
id_: '5',
CommentName: '.....',
Likes: ['user1', 'user3']
}
]
}
]
I want count Like of Comment _id = '2' and Status _id: '1'