createApi
The main point where you will define a service to use in your application.
Parameters
createApi accepts a single configuration object parameter with the following options:
baseQuery
entityTypes
Specifying entity types is optional, but you should define them so that they can be used for caching and invalidation. When defining an entity type, you will be able to add them with provides and invalidate them with invalidates when configuring endpoints.
reducerPath
The reducerPath is a unique key that your service will be mounted to in your store. If you call createApi more than once in your application, you will need to provide a unique value each time. Defaults to api.
serializeQueryArgs
Accepts a custom function if you have a need to change the creation of cache keys for any reason. Defaults to:
endpoints
Endpoints are just a set of operations that you want to perform against your server. You define them as an object using the builder syntax. There are two basic endpoint types: query and mutation.
Anatomy of an endpoint
query(required)queryis the only required property, and can be either astringor anobjectthat is passed to yourbaseQuery. If you are using fetchBaseQuery, this can be astringor an object of properties inFetchArgs. If you use your own custombaseQuery, you can customize this behavior to your liking
transformResponse(optional)- A function to manipulate the data returned by a query or mutation
- Unpack a deeply nested collectiontransformResponse: (response) => response.some.nested.collection;Normalize the response datatransformResponse: (response) =>response.reduce((acc, curr) => {acc[curr.id] = curr;return acc;}, {});
provides(optional)- Used by
queriesto provide entities to the cache - Expects an array of entity type strings, or an array of objects of entity types with ids.
['Post']- equivalent to 2[{ type: 'Post' }]- equivalent to 1[{ type: 'Post', id: 1 }]
- Used by
invalidates(optional)- Used by
mutationsfor cache invalidation purposes. - Expects the same shapes as
provides
- Used by
onStart,onErrorandonSuccess(optional)- Can be used in
mutationsfor optimistic updates. - signaturesfunction onStart(arg: QueryArg, mutationApi: MutationApi<ReducerPath, Context>): void;function onError(arg: QueryArg, mutationApi: MutationApi<ReducerPath, Context>, error: unknown): void;function onSuccess(arg: QueryArg, mutationApi: MutationApi<ReducerPath, Context>, result: ResultType): void;
- Can be used in
How endpoints get used
When defining a key like getPosts as shown below, it's important to know that this name will become exportable from api and be able to referenced under api.endpoints.getPosts.useQuery(), api.endpoints.getPosts.initiate() and api.endpoints.getPosts.select(). The same thing applies to mutations but they reference useMutation instead of useQuery.
Transforming the data returned by an endpoint before caching
In some cases, you may want to manipulate the data returned from a query before you put it in the cache. In this instance, you can take advantage of transformResponse.
By default, the payload from the server is returned directly.
To change it, provide a function that looks like:
Return value
reducerPathreducermiddlewareendpoints- [endpointName]
internalActionsutilinjectEndpointsusePrefetchAuto-generated hooks
middleware
This is a standard redux middleware and is responsible for things like polling, garbage collection and a handful of other things. Make sure it's included in your store.
reducer
A standard redux reducer that enables core functionality. Make sure it's included in your store.
endpoints returned by createApi
initiate
React Hooks users will most likely never need to use these in most cases. These are redux action creators that you can dispatch with useDispatch or store.dispatch().
Usage of actions outside of React Hooks
When dispatching an action creator, you're responsible for storing a reference to the promise it returns in the event that you want to update that specific subscription. Also, you have to manually unsubscribe once your component unmounts. To get an idea of what that entails, see the Svelte Example or the React Class Components Example
select
select is how you access your query or mutation data from the cache. If you're using Hooks, you don't have to worry about this in most cases. There are several ways to use them:
hooks
Hooks are specifically for React Hooks users. Under each api.endpoint.[endpointName], you will have useQuery or useMutation depending on the type. For example, if you had getPosts and updatePost, these options would be available:
action matchers
These are action matchers for each endpoint to allow you matching on redux actions for that endpoint - for example in slice extraReducers or a custom middleware. Those are implemented as follows:
Auto-generated Hooks
React users are able to take advantage of auto-generated hooks. By default, createApi will automatically generate type-safe hooks (TS 4.1+ only) for you based on the name of your endpoints. The general format is use(Endpointname)(Query|Mutation) - use is prefixed, the first letter of your endpoint name is capitalized, then Query or Mutation is appended depending on the type.
internalActions
danger
These may change at any given time and are not part of the public API for now
updateSubscriptionOptions: ActionCreatorWithPayload<{ endpoint: string; requestId: string; options: SubscriptionOptions; queryCacheKey: QueryCacheKey }, string>;queryResultPatched: ActionCreatorWithPayload<{ queryCacheKey: QueryCacheKey, patches: Patch[]; }, string>removeQueryResult: ActionCreatorWithPayload<{ queryCacheKey: QueryCacheKey }, string>unsubscribeQueryResult: ActionCreatorWithPayload<{ queryCacheKey: QueryCacheKey, requestId: string }, string>,unsubscribeMutationResult: ActionCreatorWithPayload<MutationSubstateIdentifier, string>,prefetchThunk(endpointName, args, options: PrefetchOptions) => ThunkAction<void, any, any, AnyAction>
util
Both of these utils are currently used for optimistic updates.
patchQueryResult
<EndpointName extends QueryKeys<Definitions>>(endpointName: EndpointName,args: QueryArgFrom<Definitions[EndpointName]>,patches: Patch[]) => ThunkAction<void, PartialState, any, AnyAction>updateQueryResult
<EndpointName extends QueryKeys<Definitions>>(endpointName: EndpointName,args: QueryArgFrom<Definitions[EndpointName]>,updateRecicpe: Recipe<ResultTypeFrom<Definitions[EndpointName]>>) => ThunkAction<PatchCollection, PartialState, any, AnyAction>
injectEndpoints
See Code Splitting
keepUnusedDataFor
Defaults to 60 (this value is in seconds). This is how long RTK Query will keep your data cached for after the last component unsubscribes. For example, if you query an endpoint, then unmount the component, then mount another component that makes the same request within the given time frame, the most recent value will be served from the cache.