Rijk van Zanten

Results 433 comments of Rijk van Zanten

Thanks @licitdev! > Records from directus_revisions for schema changes in SQLite are not deleted when the corresponding directus_activity record is deleted as PRAGMA foreign_keys has to be temporarily disabled. Ayyyyy...

> How does this impact performance? If you hit your instance with 1,000 requests all at once and each of those creates activity/revisions its going to call truncate a thousand...

Note to self: Delete is most likely too resource intensive to pull off. Might have to look at a temp table + copy + truncate approach

> Let me be that guy: Any updates? 😅 Soon! 😬

FWIW this is all controlled through env vars, this is not the type of thing that's just hardcoded in without any way to control it 🙂 You could always setup...

@hanneskuettner Are you [on Discord](https://directus.chat) by chance? Might help out for some other PRs 🙂

> Is there any way this could be caught in a test or is that probably more involved as it requires a full blackbox e2e test? The current blackbox e2e...

`Subscription` is a reserved type name in GraphQL, which in turn bricks the graphql endpoint and thus insights when your collection is named `Subscription` :| We'll have to figure out...

I have my concerns around exporting the type with a dependency that may or may not exist: ```ts import { DirectusUsers } from '@directus/sdk'; ``` Especially seeing that type is...

> Can you elaborate on how you envision this? Not directly sure how "plugins" figure in, do want them all moved into a single package of "plugins" or want to...