handleSerializedSQL() — astro Function Reference
Architecture documentation for the handleSerializedSQL() function in index.ts from the astro codebase.
Entity Profile
Dependency Diagram
graph TD 286a245d_f46c_69e1_f4fd_ea9cbafcddb6["handleSerializedSQL()"] 80ef4dc8_c183_c77f_e09f_d40d9a6ca694["index.ts"] 286a245d_f46c_69e1_f4fd_ea9cbafcddb6 -->|defined in| 80ef4dc8_c183_c77f_e09f_d40d9a6ca694 3099e947_8164_4013_6b72_f4b301ca60d1["columnMapper()"] 3099e947_8164_4013_6b72_f4b301ca60d1 -->|calls| 286a245d_f46c_69e1_f4fd_ea9cbafcddb6 style 286a245d_f46c_69e1_f4fd_ea9cbafcddb6 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
packages/db/src/runtime/index.ts lines 133–138
function handleSerializedSQL<T>(def: T | SerializedSQL) {
if (isSerializedSQL(def)) {
return sql.raw(def.sql);
}
return def;
}
Domain
Subdomains
Defined In
Called By
Source
Frequently Asked Questions
What does handleSerializedSQL() do?
handleSerializedSQL() is a function in the astro codebase, defined in packages/db/src/runtime/index.ts.
Where is handleSerializedSQL() defined?
handleSerializedSQL() is defined in packages/db/src/runtime/index.ts at line 133.
What calls handleSerializedSQL()?
handleSerializedSQL() is called by 1 function(s): columnMapper.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free