16 lines
277 B
TypeScript
16 lines
277 B
TypeScript
![]() |
export const defaultBaseUrl = 'https://app.nocodb.com'
|
||
|
|
||
|
export const filterOperators = [
|
||
|
'Equal to',
|
||
|
'Not equal',
|
||
|
'Contains',
|
||
|
'Greater than',
|
||
|
'Less than',
|
||
|
'Is set',
|
||
|
'Is empty',
|
||
|
'Starts with',
|
||
|
'Ends with',
|
||
|
] as const
|
||
|
|
||
|
export const defaultLimitForSearch = 1000
|