// table schema
fileURLs: json("fileURLs").$type<string[]>().notNull(),
const fileURLs: string[];
await db.query.table.findFirst({
where: and(
eq(table.fileURLs, fileURLs),
)
)
// table schema
fileURLs: json("fileURLs").$type<string[]>().notNull(),
const fileURLs: string[];
await db.query.table.findFirst({
where: and(
eq(table.fileURLs, fileURLs),
)
)