in my database, all tables have a boolean column "active" which is used to know if the row should be returned or not on the query.
As we use TypeORM as our back-end ORM, Is it possible to have a global statement/clause that is "concatenated" on every query made by TypeORM, like:
WHERE column.active = true
So, like this, the rows with the column active with 0 as a value, don't return on TypeORM queries during the main application flow, instead of rewriting it on every queryBuilder or repositories premade queries like "find" or "findOrfail" where we dont even write anything.