Can anyone help how can I add another filter in following code
function getBlogNewsByCountryInternalId(countryInternalId){
var results = nlapiSearchRecord("customrecorddc_blog_post",null,
[
["custrecorddealer_country.custrecord_as_relationcountrydccat_count","anyof",[countryInternalId]]
],
[
new nlobjSearchColumn("id").setSort(false),
new nlobjSearchColumn("custrecorddetail_description")
]
);//please note that you need to edit the list of columns.
return results;//you can even map them if you prefer
}