select.ts — drizzle-orm Source File
Architecture documentation for select.ts, a typescript file in the drizzle-orm codebase. 9 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 52f8175a_fb01_d591_49b7_deb1e5fb5fdc["select.ts"] 02ee7a70_490f_3b80_fa60_d59aaa62cd1d["db.ts"] 52f8175a_fb01_d591_49b7_deb1e5fb5fdc --> 02ee7a70_490f_3b80_fa60_d59aaa62cd1d caa15051_4c2c_cd8b_fcc3_001b783b7336["tables.ts"] 52f8175a_fb01_d591_49b7_deb1e5fb5fdc --> caa15051_4c2c_cd8b_fcc3_001b783b7336 d929dcac_4d3c_8543_2323_07023b291633["cities"] 52f8175a_fb01_d591_49b7_deb1e5fb5fdc --> d929dcac_4d3c_8543_2323_07023b291633 af8d5a1e_788a_d02e_b32c_8fb7cd129ff9["users"] 52f8175a_fb01_d591_49b7_deb1e5fb5fdc --> af8d5a1e_788a_d02e_b32c_8fb7cd129ff9 25b05299_f48f_bceb_01ca_1343d330a8f7["utils.ts"] 52f8175a_fb01_d591_49b7_deb1e5fb5fdc --> 25b05299_f48f_bceb_01ca_1343d330a8f7 95e9c114_0f9a_eb52_1007_20f44090ac4b["alias.ts"] 52f8175a_fb01_d591_49b7_deb1e5fb5fdc --> 95e9c114_0f9a_eb52_1007_20f44090ac4b 076448f5_e30d_7700_bbe9_f5d1e76b579a["index.ts"] 52f8175a_fb01_d591_49b7_deb1e5fb5fdc --> 076448f5_e30d_7700_bbe9_f5d1e76b579a 5c46beaf_8b59_d2e3_def3_8af6daf1fccd["index.ts"] 52f8175a_fb01_d591_49b7_deb1e5fb5fdc --> 5c46beaf_8b59_d2e3_def3_8af6daf1fccd be483a7f_d5d7_7a9b_9a13_44a4a6aafbbd["sql.ts"] 52f8175a_fb01_d591_49b7_deb1e5fb5fdc --> be483a7f_d5d7_7a9b_9a13_44a4a6aafbbd style 52f8175a_fb01_d591_49b7_deb1e5fb5fdc fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import type { Equal } from 'type-tests/utils.ts';
import { Expect } from 'type-tests/utils.ts';
import { alias } from '~/gel-core/alias.ts';
import {
boolean,
// gelMaterializedView,
type GelSelect,
type GelSelectQueryBuilder,
gelTable,
// gelView,
integer,
QueryBuilder,
text,
} from '~/gel-core/index.ts';
import {
and,
arrayContained,
arrayContains,
arrayOverlaps,
between,
eq,
exists,
gt,
gte,
ilike,
inArray,
isNotNull,
isNull,
like,
lt,
lte,
ne,
not,
notBetween,
notExists,
notIlike,
notInArray,
notLike,
or,
} from '~/sql/expressions/index.ts';
import { type SQL, sql } from '~/sql/sql.ts';
import { db } from './db.ts';
import { cities, classes, users } from './tables.ts';
const city = alias(cities, 'city');
const city1 = alias(cities, 'city1');
const leftJoinFull = await db.select().from(users).leftJoin(city, eq(users.id, city.id));
{
await db.select().from(users).leftJoin(city, eq(users.id, city.id));
}
Expect<
Equal<
{
users_table: typeof users.$inferSelect;
city: typeof cities.$inferSelect | null;
// ... (1252 more lines)
Domain
Subdomains
Source
Frequently Asked Questions
What does select.ts do?
select.ts is a source file in the drizzle-orm codebase, written in typescript. It belongs to the DrizzleORM domain, QueryBuilders subdomain.
What functions are defined in select.ts?
select.ts defines 5 function(s): dynamic, mapFunkyFuncResult, paginated, startIt, withFriends.
What does select.ts depend on?
select.ts imports 9 module(s): alias.ts, cities, db.ts, index.ts, index.ts, sql.ts, tables.ts, users, and 1 more.
Where is select.ts in the architecture?
select.ts is located at drizzle-orm/type-tests/geldb/select.ts (domain: DrizzleORM, subdomain: QueryBuilders, directory: drizzle-orm/type-tests/geldb).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free