[{
"forms": [{
"id": "f1",
"title": "Form1",
"update_history": [{
"version": "A",
"updated_at": "2016-12-10 12:12:10"
}, {
"version": "B",
"updated_at": "2017-01-01 05:17:19"
}, {
"version": "C",
"updated_at": "2017-02-07 03:22:39"
}]
},{
"id": "f2",
"title": "Form2",
"update_history": [{
"version": "B",
"updated_at": "2016-12-10 12:12:10"
}, {
"version": "C",
"updated_at": "2017-01-01 05:17:19"
}, {
"version": "D",
"updated_at": "2017-02-07 03:22:39"
}]
},{
"id": "f3",
"title": "Form13",
"update_history": [{
"version": "A",
"updated_at": "2016-12-10 12:12:10"
}, {
"version": "E",
"updated_at": "2017-01-01 05:17:19"
}, {
"version": "F",
"updated_at": "2017-02-07 03:22:39"
}]
}]
}]
I have above data stored in Dynamo-DB table. forms object is parent object. There are 3 list data in update_history nested object. I want all the List data which have version A. Please suggest me query for the same.