Obviously this is your project and I only spent 5 minutes looking at the code, but maybe this will be helpful? Feel free to ignore, Iām likely wrong.
`DBEvent` has a `deleted_at` field so I searched the codebase for `deleted_at` (https://github.com/search?q=repo%3ACameri%2Fnostream+deleted_at&type=code).
`EventRepository` sets `deleted_at` when marking an event as deleted via `deleteByPubkeyAndIds`.
But then looking at `findByFilters`, I donāt see anything explicitly adding a `AND WHERE deleted_at IS NULL` segment to the db query.
Iām sure Iām missing something but just throwing out what I see.