MCPcopy Index your code
hub / github.com/drizzle-team/drizzle-orm / select

Function select

drizzle-orm/src/sqlite-core/db.ts:615–615  ·  view source on GitHub ↗
(...args: [])

Source from the content-addressed store, hash-verified

613 getReplica: (replicas: Q[]) => Q = () => replicas[Math.floor(Math.random() * replicas.length)]!,
614): SQLiteWithReplicas<Q> => {
615 const select: Q['select'] = (...args: []) => getReplica(replicas).select(...args);
616 const selectDistinct: Q['selectDistinct'] = (...args: []) => getReplica(replicas).selectDistinct(...args);
617 const $count: Q['$count'] = (...args: [any]) => getReplica(replicas).$count(...args);
618 const $with: Q['with'] = (...args: []) => getReplica(replicas).with(...args);

Callers

nothing calls this directly

Calls 1

selectMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…