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
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)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 }]
- Used by
invalidates
(optional)- Used by
mutations
for cache invalidation purposes. - Expects the same shapes as
provides
.
- Used by
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 if a cached result is already available 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: requires setupListeners
to have been called.
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: requires setupListeners
to have been called.
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.