feat: support filter by numbers

This commit is contained in:
Carl-Gerhard Lindesvärd
2025-12-02 23:33:41 +01:00
parent e5b9865850
commit 56b01ca6d8
2 changed files with 145 additions and 0 deletions

View File

@@ -87,6 +87,10 @@ export const operators = {
regex: 'Regex',
isNull: 'Is null',
isNotNull: 'Is not null',
gt: 'Greater than',
lt: 'Less than',
gte: 'Greater than or equal to',
lte: 'Less than or equal to',
} as const;
export const chartTypes = {