Redux RTK Query: getDefaultMiddleware is not a function

Where is getDefaultMiddleware coming from? I'm reading the docs and it seems to magically appear within configure store. While that's great and all, it didn't find its way into my store, and well ... since there's no import path for this function and I have no idea how to approach this problem, I could use some guidance.

rtk version: "@reduxjs/toolkit": "^1.6.1",

tldr;

getDefaultMiddleware() doesn't exist in my store + I haven't found anything useful in the docs yet regarding it.

here is the error I get:

enter image description here

here is my store.ts

import { Action, configureStore, ThunkAction } from '@reduxjs/toolkit';
import { setupListeners } from '@reduxjs/toolkit/query';
import { myApi } from './services/api';
import authorReducer from './slices/authorSlice';
import transcriptReducer from './slices/transcriptSlice';
export const store = configureStore({ reducer: { [myApi.reducerPath]: myApi.reducer, middleware: (getDefaultMiddleware) => // "This expression is not callable." getDefaultMiddleware().concat(myApi.middleware), author: authorReducer, transcript: transcriptReducer, },
});
setupListeners(store.dispatch);
// Infer the `RootState` and `AppDispatch` types from the store itself
export type RootState = ReturnType<typeof store.getState>;
export type AppDispatch = typeof store.dispatch;
export type AppThunk<ReturnType = void> = ThunkAction< ReturnType, RootState, unknown, Action<string>
>;

here is my api.ts

import { createApi, fetchBaseQuery } from '@reduxjs/toolkit/query/react';
const apiEndpoint ='
export const myApi = createApi({ reducerPath: 'myApi', baseQuery: fetchBaseQuery({ baseUrl: apiEndpoint }), endpoints: builder => ({ getFileById: builder.query<any, { id: string; fileId: string }>({ query: arg => { const { id, fileId } = arg; return `/some/endpoint/with/two/${id}/pathvariables/${fileId}`; }, }), }),
});
// RTK Query will automatically generate hooks for each endpoint query
export const { useGetFileByIdQuery } = myApi;
3

3 Answers

Answer:

I had my middleware defined inside of the reducer: { ... }. I needed to move it outside of that reducer object. Problem solved.

export const store = configureStore({ reducer: { [myApi.reducerPath]: myApi.reducer, author: authorReducer, transcript: transcriptReducer, }, middleware: getDefaultMiddleware => getDefaultMiddleware().concat(myApi.middleware),
});
2

Dont forget to call getDefaultMiddleware like this getDefaultMiddleware() then say .concat(myApi.middleware) or you will get same error.

export const store = configureStore({ reducer: { [myApi.reducerPath]: myApi.reducer, author: authorReducer, transcript: transcriptReducer, }, middleware: getDefaultMiddleware => getDefaultMiddleware().concat(myApi.middleware),
}); 

Mine worked this way as I was using Redux persist:

const rootReducer = combineReducers({ user:userSlice, fetchUsers:fetchUserSlice, [MyPostApi.reducerPath]:MyPostApi.reducer,
}) const persistConfig = { key:'zomatostore', version:1, storage, } const persistedReducer = persistReducer(persistConfig, rootReducer)
export const store = configureStore({ reducer:persistedReducer, middleware:getDefaultMiddleware => getDefaultMiddleware().concat(MyPostApi.middleware)
});

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge that you have read and understand our privacy policy and code of conduct.

You Might Also Like