Search/Filter for Multiple Item Reference Field

hey
its my first day with corvid this code worked fine for me

wixData.query( “dataset1” )
.contains( ‘nameoffield1’ , ‘value1’)
.or(wixData.query( “dataset1” )
.contains( ‘nameoffield1’ , ‘value2’))
.find()
.then( (results) => {

    // add here code that link repeater to results.items  
//something like  $w( "#chatlist" ).data= results.items; 
}); 

HOPE IT WILL HELP SOMEONE