(schemaRootDir: string)
| 18 | } |
| 19 | |
| 20 | export function sqlDirPath(schemaRootDir: string) { |
| 21 | return path.join(schemaRootDir, SQL_DIR) |
| 22 | } |
| 23 | |
| 24 | async function readTypedSqlFiles(typedSqlDirPath: string): Promise<IntrospectSqlInput[]> { |
| 25 | const files = await fs.readdir(typedSqlDirPath) |