11 lines
377 B
TypeScript
11 lines
377 B
TypeScript
import { dbMain } from "@core/drizzle";
|
|
import { latestVideoSnapshot } from "@core/drizzle/main/schema";
|
|
import { eq } from "drizzle-orm";
|
|
|
|
export const getLatestSnapshot = async (aid: number) =>{
|
|
const result = await dbMain.select().from(latestVideoSnapshot).where(eq(latestVideoSnapshot.aid, aid)).limit(1);
|
|
if (result.length === 0) {
|
|
return null;
|
|
}
|
|
return result[0];
|
|
} |