Art & Coop
Art & Coop
`typescript-react-query` has a config named `exposeQueryKeys` to fit your needs https://www.graphql-code-generator.com/plugins/typescript-react-query
Why choosing to union in a single type both camel cased and snake cased interfaces? This introduces a load of errors as typescript can't infer which field is from, requiring...
I for one use `useCamelCase` in my swell setup, but when I try to fetch a product, or a cart for example, I've been flooded with errors. I need to...
Sure, here's an example of error: I'm using SolidJS and `cart?.state.current?` is the result of ```ts export interface CartContextState { current?: Cart | undefined; count: number; } const [state, setState]...
I don't think is solidjs per se, more the combination of strictest tsconfig / eslint. Here's mine tsconfig.json ```json { "compilerOptions": { "target": "ESNext", "module": "ESNext", "moduleResolution": "node", "allowSyntheticDefaultImports": true,...
I followed your hint and now works, but is ugly to override every single method. Hope to see a better implementation in the future.
I don't understand if this is fixed and in the actual (0.16.1) package. Following the example of @manucorporat I have the same error of @emexal-company `[vite] Internal server error: Cannot...
I ended up making something like you suggested, moving the event handler outside the store, and referencing them inside. No need to use useWatch$, which is deprecated
I understand your confusion, because of the naming clash, but when I'm importing, resolvers refers to the file name as stated on the structure of the project. I'm not referencing...
@SaltyAom could you please check @Luk4h answer and confirm this is the way?