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