all() — drizzle-orm Function Reference
Architecture documentation for the all() function in session.ts from the drizzle-orm codebase.
Entity Profile
Dependency Diagram
graph TD 90a0eb88_3dba_090b_ff5e_23898b1af096["all()"] 0b6e39dc_7591_588c_346e_a99fa74bc8fe["NeonHttpPreparedQuery"] 90a0eb88_3dba_090b_ff5e_23898b1af096 -->|defined in| 0b6e39dc_7591_588c_346e_a99fa74bc8fe style 90a0eb88_3dba_090b_ff5e_23898b1af096 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
drizzle-orm/src/neon-http/session.ts lines 113–124
all(placeholderValues: Record<string, unknown> | undefined = {}): Promise<T['all']> {
const params = fillPlaceholders(this.query.params, placeholderValues);
this.logger.logQuery(this.query.sql, params);
return this.clientQuery(
this.query.sql,
params,
this.authToken === undefined ? rawQueryConfig : {
...rawQueryConfig,
authToken: this.authToken,
},
).then((result) => result.rows);
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does all() do?
all() is a function in the drizzle-orm codebase, defined in drizzle-orm/src/neon-http/session.ts.
Where is all() defined?
all() is defined in drizzle-orm/src/neon-http/session.ts at line 113.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free