Hello! Can I get rid of other columns and keep only tag? ```ts return ctx.db.query.bookmark.findMany({ with: { tags: { with: { tag: { columns: { id: true, name: true }, }, }, }, }, }); ``` to get: ```ts { ... tags: [ { id: '..', name: 'terminal' }, ], } ```