()
| 1 | /* eslint-disable @typescript-eslint/no-unused-vars */ |
| 2 | export function sql() { |
| 3 | return { |
| 4 | query: { |
| 5 | products: { |
| 6 | findMany: () => [{ id: 1 }], |
| 7 | }, |
| 8 | }, |
| 9 | select: (cols: string) => ({ |
| 10 | from: (table: string) => [{ id: 1 }], |
| 11 | }), |
| 12 | } |
| 13 | } |