here is the custom fields doc for relational query builder: https://orm.drizzle.team/docs/rqb#include-custom-fields i would like to have an "extra" field in my query that is generated via plain typescript, not sql. so, something like:
how can i do this while still preserving typing, concise code etc. that drizzle usually provides? do i really need to iterate over all this and do Object.assign (if so, how would i still ensure the data is typed?) or is there a better way?