redux-toolkit icon indicating copy to clipboard operation
redux-toolkit copied to clipboard

The official, opinionated, batteries-included toolset for efficient Redux development

Results 422 redux-toolkit issues
Sort by recently updated
recently updated
newest added

Accidently closed PR, reopening it here.

OpenAPI spec: ```json "/api/Avatar": { "post": { "tags": [ "Avatar" ], "requestBody": { "content": { "multipart/form-data": { "schema": { "type": "object", "properties": { "file": { "type": "string", "format": "binary" }...

RTKQ-Codegen

Hi everybody. I found an error inside the StateFromReducerMapObject type. It plays back when I use async reducers. For example My state schema: ` interface SyncStateSchema { counter: CounterSchema; user:...

**Description** I am trying to understand the right approach. Can you please give me an advice? I am using a `query` enpoint with `merge` feature to "paginate" and keep all...

enhancement
question
rtk-query

I have a simple endpoint `getData` https://stackblitz.com/edit/react-ts-7vwdac?file=App.tsx ```ts const delay = () => { return new Promise((resolve) => { setTimeout(resolve, 500); }); }; let count = 0; const api =...

rtk-query

I am trying to generate api with `npx @rtk-query/codegen-openapi ./src/rqStore/apiConfigs/userConfig.ts` but I have error: > Generating ../hooks/userApi.ts > SyntaxError: Type expected. (829:30) > 827 | fleetNote4?: string; > 828 |...

I have multiple .yml files with api documentation. Few of them uses schemas refs with another files. Rest of them have refs only within one file. With the api docs...

Unless I'm missing something, there's a scenario that's not really possible to cover well using the current tag system. I want to provide a tag to a query endpoint that...

We have encountered an issue with valid swagger files containing refs like this produce response type of `unknown`. ```yaml responses: "200": content: application/json;charset=utf-8: schema: $ref: '#/components/schemas/ProductProjections' description: Current projections for...

I have a use case where some header values are dependent on the args passed to my query. Could we pass `arg` into the `prepareHeaders` function [here](https://github.com/reduxjs/redux-toolkit/blob/ed9fc19027a31afee2234dea54fb36c8beef46ad/packages/toolkit/src/query/fetchBaseQuery.ts#L235)? Happy to work...