Hi, I have a list of IDs as a parameter and I wanted to search my customer records and display the IDs which are there in my record. What operator should i use? I tried 'anyof' but it is just giving me one of the member of the list. var mySearch = search.create({ type: search.Type.CUSTOMER, columns: [{ name: 'internalid' }], filters:[ ['internalid','within', [1234,1933,12457,368]] ] }); mySearch.run().each(function(result) { var id = result.getValue({ name: 'internalid' }); console.log(id); });