feat: add filter operator enum, add models for getting records by ids and querying records
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
export enum FilterOperators {
|
||||
Equal = 'eq',
|
||||
NotEqual = 'ne',
|
||||
Contains = 'contains',
|
||||
IsNull = 'isnull',
|
||||
NotNull = 'notnull',
|
||||
GreaterThan = 'gt',
|
||||
LessThan = 'lt',
|
||||
And = 'and',
|
||||
Or = 'or',
|
||||
Not = 'not',
|
||||
}
|
||||
Reference in New Issue
Block a user