@alex58407 Since your collection is only for followers, you don’t need a filter, all you need is count().
This will give you the number of items in the collection:
wixData.query("Followers")
.count()
.then( (num) => {
let numberOfItems = num;
$w("#text12").text = "Followers " + num;
} )