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
The base query used by each endpoint if no queryFn
option is specified. RTK Query exports a utility called fetchBaseQuery as a lightweight wrapper around fetch
for common use-cases.
entityTypes
An array of string entity type names. 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 provide 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
summary 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)query
is the only required property, and can be a function that returns either astring
or anobject
which is passed to yourbaseQuery
. If you are using fetchBaseQuery, this can return either astring
or anobject
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
queries
to provide entities to the cache Expects an array of entity type strings, or an array of objects of entity types with ids.['Post']
- equivalent tob
[{ type: 'Post' }]
- equivalent toa
[{ type: 'Post', id: 1 }]
invalidates
(optional)Used by
mutations
for cache invalidation purposes. Expects the same shapes asprovides
onStart
,onError
andonSuccess
(optional) - Available to both queries and mutations- Can be used in
mutations
for optimistic updates. - Mutation lifecycle 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;
- Query lifecycle signaturesfunction onStart(arg: QueryArg, queryApi: QueryApi<ReducerPath, Context>): void;function onError(arg: QueryArg, queryApi: QueryApi<ReducerPath, Context>, error: unknown): void;function onSuccess(arg: QueryArg, queryApi: QueryApi<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 mutation
s 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:
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.
refetchOnMountOrArgChange
Defaults to false
. This setting allows you to control whether RTK Query will only serve a cached result, or if it should refetch
when set to true
or if an adequate amount of time has passed since the last successful query result.
false
- Will not cause a query to be performed unless it does not exist yet.true
- Will always refetch when a new subscriber to a query is added. Behaves the same as calling therefetch
callback or passingforceRefetch: true
in the action creator.number
- Value is in seconds. If a number is provided and there is an existing query in the cache, it will compare the current time vs the last fulfilled timestamp, and only refetch if enough time has elapsed.
If you specify this option alongside skip: true
, this will not be evaluated until skip
is false.
note
You can set this globally in createApi
, but you can also override the default value and have more granular control by passing refetchOnMountOrArgChange
to each individual hook call or when dispatching the initiate
action.
refetchOnFocus
Defaults to false
. This setting allows you to control whether RTK Query will try to refetch all subscribed queries after the application window regains focus.
If you specify this option alongside skip: true
, this will not be evaluated until skip
is false.
note
You can set this globally in createApi
, but you can also override the default value and have more granular control by passing refetchOnFocus
to each individual hook call or when dispatching the initiate
action.
If you specify track: false
when manually dispatching queries, RTK Query will not be able to automatically refetch for you.
refetchOnReconnect
Defaults to false
. This setting allows you to control whether RTK Query will try to refetch all subscribed queries after regaining a network connection.
If you specify this option alongside skip: true
, this will not be evaluated until skip
is false.
note
You can set this globally in createApi
, but you can also override the default value and have more granular control by passing refetchOnReconnect
to each individual hook call or when dispatching the initiate
action.
If you specify track: false
when manually dispatching queries, RTK Query will not be able to automatically refetch for you.
Return value
reducerPath
reducer
middleware
endpoints
- [endpointName]
internalActions
util
injectEndpoints
enhanceEndpoints
usePrefetch
Auto-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>
,
util
- prefetchThunk - used for prefetching.
- patchQueryResult - used for optimistic updates.
- updateQueryResult - used for optimistic updates.
injectEndpoints
See Code Splitting
enhanceEndpoints
See Code Generation