# SoftDeleteMany

```typescript
await this.examplesRepository.softDeleteMany(
  [
    { id: 1 },
    { id: 2 },
    { id: 3 },
    { id: 4 },
    { id: 5 },
  ],
  trx,
);

// exemplo de invalidação
```

***
