* Validate and normalize a filter query
(query: Partial<FilterQuery>)
| 590 | * Validate and normalize a filter query |
| 591 | */ |
| 592 | normalizeQuery(query: Partial<FilterQuery>): FilterQuery { |
| 593 | return normalizeFilterQuery(query, () => FilterUtils.generateId()); |
| 594 | } |
| 595 | |
| 596 | /** |
| 597 | * Subscribe to cache changes and emit refresh events |
nothing calls this directly
no test coverage detected