alonmiz
alonmiz
DTDrizzle Team
Created by alonmiz on 5/8/2024 in #help
Trying to create a query - with left join limit 1 and order by
pretty please 🙏
3 replies
DTDrizzle Team
Created by alonmiz on 5/8/2024 in #help
Trying to create a query - with left join limit 1 and order by
i think it can be achieved with lateral join, is this supported? or is there any workaround?
3 replies
TTCTheo's Typesafe Cult
Created by Jaaneek on 4/5/2023 in #questions
My project got pretty slow
having the same issue, i've even narrowed down to where eslint completely chokes
api.audit
// when reaching this line and column, eslint can even shut down from overloading. to be able to continue to get to the actions (mutations, queries)
.search.useQuery({ organizationId: orgId })
api.audit
// when reaching this line and column, eslint can even shut down from overloading. to be able to continue to get to the actions (mutations, queries)
.search.useQuery({ organizationId: orgId })
using TRPC + zod + app router + drizzle does anyone have an idea how to alleviate those crazy performance issues? my eslint config. trying to narrow which plugin is causing the issues i was able to target these 2
extends: [
'plugin:@next/next/recommended',
'plugin:@typescript-eslint/recommended-type-checked',
'next/core-web-vitals',
'prettier',


// causing performance issues
'plugin:@typescript-eslint/stylistic-type-checked',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
],
extends: [
'plugin:@next/next/recommended',
'plugin:@typescript-eslint/recommended-type-checked',
'next/core-web-vitals',
'prettier',


// causing performance issues
'plugin:@typescript-eslint/stylistic-type-checked',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
],
39 replies