(filter = {})
| 1 | function hasConditionValue(filter = {}) { |
| 2 | if (!filter) return false; |
| 3 | |
| 4 | if (filter.operator === "isNull" || filter.operator === "isNotNull") { |
| 5 | return true; |
| 6 | } |
| 7 | |
| 8 | return filter.value !== undefined && filter.value !== null && filter.value !== ""; |
| 9 | } |
| 10 | |
| 11 | const CLIENT_ONLY_FILTER_TYPES = new Set([ |
| 12 | "pagination", |
no outgoing calls
no test coverage detected