Is this code supported by soda-js, and if so, why am I getting a 500 status code
var identifier = 'fgzt-sd3n'
var op = new soda.Consumer('data.cms.gov', options);
op.query()
.withDataset(identifier)
.where({npi:"in('1598908824','1194758300')"})
.getRows()
.on('success', function(rows){console.log(rows)})
.on('error', function(error){console.log(error)})
}
Also can my list be an array or atleast a string variable maybe like
'in('+strList+')'
where
var strList="'1598908824','1194758300'"