次のようなデータ構造があります。
{
students: [
{ name: "john", school: 102, age: 4 },
{ name: "jess", school: 102, age: 11 },
{ name: "jeff", school: 108, age: 7 }
]
}
{
students: [
{ name: "ajax", school: 100, age: 7 },
{ name: "achilles", school: 100, age: 8 },
]
}
{
students: [
{ name: "bob", school: 100, age: 7 },
{ name: "manuel", school: 100, age: 8 },
]
}
7歳の生徒を101校に変更するように書類を更新したいのですが、これを1回の操作で行う方法はありますか?