Is it possible to do this transformation using `db.query`?
Hello! Can I get rid of other columns and keep only tag?
to get:
to get:

return ctx.db.query.bookmark.findMany({
with: {
tags: {
with: {
tag: {
columns: { id: true, name: true },
},
},
},
},
});{
...
tags: [
{ id: '..', name: 'terminal' },
],
}