Hey! is there way to instead of filtering by one s...
# community-help
s
Hey! is there way to instead of filtering by one serial filter with multiple like
Copy code
await connection.collections(collection).documents()
  .delete({ filter_by: `serial:= ${serial} && type:= ${type}` })
to
Copy code
await connection.collections(collection).documents()
  .delete({ filter_by: `serial:= [${serial1},${serial2}] && type:= ${type}` })