Max Wu

Results 3 comments of Max Wu

Hi @anice1, Thanks for reaching out! Are you trying to test the SDK? If so, you can follow these steps, starting from the repo's root directory: 1. `cd sdk` 2....

to work around this for now, either create a `customJsonb` type like this: ```javascript import { customType } from "drizzle-orm/pg-core"; const jsonb = customType({ dataType() { return `jsonb`; }, fromDriver(value:...

I agree that the alias mismatch is strange, but here's something you can do that's less hacky in the meantime: ```javascript const activities = await drizzle.query.agentActivity.findMany({ where: (agentActivityTable) => and(...