-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathqueryTypes.ts
140 lines (121 loc) · 3.32 KB
/
queryTypes.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
import {
AnyObject,
DeepRequiredExactlyOne,
PrimaryKeyType,
Value,
ModelValueType,
ModelDefinitionValue,
} from '../glossary'
export interface QuerySelector<EntityType extends AnyObject> {
strict?: boolean
where: QuerySelectorWhere<EntityType>
}
export type WeakQuerySelector<EntityType extends AnyObject> = Partial<
QuerySelector<EntityType>
>
export type RecursiveQuerySelectorWhere<Value extends ModelValueType> =
Value extends Array<infer ItemType>
? Partial<GetQueryFor<ItemType>>
: Value extends ModelValueType
? Partial<GetQueryFor<Value>>
: Value extends AnyObject
? {
[K in keyof Value]?: RecursiveQuerySelectorWhere<Value[K]>
}
: never
export type QuerySelectorWhere<EntityType extends AnyObject> = {
[Key in keyof EntityType]?: RecursiveQuerySelectorWhere<EntityType[Key]>
}
export interface WeakQuerySelectorWhere<KeyType extends PrimaryKeyType> {
[key: string]: Partial<GetQueryFor<KeyType>>
}
export type SortDirection = 'asc' | 'desc'
export type RecursiveOrderBy<Value extends ModelDefinitionValue> =
Value extends ModelValueType
? SortDirection
: Value extends AnyObject
? DeepRequiredExactlyOne<{
[K in keyof Value]?: RecursiveOrderBy<Value[K]>
}>
: never
export type OrderBy<EntityType extends AnyObject> = DeepRequiredExactlyOne<{
[Key in keyof EntityType]?: RecursiveOrderBy<EntityType[Key]>
}>
export interface BulkQueryBaseOptions<EntityType extends AnyObject> {
take?: number
orderBy?: OrderBy<EntityType> | OrderBy<EntityType>[]
}
interface BulkQueryOffsetOptions<EntityType>
extends BulkQueryBaseOptions<EntityType> {
skip?: number
cursor?: never
}
interface BulkQueryCursorOptions<EntityType>
extends BulkQueryBaseOptions<EntityType> {
skip?: never
cursor: PrimaryKeyType | null
}
export type BulkQueryOptions<EntityType extends AnyObject> =
| BulkQueryOffsetOptions<EntityType>
| BulkQueryCursorOptions<EntityType>
export type ComparatorFn<ExpectedType extends any, ActualType extends any> = (
expected: ExpectedType,
actual: ActualType,
) => boolean
export type QueryToComparator<
QueryType extends StringQuery | NumberQuery | BooleanQuery | DateQuery,
> = {
[Key in keyof QueryType]: ComparatorFn<
QueryType[Key],
QueryType[Key] extends Array<infer ValueType> ? ValueType : QueryType[Key]
>
}
export type GetQueryFor<ValueType extends any> = ValueType extends string
? StringQuery
: ValueType extends number
? NumberQuery
: ValueType extends Boolean
? BooleanQuery
: ValueType extends Date
? DateQuery
: ValueType extends Array<infer ItemType>
? QuerySelector<ItemType>['where']
: /**
* Relational `oneOf`/`manyOf` invocation
* resolves to the `Value` type.
*/
ValueType extends Value<any, any>
? QuerySelector<ValueType>['where']
: never
export interface StringQuery {
equals: string
notEquals: string
contains: string
notContains: string
in: string[]
notIn: string[]
}
export interface NumberQuery {
equals: number
notEquals: number
between: [number, number]
notBetween: [number, number]
gt: number
gte: number
lt: number
lte: number
in: number[]
notIn: number[]
}
export interface BooleanQuery {
equals: boolean
notEquals: boolean
}
export interface DateQuery {
equals: Date
notEquals: Date
gt: Date
gte: Date
lt: Date
lte: Date
}