(filters: MutationFilters = {})
| 217 | } |
| 218 | |
| 219 | findAll(filters: MutationFilters = {}): Array<Mutation> { |
| 220 | return this.getAll().filter((mutation) => matchMutation(filters, mutation)) |
| 221 | } |
| 222 | |
| 223 | notify(event: MutationCacheNotifyEvent) { |
| 224 | notifyManager.batch(() => { |
nothing calls this directly
no test coverage detected