@@ -38,12 +38,12 @@ RTK-Query uses a very familiar redux-centric architecture. Where the `api` is a
38
38
The slices built inside this "build" are:
39
39
_ Some of which have their own actions_
40
40
41
- - querySlice
42
- - mutationSlice
43
- - invalidationSlice
44
- - subscriptionSlice (used as a dummy slice to generate actions internally)
45
- - internalSubscriptionsSlice
46
- - configSlice (internal tracking of focus state, online state, hydration etc)
41
+ - ` querySlice `
42
+ - ` mutationSlice `
43
+ - ` invalidationSlice `
44
+ - ` subscriptionSlice ` (used as a dummy slice to generate actions internally)
45
+ - ` internalSubscriptionsSlice `
46
+ - ` configSlice ` (internal tracking of focus state, online state, hydration etc)
47
47
48
48
buildSlice also exposes the core action ` resetApiState ` which is subsequently added to the ` api.util `
49
49
@@ -53,21 +53,21 @@ RTK-Query has a series of custom middlewares established within its store to han
53
53
54
54
Each middleware built during this step is referred to internally as a "Handler" and are as follows:
55
55
56
- - `buildDevCheckHandler
57
- - `buildCacheCollectionHandler
58
- - `buildInvalidationByTagsHandler
59
- - `buildPollingHandler
60
- - `buildCacheLifecycleHandler
61
- - `buildQueryLifecycleHandler
56
+ - ` buildDevCheckHandler `
57
+ - ` buildCacheCollectionHandler `
58
+ - ` buildInvalidationByTagsHandler `
59
+ - ` buildPollingHandler `
60
+ - ` buildCacheLifecycleHandler `
61
+ - ` buildQueryLifecycleHandler `
62
62
63
63
### buildSelectors
64
64
65
65
build selectors is a crucial step that exposes to the ` api ` and utils:
66
66
67
- - `buildQuerySelector
68
- - `buildMutationSelector
69
- - `selectInvalidatedBy
70
- - `selectCachedArgsForQuery
67
+ - ` buildQuerySelector `
68
+ - ` buildMutationSelector `
69
+ - ` selectInvalidatedBy `
70
+ - ` selectCachedArgsForQuery `
71
71
72
72
### return
73
73
0 commit comments