Need to Update Multiple records by using Liquibase

Hi Team,

I would like to update multiple records by liquibase script,

I’ve Mongo DB, which having various fileds, from that one of field which is “tasks” having the array type, from the array we have to find records by taskId and priority then we have to update complete record with new one

{
“_id” : ObjectId(“61a594bd7738a0skshs9eb2c”),
“name” : “student reactivation: generic reactivation”,
“requestType” : “status_activate”,
“enabled” : true,
“sourceId” : “inactive”,
“destinationId” : “active”,
“eventId” : “reactivate_student”,
“tasks” : [

    {
        "taskId" : "PARENT_NOTIFICATION",
        "priority" : 3.0
    },
    {
        "taskId" : "UPDATE_STUDENT_PROFILE",
		 "priority" : 2.0,
        "meta" : {
            "status" : "active"
        }
    },
    {
        "taskId" : "STUDENT_NOTIFICATION",
        "priority" : 5.0,
        "meta" : {
            "activity" : "send_mail",
            "variables" : [

            ]
        }
    } 
],
"validators" : [
    "Swim",
    "Work",
    "Study"
],
"operation" : "Account",
"category" : "Student"

}

for example in the above Mongo document if i want to update

{
“taskId” : “UPDATE_STUDENT_PROFILE”,
“priority” : 2.0,
“meta” : {
“status” : “active”
}
},

record from the Tasks list for various documents

Please help me out here