Help us bring you awesomeness

Here is my code if you can point out somethings please? Thank you

import wixData from ‘wix-data’;
$w.onReady(function () {
wixData.query(“Tutors”)
.eq(“subject1”, “Biology”)
.or(
wixData.query(“Tutors”)
.eq(“subject2”, “Biology”)
)
.find()
.then( (results) => {
// what do I do here? filter this way? it is not working.
$w(“#dataset1”).setFilter(wixData.filter()
.eq(“name”, results)
//name is the field in the database I am filtering for
);
});
});