Axat
Axat
> For queries using `with` I made these simple helper types: > > ```ts > import type { BuildQueryResult, DBQueryConfig, ExtractTablesWithRelations } from 'drizzle-orm'; > import * as schema from...
> @akashdevcc can you please post your `InferResultType`? Thanks I now noticed, I made a mistake, instead of `InferQueryModel`, I used `InferResultType`. I have corrected it now. @efstathiosntonas So now,...
@panzacoder Will you be able to add storybook support in [PLFX Stack](https://github.com/panzacoder/plfx-stack) in the expo app too? I am trying to setup it with my project, but it doesn't seem...
@panzacoder I think my issue is related to `pnpm` and not `nativewind`, as mentioned in [this github issue](https://github.com/marklawlor/nativewind/issues/734#issuecomment-1898824306). Anyway, I'll try to replicate this in your repo, and check if...
@panzacoder True. But I think going forward most projects will be supporting `pnpm` to the fullest. As I have seen most projects recommends `pnpm` as preferred package manager in their...
@panzacoder Also, I tested the `config.resolver.disableHierarchicalLookup = true` with my project setup, the storybook is now able to apply styles on the components, coming from separate `components` package. Although, I...
@omarkhatibco I think this patch is missing one change from @andrewgeorgemitchell's gist for [these two lines](https://github.com/sachinraja/trpc-playground/blob/main/packages/trpc-playground/src/zod-resolve-types.ts#L22-L23) having `if else` condition: In the patch, instead of the below code: ```js if...
@Nick-Lucas @ben-xD @libasoles Here is my effort on achieving "dependency injection" in tRPC using nestjs. https://github.com/akashdevcc/zero-stack Everything from the creating the `AppRouter` and `createContext` up to the `services` are injected...
@sbue Please check if you are able to resolve the issue of property collision typescript error
@ben-xD Your approach is good. It is suitable for small-scale projects but for a large-scale projects where you need to inject hundreds of dependencies coming from serveral modules, you are...