fetchBaseQuery
fetchBaseQuery
fetchBaseQuery
This is a very small wrapper around fetch
that aims to simplify requests. It is not a full-blown replacement for axios
, superagent
, or any other more heavy-weight library, but it will cover the large majority of your needs.
It takes all standard options from fetch's RequestInit
interface, as well as baseUrl
, a prepareHeaders
function, and an optional fetch
function.
baseUrl
(required)Typically a string like
https://api.your-really-great-app.com/v1/
. If you don't provide abaseUrl
, it defaults to a relative path from where the request is being made. You should most likely always specify this.
prepareHeaders
(optional)Allows you to inject headers on every request. You can specify headers at the endpoint level, but you'll typically want to set common headers like
authorization
here. As a convenience mechanism, the second argument allows you to usegetState
to access your redux store in the event you store information you'll need there such as an auth token.
fetchFn
(optional)A fetch function that overrides the default on the window. Can be useful in SSR environments where you may need to leverage
isomorphic-fetch
orcross-fetch
.
Using fetchBaseQuery
fetchBaseQuery
To use it, import it when you are creating an API service definition.
Setting default headers on requests
The most common use case for prepareHeaders
would be to automatically include authorization
headers for your API requests.
Individual query options
There is more behavior that you can define on a per-request basis that extends the default options available to the RequestInit
interface.
Setting the body
By default, fetchBaseQuery
assumes that every request you make will be json
, so in those cases all you have to do is set the url
and pass a body
object when appropriate. For other implementations, you can manually set the Headers
to specify the content type.
json
text
Setting the query string
fetchBaseQuery
provides a simple mechanism that converts an object
to a serialized query string. If this doesn't suit your needs, you can always build your own querystring and set it in the url
.
Parsing a Response
By default, fetchBaseQuery
assumes that every Response
you get will be parsed as json
. In the event that you don't want that to happen, you can specify an alternative response handler like text
, or take complete control and use a custom function that accepts the raw Response
object — allowing you to use any Body
method.
:::note Note about responses that return an undefined body If you make a json
request to an API that only returns a 200
with an undefined body, fetchBaseQuery
will pass that through as undefined
and will not try to parse it as json
. This can be common with some APIs, especially on delete
requests. :::
Handling non-standard Response status codes
By default, fetchBaseQuery
will reject
any Response
that does not have a status code of 2xx
and set it to error
. This is the same behavior you've most likely experienced with axios
and other popular libraries. In the event that you have a non-standard API you're dealing with, you can use the validateStatus
option to customize this behavior.
Last updated