@pierrelouis95
Look… You will get from the filtering-process some RESULTS right?
You should make a console.log and take a carefully look onto the given results.
Then you will understand what to do.
Here you will get the FILTERED-RESULTS.
wixData("derniereSeance").find()
.eq(REFERENCE, VALUE) //or .contains() .... or .hasSome() ...
.find()
.then( (results) => {
then you make some console.logs…
console.log(results)
console.log(results.items)
console.log(results.items[0].title)
console.log(results.items[0].bw)
console.log(results.items[1].title)
console.log(results.items[1].bw)
console.log(results.items[2].title)
console.log(results.items[2].bw)
In this example you have a for-loop which loops trogh all items.
$w.onReady(function () {
$w("#dataset1").onReady(() => {
$w("#repeater3").forEachItem(($item, itemData, index) => {
console.log(itemData)
console.log(itemData.bw)
if (itemData.bw==="true") {$item("#vectorImage3").hide();}
else {$item("#vectorImage3").show();}
})
})
});
Now it’s on you —> turn on your brain 
i am sure you will find the solutoin!
What do you have to change here??? Think about the looping process!
{$item("#vectorImage3").hide();}
Something like… ???
{$item("#myElementID"+index).hide();}
What is that INDEX-THING ??? Did you already analyse it, by using some console.log? ----> console.log(index) ???
You should work more with CONSOLE and RESULTS and take a closer look what happens! Then you will be able to see all the process! And when you will be to see what happens, then you will be to understand what to do in the next step!
I do it here all theoreticaly without seeing your project or code.
Good luck and happy coding!
And do not forget to rate my answer 