How can we update a value for 'Enabled' field in Configuration at index 1 in Configurations Array in mongo database ?
Below is my Json data.
{
"Configurations" : [
{
"Configuration" : {
"Host" : "",
"Port" : "1521",
"Enabled" : "true"
}
},
{
"Configuration" : {
"Host" : "",
"Port" : "",
"Enabled" : "true"
}
}
],
"Description" : "Check Database Server"
}
Is there any way to update value for Enabled field in Configuration ??
How can we update a value for 'Enabled' field in Configuration at index 1 in Configurations Array in Mongodba ?
I want to update Enabled field value of 2nd configuration in Configurations Array.