You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, can be added new method for get bached stream with raw queries like:
const stream = await db.$cursorStreamRaw`
select sum(amount) from account
group by "userId"
having sum(amount) > 0
`
for await (const value of stream){
console.log(value.sum)
}`
The text was updated successfully, but these errors were encountered:
Hi, can be added new method for get bached stream with raw queries like:
The text was updated successfully, but these errors were encountered: