drizzle-orm icon indicating copy to clipboard operation
drizzle-orm copied to clipboard

[FEATURE]: Count & Spread

Open michealroberts opened this issue 1 year ago • 0 comments

Describe what you want

Count and spread it, please. Like this:

const results = db
    .select({ count: count(), ...users._.config.columns })
    .from(users)

But more like this:

const results = db
    .select({ count: count(), ...users.columns() })
    .from(users)

michealroberts avatar May 10 '24 16:05 michealroberts