Nedim Arabacı

Results 55 comments of Nedim Arabacı

Can you share the trimmed versions of the 2 specs? So I can test.

I think we should drop this, if we go on this path, we should consider Gitlab and other VSCs and their self-hosted versions also. :(

Ok then 😅, I have hosted Gitlab, I can invite you in a project :)

hi @mhaagens it is currently hardcoded https://github.com/fabien0102/openapi-codegen/blob/13ca9b35ab0bbd363946baf4a015b3e6d317f728/plugins/typescript/src/generators/generateReactQueryComponents.ts#L146 but, I think we can expose it to configuration for better DX. Something like `fetchFnPrefix` _This is also kinda related with https://github.com/fabien0102/openapi-codegen/issues/80_

But, I can offer you an ugly trick to do that without waiting for the implementation. on `openapi-codegen.config.ts` file after all the generation has done. You can read the generated...

@bcucumber I am also curious, can you provide some use cases? It looks interesting.

Hi, @B4rtware can you share your fetcher.ts if it is not private?

I think I had some similar issues about that, and came up with a workaround for something like this in my project. But I have to mention, it was a...

Hi @ANDREYDEN, actually it does not totally rely on React Query, *(for example you can generate just types or just fetchers, or you can create your own custom generators, etc)*....

@SeanCondon a quick example for you: ```typescript // definition const createApiKey = useUserCreateApiKeyMutation({ onSuccess: data => { alert("Api Key created!") }, }); ``` ```typescript createApiKey.mutate({ pathParams: { id: user.id }...