Currently, ``PiccoloCRUD`` (and hence ``FastAPIWrapper``) allow you to filter by the row ID, but you can't filter by a list of IDs. For example: ``` # Currently supported: DELETE /api/tables/movies?id=1 # Proposed: DELETE /api/tables/movies?id=1,2,3,4,5 ``` This would be a very useful feature, and would make bulk deletes more efficient.