Set Values of all checkboxes in a listView

I want to set the values of all my checkboxes in a listView back to false when a query runs. How do I do this please?

Hi @taj, create a js query and run this after the query you mention:

for (let i = 0; i < listView1.data.length; i++) {
  checkbox1[i.toString()].setValue(false)
}