Building a query with a boolean refiner

What you could do is query the database as a whole and then filter the results array.

Something like this -

wixData.query("DBNAME)
.find()
.then((results)=> {
  let items = results.items
  let filteredData = items.filter(item => item.isSuper = true)
})