Krishnamoorthy
My feedback
1 result found
-
16 votes
An error occurred while saving the comment Krishnamoorthy supported this idea ·
1 result found
Please sign in to leave feedback
Please sign in to leave feedback
No results.
Clear search results
I have almost similar requirement.
my document looks like this
{
"_id": "123",
"name": "abc",
"programmingLanguage": [
{
"id": 1,
"language": "Rust"
},
{
"id": 2,
"language": "Python"
}
]
}
Need to match only "Python" and return the result like this
{
"_id": "123",
"name": "abc",
"programmingLanguage": [
{
"id": 2,
"language": "Python"
}
]
}