@nozbe/watermelondb
Version:
Build powerful React Native and React web apps that scale from hundreds to tens of thousands of records and remain fast
65 lines (62 loc) • 919 B
TypeScript
export type {
NonNullValue,
NonNullValues,
Value,
CompoundValue,
Operator,
ColumnDescription,
ComparisonRight,
Comparison,
WhereDescription,
SqlExpr,
LokiExpr,
Where,
And,
Or,
On,
SortOrder,
SortBy,
Take,
Skip,
JoinTables,
NestedJoinTable,
LokiTransformFunction,
LokiTransform,
SqlQuery,
Clause,
QueryDescription,
} from './type'
export {
eq,
notEq,
gt,
gte,
weakGt,
lt,
lte,
oneOf,
notIn,
between,
like,
notLike,
sanitizeLikeString,
includes,
column,
where,
unsafeSqlExpr,
unsafeLokiExpr,
unsafeLokiTransform,
and,
or,
asc,
desc,
sortBy,
take,
skip,
on,
experimentalJoinTables,
experimentalNestedJoin,
unsafeSqlQuery,
} from './operators'
// NOTE: These probably shouldn't be exported from here, but kept for backwards compatibility
export { buildQueryDescription, queryWithoutDeleted } from './helpers'