(updater: QueryCacheUpdater)
| 170 | }) |
| 171 | |
| 172 | export const atomQueryCacheUpdater = makeAtomQueryCacheUpdater(true) |
| 173 | export const optionalAtomQueryCacheUpdater = makeAtomQueryCacheUpdater(false) |
| 174 | |
| 175 | export const combineQueryCacheUpdaters = (first: QueryCacheUpdater, second: QueryCacheUpdater): QueryCacheUpdater => ({ |
| 176 | update: (registry, query, input, updater) => { |
| 177 | first.update(registry, query, input, updater) |
no outgoing calls
no test coverage detected
searching dependent graphs…