@hasura/promptql 2.0.0-alpha.37 → 2.0.0-alpha.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/auth/index.d.mts +3 -2
- package/dist/auth/index.d.ts +3 -2
- package/dist/auth/index.js +1 -1
- package/dist/auth/index.mjs +1 -1
- package/dist/chunk-WIDMKT3J.mjs +1 -0
- package/dist/index.d.mts +2917 -28
- package/dist/index.d.ts +2917 -28
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +3 -3
- package/dist/chunk-JCZJQNYI.mjs +0 -1
- package/dist/graphql-Bv72OcvQ.d.mts +0 -2782
- package/dist/graphql-Bv72OcvQ.d.ts +0 -2782
|
@@ -1,2782 +0,0 @@
|
|
|
1
|
-
type Maybe<T> = T | null;
|
|
2
|
-
type InputMaybe<T> = Maybe<T>;
|
|
3
|
-
type Exact<T extends {
|
|
4
|
-
[key: string]: unknown;
|
|
5
|
-
}> = {
|
|
6
|
-
[K in keyof T]: T[K];
|
|
7
|
-
};
|
|
8
|
-
/** All built-in and custom scalars, mapped to their actual values */
|
|
9
|
-
type Scalars = {
|
|
10
|
-
ID: {
|
|
11
|
-
input: string;
|
|
12
|
-
output: string;
|
|
13
|
-
};
|
|
14
|
-
String: {
|
|
15
|
-
input: string;
|
|
16
|
-
output: string;
|
|
17
|
-
};
|
|
18
|
-
Boolean: {
|
|
19
|
-
input: boolean;
|
|
20
|
-
output: boolean;
|
|
21
|
-
};
|
|
22
|
-
Int: {
|
|
23
|
-
input: number;
|
|
24
|
-
output: number;
|
|
25
|
-
};
|
|
26
|
-
Float: {
|
|
27
|
-
input: number;
|
|
28
|
-
output: number;
|
|
29
|
-
};
|
|
30
|
-
_uuid: {
|
|
31
|
-
input: any;
|
|
32
|
-
output: any;
|
|
33
|
-
};
|
|
34
|
-
bigint: {
|
|
35
|
-
input: string;
|
|
36
|
-
output: string;
|
|
37
|
-
};
|
|
38
|
-
bytea: {
|
|
39
|
-
input: string;
|
|
40
|
-
output: string;
|
|
41
|
-
};
|
|
42
|
-
citext: {
|
|
43
|
-
input: string;
|
|
44
|
-
output: string;
|
|
45
|
-
};
|
|
46
|
-
float8: {
|
|
47
|
-
input: number;
|
|
48
|
-
output: number;
|
|
49
|
-
};
|
|
50
|
-
jsonb: {
|
|
51
|
-
input: any;
|
|
52
|
-
output: any;
|
|
53
|
-
};
|
|
54
|
-
numeric: {
|
|
55
|
-
input: number;
|
|
56
|
-
output: number;
|
|
57
|
-
};
|
|
58
|
-
timestamp: {
|
|
59
|
-
input: string;
|
|
60
|
-
output: string;
|
|
61
|
-
};
|
|
62
|
-
timestamptz: {
|
|
63
|
-
input: string;
|
|
64
|
-
output: string;
|
|
65
|
-
};
|
|
66
|
-
tsvector: {
|
|
67
|
-
input: any;
|
|
68
|
-
output: any;
|
|
69
|
-
};
|
|
70
|
-
uuid: {
|
|
71
|
-
input: string;
|
|
72
|
-
output: string;
|
|
73
|
-
};
|
|
74
|
-
};
|
|
75
|
-
type ArtifactReferenceInput = {
|
|
76
|
-
artifact_id: Scalars['String']['input'];
|
|
77
|
-
version: Scalars['Int']['input'];
|
|
78
|
-
};
|
|
79
|
-
/** Boolean expression to compare columns of type "Boolean". All fields are combined with logical 'AND'. */
|
|
80
|
-
type Boolean_Comparison_Exp = {
|
|
81
|
-
_eq?: InputMaybe<Scalars['Boolean']['input']>;
|
|
82
|
-
_gt?: InputMaybe<Scalars['Boolean']['input']>;
|
|
83
|
-
_gte?: InputMaybe<Scalars['Boolean']['input']>;
|
|
84
|
-
_in?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
85
|
-
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
86
|
-
_lt?: InputMaybe<Scalars['Boolean']['input']>;
|
|
87
|
-
_lte?: InputMaybe<Scalars['Boolean']['input']>;
|
|
88
|
-
_neq?: InputMaybe<Scalars['Boolean']['input']>;
|
|
89
|
-
_nin?: InputMaybe<Array<Scalars['Boolean']['input']>>;
|
|
90
|
-
};
|
|
91
|
-
type EnrichTokenOutput = {
|
|
92
|
-
__typename?: 'EnrichTokenOutput';
|
|
93
|
-
userDirectoryJWT: Scalars['String']['output'];
|
|
94
|
-
};
|
|
95
|
-
/** Boolean expression to compare columns of type "Int". All fields are combined with logical 'AND'. */
|
|
96
|
-
type Int_Comparison_Exp = {
|
|
97
|
-
_eq?: InputMaybe<Scalars['Int']['input']>;
|
|
98
|
-
_gt?: InputMaybe<Scalars['Int']['input']>;
|
|
99
|
-
_gte?: InputMaybe<Scalars['Int']['input']>;
|
|
100
|
-
_in?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
101
|
-
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
102
|
-
_lt?: InputMaybe<Scalars['Int']['input']>;
|
|
103
|
-
_lte?: InputMaybe<Scalars['Int']['input']>;
|
|
104
|
-
_neq?: InputMaybe<Scalars['Int']['input']>;
|
|
105
|
-
_nin?: InputMaybe<Array<Scalars['Int']['input']>>;
|
|
106
|
-
};
|
|
107
|
-
/** Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'. */
|
|
108
|
-
type String_Comparison_Exp = {
|
|
109
|
-
_eq?: InputMaybe<Scalars['String']['input']>;
|
|
110
|
-
_gt?: InputMaybe<Scalars['String']['input']>;
|
|
111
|
-
_gte?: InputMaybe<Scalars['String']['input']>;
|
|
112
|
-
/** does the column match the given case-insensitive pattern */
|
|
113
|
-
_ilike?: InputMaybe<Scalars['String']['input']>;
|
|
114
|
-
_in?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
115
|
-
/** does the column match the given POSIX regular expression, case insensitive */
|
|
116
|
-
_iregex?: InputMaybe<Scalars['String']['input']>;
|
|
117
|
-
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
118
|
-
/** does the column match the given pattern */
|
|
119
|
-
_like?: InputMaybe<Scalars['String']['input']>;
|
|
120
|
-
_lt?: InputMaybe<Scalars['String']['input']>;
|
|
121
|
-
_lte?: InputMaybe<Scalars['String']['input']>;
|
|
122
|
-
_neq?: InputMaybe<Scalars['String']['input']>;
|
|
123
|
-
/** does the column NOT match the given case-insensitive pattern */
|
|
124
|
-
_nilike?: InputMaybe<Scalars['String']['input']>;
|
|
125
|
-
_nin?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
126
|
-
/** does the column NOT match the given POSIX regular expression, case insensitive */
|
|
127
|
-
_niregex?: InputMaybe<Scalars['String']['input']>;
|
|
128
|
-
/** does the column NOT match the given pattern */
|
|
129
|
-
_nlike?: InputMaybe<Scalars['String']['input']>;
|
|
130
|
-
/** does the column NOT match the given POSIX regular expression, case sensitive */
|
|
131
|
-
_nregex?: InputMaybe<Scalars['String']['input']>;
|
|
132
|
-
/** does the column NOT match the given SQL regular expression */
|
|
133
|
-
_nsimilar?: InputMaybe<Scalars['String']['input']>;
|
|
134
|
-
/** does the column match the given POSIX regular expression, case sensitive */
|
|
135
|
-
_regex?: InputMaybe<Scalars['String']['input']>;
|
|
136
|
-
/** does the column match the given SQL regular expression */
|
|
137
|
-
_similar?: InputMaybe<Scalars['String']['input']>;
|
|
138
|
-
};
|
|
139
|
-
type UserUploadInput = {
|
|
140
|
-
artifact_name: Scalars['String']['input'];
|
|
141
|
-
artifact_reference: ArtifactReferenceInput;
|
|
142
|
-
};
|
|
143
|
-
type Artifact_Versions_Aggregate_Bool_Exp = {
|
|
144
|
-
count?: InputMaybe<Artifact_Versions_Aggregate_Bool_Exp_Count>;
|
|
145
|
-
};
|
|
146
|
-
type Artifact_Versions_Aggregate_Bool_Exp_Count = {
|
|
147
|
-
arguments?: InputMaybe<Array<Artifact_Versions_Select_Column>>;
|
|
148
|
-
distinct?: InputMaybe<Scalars['Boolean']['input']>;
|
|
149
|
-
filter?: InputMaybe<Artifact_Versions_Bool_Exp>;
|
|
150
|
-
predicate: Int_Comparison_Exp;
|
|
151
|
-
};
|
|
152
|
-
/** order by aggregate values of table "artifact_versions" */
|
|
153
|
-
type Artifact_Versions_Aggregate_Order_By = {
|
|
154
|
-
avg?: InputMaybe<Artifact_Versions_Avg_Order_By>;
|
|
155
|
-
count?: InputMaybe<Order_By>;
|
|
156
|
-
max?: InputMaybe<Artifact_Versions_Max_Order_By>;
|
|
157
|
-
min?: InputMaybe<Artifact_Versions_Min_Order_By>;
|
|
158
|
-
stddev?: InputMaybe<Artifact_Versions_Stddev_Order_By>;
|
|
159
|
-
stddev_pop?: InputMaybe<Artifact_Versions_Stddev_Pop_Order_By>;
|
|
160
|
-
stddev_samp?: InputMaybe<Artifact_Versions_Stddev_Samp_Order_By>;
|
|
161
|
-
sum?: InputMaybe<Artifact_Versions_Sum_Order_By>;
|
|
162
|
-
var_pop?: InputMaybe<Artifact_Versions_Var_Pop_Order_By>;
|
|
163
|
-
var_samp?: InputMaybe<Artifact_Versions_Var_Samp_Order_By>;
|
|
164
|
-
variance?: InputMaybe<Artifact_Versions_Variance_Order_By>;
|
|
165
|
-
};
|
|
166
|
-
/** order by avg() on columns of table "artifact_versions" */
|
|
167
|
-
type Artifact_Versions_Avg_Order_By = {
|
|
168
|
-
copy_of_artifact_version?: InputMaybe<Order_By>;
|
|
169
|
-
size?: InputMaybe<Order_By>;
|
|
170
|
-
version?: InputMaybe<Order_By>;
|
|
171
|
-
};
|
|
172
|
-
/** Boolean expression to filter rows from the table "artifact_versions". All fields are combined with a logical 'AND'. */
|
|
173
|
-
type Artifact_Versions_Bool_Exp = {
|
|
174
|
-
_and?: InputMaybe<Array<Artifact_Versions_Bool_Exp>>;
|
|
175
|
-
_not?: InputMaybe<Artifact_Versions_Bool_Exp>;
|
|
176
|
-
_or?: InputMaybe<Array<Artifact_Versions_Bool_Exp>>;
|
|
177
|
-
artifact?: InputMaybe<Artifacts_Bool_Exp>;
|
|
178
|
-
artifact_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
179
|
-
artifact_metadata?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
180
|
-
artifact_type?: InputMaybe<String_Comparison_Exp>;
|
|
181
|
-
copy_of_artifact_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
182
|
-
copy_of_artifact_version?: InputMaybe<Int_Comparison_Exp>;
|
|
183
|
-
copy_of_artifact_version_object?: InputMaybe<Artifact_Versions_Bool_Exp>;
|
|
184
|
-
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
185
|
-
data?: InputMaybe<Bytea_Comparison_Exp>;
|
|
186
|
-
data_location?: InputMaybe<String_Comparison_Exp>;
|
|
187
|
-
description?: InputMaybe<String_Comparison_Exp>;
|
|
188
|
-
size?: InputMaybe<Bigint_Comparison_Exp>;
|
|
189
|
-
title?: InputMaybe<String_Comparison_Exp>;
|
|
190
|
-
user_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
191
|
-
version?: InputMaybe<Int_Comparison_Exp>;
|
|
192
|
-
};
|
|
193
|
-
/** order by max() on columns of table "artifact_versions" */
|
|
194
|
-
type Artifact_Versions_Max_Order_By = {
|
|
195
|
-
artifact_id?: InputMaybe<Order_By>;
|
|
196
|
-
artifact_type?: InputMaybe<Order_By>;
|
|
197
|
-
copy_of_artifact_id?: InputMaybe<Order_By>;
|
|
198
|
-
copy_of_artifact_version?: InputMaybe<Order_By>;
|
|
199
|
-
created_at?: InputMaybe<Order_By>;
|
|
200
|
-
data_location?: InputMaybe<Order_By>;
|
|
201
|
-
description?: InputMaybe<Order_By>;
|
|
202
|
-
size?: InputMaybe<Order_By>;
|
|
203
|
-
title?: InputMaybe<Order_By>;
|
|
204
|
-
user_id?: InputMaybe<Order_By>;
|
|
205
|
-
version?: InputMaybe<Order_By>;
|
|
206
|
-
};
|
|
207
|
-
/** order by min() on columns of table "artifact_versions" */
|
|
208
|
-
type Artifact_Versions_Min_Order_By = {
|
|
209
|
-
artifact_id?: InputMaybe<Order_By>;
|
|
210
|
-
artifact_type?: InputMaybe<Order_By>;
|
|
211
|
-
copy_of_artifact_id?: InputMaybe<Order_By>;
|
|
212
|
-
copy_of_artifact_version?: InputMaybe<Order_By>;
|
|
213
|
-
created_at?: InputMaybe<Order_By>;
|
|
214
|
-
data_location?: InputMaybe<Order_By>;
|
|
215
|
-
description?: InputMaybe<Order_By>;
|
|
216
|
-
size?: InputMaybe<Order_By>;
|
|
217
|
-
title?: InputMaybe<Order_By>;
|
|
218
|
-
user_id?: InputMaybe<Order_By>;
|
|
219
|
-
version?: InputMaybe<Order_By>;
|
|
220
|
-
};
|
|
221
|
-
/** Ordering options when selecting data from "artifact_versions". */
|
|
222
|
-
type Artifact_Versions_Order_By = {
|
|
223
|
-
artifact?: InputMaybe<Artifacts_Order_By>;
|
|
224
|
-
artifact_id?: InputMaybe<Order_By>;
|
|
225
|
-
artifact_metadata?: InputMaybe<Order_By>;
|
|
226
|
-
artifact_type?: InputMaybe<Order_By>;
|
|
227
|
-
copy_of_artifact_id?: InputMaybe<Order_By>;
|
|
228
|
-
copy_of_artifact_version?: InputMaybe<Order_By>;
|
|
229
|
-
copy_of_artifact_version_object?: InputMaybe<Artifact_Versions_Order_By>;
|
|
230
|
-
created_at?: InputMaybe<Order_By>;
|
|
231
|
-
data?: InputMaybe<Order_By>;
|
|
232
|
-
data_location?: InputMaybe<Order_By>;
|
|
233
|
-
description?: InputMaybe<Order_By>;
|
|
234
|
-
size?: InputMaybe<Order_By>;
|
|
235
|
-
title?: InputMaybe<Order_By>;
|
|
236
|
-
user_id?: InputMaybe<Order_By>;
|
|
237
|
-
version?: InputMaybe<Order_By>;
|
|
238
|
-
};
|
|
239
|
-
/** select columns of table "artifact_versions" */
|
|
240
|
-
type Artifact_Versions_Select_Column =
|
|
241
|
-
/** column name */
|
|
242
|
-
'artifact_id'
|
|
243
|
-
/** column name */
|
|
244
|
-
| 'artifact_metadata'
|
|
245
|
-
/** column name */
|
|
246
|
-
| 'artifact_type'
|
|
247
|
-
/** column name */
|
|
248
|
-
| 'copy_of_artifact_id'
|
|
249
|
-
/** column name */
|
|
250
|
-
| 'copy_of_artifact_version'
|
|
251
|
-
/** column name */
|
|
252
|
-
| 'created_at'
|
|
253
|
-
/** column name */
|
|
254
|
-
| 'data'
|
|
255
|
-
/** column name */
|
|
256
|
-
| 'data_location'
|
|
257
|
-
/** column name */
|
|
258
|
-
| 'description'
|
|
259
|
-
/** column name */
|
|
260
|
-
| 'size'
|
|
261
|
-
/** column name */
|
|
262
|
-
| 'title'
|
|
263
|
-
/** column name */
|
|
264
|
-
| 'user_id'
|
|
265
|
-
/** column name */
|
|
266
|
-
| 'version';
|
|
267
|
-
/** order by stddev() on columns of table "artifact_versions" */
|
|
268
|
-
type Artifact_Versions_Stddev_Order_By = {
|
|
269
|
-
copy_of_artifact_version?: InputMaybe<Order_By>;
|
|
270
|
-
size?: InputMaybe<Order_By>;
|
|
271
|
-
version?: InputMaybe<Order_By>;
|
|
272
|
-
};
|
|
273
|
-
/** order by stddev_pop() on columns of table "artifact_versions" */
|
|
274
|
-
type Artifact_Versions_Stddev_Pop_Order_By = {
|
|
275
|
-
copy_of_artifact_version?: InputMaybe<Order_By>;
|
|
276
|
-
size?: InputMaybe<Order_By>;
|
|
277
|
-
version?: InputMaybe<Order_By>;
|
|
278
|
-
};
|
|
279
|
-
/** order by stddev_samp() on columns of table "artifact_versions" */
|
|
280
|
-
type Artifact_Versions_Stddev_Samp_Order_By = {
|
|
281
|
-
copy_of_artifact_version?: InputMaybe<Order_By>;
|
|
282
|
-
size?: InputMaybe<Order_By>;
|
|
283
|
-
version?: InputMaybe<Order_By>;
|
|
284
|
-
};
|
|
285
|
-
/** order by sum() on columns of table "artifact_versions" */
|
|
286
|
-
type Artifact_Versions_Sum_Order_By = {
|
|
287
|
-
copy_of_artifact_version?: InputMaybe<Order_By>;
|
|
288
|
-
size?: InputMaybe<Order_By>;
|
|
289
|
-
version?: InputMaybe<Order_By>;
|
|
290
|
-
};
|
|
291
|
-
/** order by var_pop() on columns of table "artifact_versions" */
|
|
292
|
-
type Artifact_Versions_Var_Pop_Order_By = {
|
|
293
|
-
copy_of_artifact_version?: InputMaybe<Order_By>;
|
|
294
|
-
size?: InputMaybe<Order_By>;
|
|
295
|
-
version?: InputMaybe<Order_By>;
|
|
296
|
-
};
|
|
297
|
-
/** order by var_samp() on columns of table "artifact_versions" */
|
|
298
|
-
type Artifact_Versions_Var_Samp_Order_By = {
|
|
299
|
-
copy_of_artifact_version?: InputMaybe<Order_By>;
|
|
300
|
-
size?: InputMaybe<Order_By>;
|
|
301
|
-
version?: InputMaybe<Order_By>;
|
|
302
|
-
};
|
|
303
|
-
/** order by variance() on columns of table "artifact_versions" */
|
|
304
|
-
type Artifact_Versions_Variance_Order_By = {
|
|
305
|
-
copy_of_artifact_version?: InputMaybe<Order_By>;
|
|
306
|
-
size?: InputMaybe<Order_By>;
|
|
307
|
-
version?: InputMaybe<Order_By>;
|
|
308
|
-
};
|
|
309
|
-
/** Boolean expression to filter rows from the table "artifacts". All fields are combined with a logical 'AND'. */
|
|
310
|
-
type Artifacts_Bool_Exp = {
|
|
311
|
-
_and?: InputMaybe<Array<Artifacts_Bool_Exp>>;
|
|
312
|
-
_not?: InputMaybe<Artifacts_Bool_Exp>;
|
|
313
|
-
_or?: InputMaybe<Array<Artifacts_Bool_Exp>>;
|
|
314
|
-
artifact_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
315
|
-
artifact_versions?: InputMaybe<Artifact_Versions_Bool_Exp>;
|
|
316
|
-
artifact_versions_aggregate?: InputMaybe<Artifact_Versions_Aggregate_Bool_Exp>;
|
|
317
|
-
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
318
|
-
latest_version?: InputMaybe<Int_Comparison_Exp>;
|
|
319
|
-
latest_version_object?: InputMaybe<Artifact_Versions_Bool_Exp>;
|
|
320
|
-
program_artifact?: InputMaybe<Program_Artifacts_Bool_Exp>;
|
|
321
|
-
project_artifact?: InputMaybe<Project_Artifacts_Bool_Exp>;
|
|
322
|
-
thread_artifacts?: InputMaybe<Thread_Artifacts_Bool_Exp>;
|
|
323
|
-
thread_artifacts_aggregate?: InputMaybe<Thread_Artifacts_Aggregate_Bool_Exp>;
|
|
324
|
-
updated_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
325
|
-
};
|
|
326
|
-
/** Ordering options when selecting data from "artifacts". */
|
|
327
|
-
type Artifacts_Order_By = {
|
|
328
|
-
artifact_id?: InputMaybe<Order_By>;
|
|
329
|
-
artifact_versions_aggregate?: InputMaybe<Artifact_Versions_Aggregate_Order_By>;
|
|
330
|
-
created_at?: InputMaybe<Order_By>;
|
|
331
|
-
latest_version?: InputMaybe<Order_By>;
|
|
332
|
-
latest_version_object?: InputMaybe<Artifact_Versions_Order_By>;
|
|
333
|
-
program_artifact?: InputMaybe<Program_Artifacts_Order_By>;
|
|
334
|
-
project_artifact?: InputMaybe<Project_Artifacts_Order_By>;
|
|
335
|
-
thread_artifacts_aggregate?: InputMaybe<Thread_Artifacts_Aggregate_Order_By>;
|
|
336
|
-
updated_at?: InputMaybe<Order_By>;
|
|
337
|
-
};
|
|
338
|
-
/** Boolean expression to compare columns of type "bigint". All fields are combined with logical 'AND'. */
|
|
339
|
-
type Bigint_Comparison_Exp = {
|
|
340
|
-
_eq?: InputMaybe<Scalars['bigint']['input']>;
|
|
341
|
-
_gt?: InputMaybe<Scalars['bigint']['input']>;
|
|
342
|
-
_gte?: InputMaybe<Scalars['bigint']['input']>;
|
|
343
|
-
_in?: InputMaybe<Array<Scalars['bigint']['input']>>;
|
|
344
|
-
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
345
|
-
_lt?: InputMaybe<Scalars['bigint']['input']>;
|
|
346
|
-
_lte?: InputMaybe<Scalars['bigint']['input']>;
|
|
347
|
-
_neq?: InputMaybe<Scalars['bigint']['input']>;
|
|
348
|
-
_nin?: InputMaybe<Array<Scalars['bigint']['input']>>;
|
|
349
|
-
};
|
|
350
|
-
/** Boolean expression to compare columns of type "bytea". All fields are combined with logical 'AND'. */
|
|
351
|
-
type Bytea_Comparison_Exp = {
|
|
352
|
-
_eq?: InputMaybe<Scalars['bytea']['input']>;
|
|
353
|
-
_gt?: InputMaybe<Scalars['bytea']['input']>;
|
|
354
|
-
_gte?: InputMaybe<Scalars['bytea']['input']>;
|
|
355
|
-
_in?: InputMaybe<Array<Scalars['bytea']['input']>>;
|
|
356
|
-
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
357
|
-
_lt?: InputMaybe<Scalars['bytea']['input']>;
|
|
358
|
-
_lte?: InputMaybe<Scalars['bytea']['input']>;
|
|
359
|
-
_neq?: InputMaybe<Scalars['bytea']['input']>;
|
|
360
|
-
_nin?: InputMaybe<Array<Scalars['bytea']['input']>>;
|
|
361
|
-
};
|
|
362
|
-
/** Boolean expression to compare columns of type "citext". All fields are combined with logical 'AND'. */
|
|
363
|
-
type Citext_Comparison_Exp = {
|
|
364
|
-
_eq?: InputMaybe<Scalars['citext']['input']>;
|
|
365
|
-
_gt?: InputMaybe<Scalars['citext']['input']>;
|
|
366
|
-
_gte?: InputMaybe<Scalars['citext']['input']>;
|
|
367
|
-
/** does the column match the given case-insensitive pattern */
|
|
368
|
-
_ilike?: InputMaybe<Scalars['citext']['input']>;
|
|
369
|
-
_in?: InputMaybe<Array<Scalars['citext']['input']>>;
|
|
370
|
-
/** does the column match the given POSIX regular expression, case insensitive */
|
|
371
|
-
_iregex?: InputMaybe<Scalars['citext']['input']>;
|
|
372
|
-
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
373
|
-
/** does the column match the given pattern */
|
|
374
|
-
_like?: InputMaybe<Scalars['citext']['input']>;
|
|
375
|
-
_lt?: InputMaybe<Scalars['citext']['input']>;
|
|
376
|
-
_lte?: InputMaybe<Scalars['citext']['input']>;
|
|
377
|
-
_neq?: InputMaybe<Scalars['citext']['input']>;
|
|
378
|
-
/** does the column NOT match the given case-insensitive pattern */
|
|
379
|
-
_nilike?: InputMaybe<Scalars['citext']['input']>;
|
|
380
|
-
_nin?: InputMaybe<Array<Scalars['citext']['input']>>;
|
|
381
|
-
/** does the column NOT match the given POSIX regular expression, case insensitive */
|
|
382
|
-
_niregex?: InputMaybe<Scalars['citext']['input']>;
|
|
383
|
-
/** does the column NOT match the given pattern */
|
|
384
|
-
_nlike?: InputMaybe<Scalars['citext']['input']>;
|
|
385
|
-
/** does the column NOT match the given POSIX regular expression, case sensitive */
|
|
386
|
-
_nregex?: InputMaybe<Scalars['citext']['input']>;
|
|
387
|
-
/** does the column NOT match the given SQL regular expression */
|
|
388
|
-
_nsimilar?: InputMaybe<Scalars['citext']['input']>;
|
|
389
|
-
/** does the column match the given POSIX regular expression, case sensitive */
|
|
390
|
-
_regex?: InputMaybe<Scalars['citext']['input']>;
|
|
391
|
-
/** does the column match the given SQL regular expression */
|
|
392
|
-
_similar?: InputMaybe<Scalars['citext']['input']>;
|
|
393
|
-
};
|
|
394
|
-
/** order by aggregate values of table "custom_claim_assignments" */
|
|
395
|
-
type Custom_Claim_Assignments_Aggregate_Order_By = {
|
|
396
|
-
count?: InputMaybe<Order_By>;
|
|
397
|
-
max?: InputMaybe<Custom_Claim_Assignments_Max_Order_By>;
|
|
398
|
-
min?: InputMaybe<Custom_Claim_Assignments_Min_Order_By>;
|
|
399
|
-
};
|
|
400
|
-
/** Boolean expression to filter rows from the table "custom_claim_assignments". All fields are combined with a logical 'AND'. */
|
|
401
|
-
type Custom_Claim_Assignments_Bool_Exp = {
|
|
402
|
-
_and?: InputMaybe<Array<Custom_Claim_Assignments_Bool_Exp>>;
|
|
403
|
-
_not?: InputMaybe<Custom_Claim_Assignments_Bool_Exp>;
|
|
404
|
-
_or?: InputMaybe<Array<Custom_Claim_Assignments_Bool_Exp>>;
|
|
405
|
-
assignee?: InputMaybe<Promptql_Users_Bool_Exp>;
|
|
406
|
-
assignee_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
407
|
-
claim_key_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
408
|
-
claim_value?: InputMaybe<String_Comparison_Exp>;
|
|
409
|
-
custom_claim_key?: InputMaybe<Custom_Claim_Keys_Bool_Exp>;
|
|
410
|
-
};
|
|
411
|
-
/** order by max() on columns of table "custom_claim_assignments" */
|
|
412
|
-
type Custom_Claim_Assignments_Max_Order_By = {
|
|
413
|
-
assignee_id?: InputMaybe<Order_By>;
|
|
414
|
-
claim_key_id?: InputMaybe<Order_By>;
|
|
415
|
-
claim_value?: InputMaybe<Order_By>;
|
|
416
|
-
};
|
|
417
|
-
/** order by min() on columns of table "custom_claim_assignments" */
|
|
418
|
-
type Custom_Claim_Assignments_Min_Order_By = {
|
|
419
|
-
assignee_id?: InputMaybe<Order_By>;
|
|
420
|
-
claim_key_id?: InputMaybe<Order_By>;
|
|
421
|
-
claim_value?: InputMaybe<Order_By>;
|
|
422
|
-
};
|
|
423
|
-
/** Boolean expression to filter rows from the table "custom_claim_keys". All fields are combined with a logical 'AND'. */
|
|
424
|
-
type Custom_Claim_Keys_Bool_Exp = {
|
|
425
|
-
_and?: InputMaybe<Array<Custom_Claim_Keys_Bool_Exp>>;
|
|
426
|
-
_not?: InputMaybe<Custom_Claim_Keys_Bool_Exp>;
|
|
427
|
-
_or?: InputMaybe<Array<Custom_Claim_Keys_Bool_Exp>>;
|
|
428
|
-
claim_key?: InputMaybe<String_Comparison_Exp>;
|
|
429
|
-
created_by?: InputMaybe<Uuid_Comparison_Exp>;
|
|
430
|
-
creator?: InputMaybe<Promptql_Users_Bool_Exp>;
|
|
431
|
-
custom_claim_assignments?: InputMaybe<Custom_Claim_Assignments_Bool_Exp>;
|
|
432
|
-
custom_claim_owners?: InputMaybe<Custom_Claim_Owners_Bool_Exp>;
|
|
433
|
-
description?: InputMaybe<String_Comparison_Exp>;
|
|
434
|
-
id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
435
|
-
project_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
436
|
-
};
|
|
437
|
-
/** Boolean expression to filter rows from the table "custom_claim_owners". All fields are combined with a logical 'AND'. */
|
|
438
|
-
type Custom_Claim_Owners_Bool_Exp = {
|
|
439
|
-
_and?: InputMaybe<Array<Custom_Claim_Owners_Bool_Exp>>;
|
|
440
|
-
_not?: InputMaybe<Custom_Claim_Owners_Bool_Exp>;
|
|
441
|
-
_or?: InputMaybe<Array<Custom_Claim_Owners_Bool_Exp>>;
|
|
442
|
-
claim_key_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
443
|
-
custom_claim_key?: InputMaybe<Custom_Claim_Keys_Bool_Exp>;
|
|
444
|
-
id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
445
|
-
owner?: InputMaybe<Promptql_Users_Bool_Exp>;
|
|
446
|
-
owner_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
447
|
-
};
|
|
448
|
-
/** Boolean expression to filter rows from the table "feed_candidate_selected_messages". All fields are combined with a logical 'AND'. */
|
|
449
|
-
type Feed_Candidate_Selected_Messages_Bool_Exp = {
|
|
450
|
-
_and?: InputMaybe<Array<Feed_Candidate_Selected_Messages_Bool_Exp>>;
|
|
451
|
-
_not?: InputMaybe<Feed_Candidate_Selected_Messages_Bool_Exp>;
|
|
452
|
-
_or?: InputMaybe<Array<Feed_Candidate_Selected_Messages_Bool_Exp>>;
|
|
453
|
-
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
454
|
-
display_text?: InputMaybe<String_Comparison_Exp>;
|
|
455
|
-
feed_candidate?: InputMaybe<Social_Feed_Candidates_Bool_Exp>;
|
|
456
|
-
feed_candidate_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
457
|
-
id?: InputMaybe<Bigint_Comparison_Exp>;
|
|
458
|
-
message_id?: InputMaybe<String_Comparison_Exp>;
|
|
459
|
-
message_type?: InputMaybe<String_Comparison_Exp>;
|
|
460
|
-
thread_event?: InputMaybe<Thread_Events_Bool_Exp>;
|
|
461
|
-
thread_event_id?: InputMaybe<Bigint_Comparison_Exp>;
|
|
462
|
-
};
|
|
463
|
-
type Jsonb_Cast_Exp = {
|
|
464
|
-
String?: InputMaybe<String_Comparison_Exp>;
|
|
465
|
-
};
|
|
466
|
-
/** Boolean expression to compare columns of type "jsonb". All fields are combined with logical 'AND'. */
|
|
467
|
-
type Jsonb_Comparison_Exp = {
|
|
468
|
-
_cast?: InputMaybe<Jsonb_Cast_Exp>;
|
|
469
|
-
/** is the column contained in the given json value */
|
|
470
|
-
_contained_in?: InputMaybe<Scalars['jsonb']['input']>;
|
|
471
|
-
/** does the column contain the given json value at the top level */
|
|
472
|
-
_contains?: InputMaybe<Scalars['jsonb']['input']>;
|
|
473
|
-
_eq?: InputMaybe<Scalars['jsonb']['input']>;
|
|
474
|
-
_gt?: InputMaybe<Scalars['jsonb']['input']>;
|
|
475
|
-
_gte?: InputMaybe<Scalars['jsonb']['input']>;
|
|
476
|
-
/** does the string exist as a top-level key in the column */
|
|
477
|
-
_has_key?: InputMaybe<Scalars['String']['input']>;
|
|
478
|
-
/** do all of these strings exist as top-level keys in the column */
|
|
479
|
-
_has_keys_all?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
480
|
-
/** do any of these strings exist as top-level keys in the column */
|
|
481
|
-
_has_keys_any?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
482
|
-
_in?: InputMaybe<Array<Scalars['jsonb']['input']>>;
|
|
483
|
-
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
484
|
-
_lt?: InputMaybe<Scalars['jsonb']['input']>;
|
|
485
|
-
_lte?: InputMaybe<Scalars['jsonb']['input']>;
|
|
486
|
-
_neq?: InputMaybe<Scalars['jsonb']['input']>;
|
|
487
|
-
_nin?: InputMaybe<Array<Scalars['jsonb']['input']>>;
|
|
488
|
-
};
|
|
489
|
-
type Message_Reactions_Aggregate_Bool_Exp = {
|
|
490
|
-
count?: InputMaybe<Message_Reactions_Aggregate_Bool_Exp_Count>;
|
|
491
|
-
};
|
|
492
|
-
type Message_Reactions_Aggregate_Bool_Exp_Count = {
|
|
493
|
-
arguments?: InputMaybe<Array<Message_Reactions_Select_Column>>;
|
|
494
|
-
distinct?: InputMaybe<Scalars['Boolean']['input']>;
|
|
495
|
-
filter?: InputMaybe<Message_Reactions_Bool_Exp>;
|
|
496
|
-
predicate: Int_Comparison_Exp;
|
|
497
|
-
};
|
|
498
|
-
/** order by aggregate values of table "message_reactions" */
|
|
499
|
-
type Message_Reactions_Aggregate_Order_By = {
|
|
500
|
-
count?: InputMaybe<Order_By>;
|
|
501
|
-
max?: InputMaybe<Message_Reactions_Max_Order_By>;
|
|
502
|
-
min?: InputMaybe<Message_Reactions_Min_Order_By>;
|
|
503
|
-
};
|
|
504
|
-
/** Boolean expression to filter rows from the table "message_reactions". All fields are combined with a logical 'AND'. */
|
|
505
|
-
type Message_Reactions_Bool_Exp = {
|
|
506
|
-
_and?: InputMaybe<Array<Message_Reactions_Bool_Exp>>;
|
|
507
|
-
_not?: InputMaybe<Message_Reactions_Bool_Exp>;
|
|
508
|
-
_or?: InputMaybe<Array<Message_Reactions_Bool_Exp>>;
|
|
509
|
-
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
510
|
-
emoji?: InputMaybe<String_Comparison_Exp>;
|
|
511
|
-
message_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
512
|
-
promptql_user_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
513
|
-
thread?: InputMaybe<Threads_V2_Bool_Exp>;
|
|
514
|
-
thread_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
515
|
-
user?: InputMaybe<Promptql_Users_Bool_Exp>;
|
|
516
|
-
};
|
|
517
|
-
/** order by max() on columns of table "message_reactions" */
|
|
518
|
-
type Message_Reactions_Max_Order_By = {
|
|
519
|
-
created_at?: InputMaybe<Order_By>;
|
|
520
|
-
emoji?: InputMaybe<Order_By>;
|
|
521
|
-
message_id?: InputMaybe<Order_By>;
|
|
522
|
-
promptql_user_id?: InputMaybe<Order_By>;
|
|
523
|
-
thread_id?: InputMaybe<Order_By>;
|
|
524
|
-
};
|
|
525
|
-
/** order by min() on columns of table "message_reactions" */
|
|
526
|
-
type Message_Reactions_Min_Order_By = {
|
|
527
|
-
created_at?: InputMaybe<Order_By>;
|
|
528
|
-
emoji?: InputMaybe<Order_By>;
|
|
529
|
-
message_id?: InputMaybe<Order_By>;
|
|
530
|
-
promptql_user_id?: InputMaybe<Order_By>;
|
|
531
|
-
thread_id?: InputMaybe<Order_By>;
|
|
532
|
-
};
|
|
533
|
-
/** select columns of table "message_reactions" */
|
|
534
|
-
type Message_Reactions_Select_Column =
|
|
535
|
-
/** column name */
|
|
536
|
-
'created_at'
|
|
537
|
-
/** column name */
|
|
538
|
-
| 'emoji'
|
|
539
|
-
/** column name */
|
|
540
|
-
| 'message_id'
|
|
541
|
-
/** column name */
|
|
542
|
-
| 'promptql_user_id'
|
|
543
|
-
/** column name */
|
|
544
|
-
| 'thread_id';
|
|
545
|
-
/** Boolean expression to filter rows from the table "notification_preference_enum". All fields are combined with a logical 'AND'. */
|
|
546
|
-
type Notification_Preference_Enum_Bool_Exp = {
|
|
547
|
-
_and?: InputMaybe<Array<Notification_Preference_Enum_Bool_Exp>>;
|
|
548
|
-
_not?: InputMaybe<Notification_Preference_Enum_Bool_Exp>;
|
|
549
|
-
_or?: InputMaybe<Array<Notification_Preference_Enum_Bool_Exp>>;
|
|
550
|
-
comment?: InputMaybe<String_Comparison_Exp>;
|
|
551
|
-
user_preferences_desktop_notification_preferences?: InputMaybe<User_Preferences_Bool_Exp>;
|
|
552
|
-
user_preferences_mobile_notification_preferences?: InputMaybe<User_Preferences_Bool_Exp>;
|
|
553
|
-
user_preferences_slack_notification_preferences?: InputMaybe<User_Preferences_Bool_Exp>;
|
|
554
|
-
user_slack_notification_preferences?: InputMaybe<User_Slack_Notification_Preferences_Bool_Exp>;
|
|
555
|
-
value?: InputMaybe<String_Comparison_Exp>;
|
|
556
|
-
};
|
|
557
|
-
type Notification_Preference_Enum_Enum =
|
|
558
|
-
/** All notifications for all events */
|
|
559
|
-
'All'
|
|
560
|
-
/** Notifications for mentions and PromptQL replies to your questions */
|
|
561
|
-
| 'MentionsAndReplies'
|
|
562
|
-
/** No notifications for any event */
|
|
563
|
-
| 'Nothing';
|
|
564
|
-
/** Boolean expression to compare columns of type "notification_preference_enum_enum". All fields are combined with logical 'AND'. */
|
|
565
|
-
type Notification_Preference_Enum_Enum_Comparison_Exp = {
|
|
566
|
-
_eq?: InputMaybe<Notification_Preference_Enum_Enum>;
|
|
567
|
-
_in?: InputMaybe<Array<Notification_Preference_Enum_Enum>>;
|
|
568
|
-
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
569
|
-
_neq?: InputMaybe<Notification_Preference_Enum_Enum>;
|
|
570
|
-
_nin?: InputMaybe<Array<Notification_Preference_Enum_Enum>>;
|
|
571
|
-
};
|
|
572
|
-
/** Ordering options when selecting data from "notification_preference_enum". */
|
|
573
|
-
type Notification_Preference_Enum_Order_By = {
|
|
574
|
-
comment?: InputMaybe<Order_By>;
|
|
575
|
-
user_preferences_desktop_notification_preferences_aggregate?: InputMaybe<User_Preferences_Aggregate_Order_By>;
|
|
576
|
-
user_preferences_mobile_notification_preferences_aggregate?: InputMaybe<User_Preferences_Aggregate_Order_By>;
|
|
577
|
-
user_preferences_slack_notification_preferences_aggregate?: InputMaybe<User_Preferences_Aggregate_Order_By>;
|
|
578
|
-
user_slack_notification_preferences_aggregate?: InputMaybe<User_Slack_Notification_Preferences_Aggregate_Order_By>;
|
|
579
|
-
value?: InputMaybe<Order_By>;
|
|
580
|
-
};
|
|
581
|
-
/** column ordering options */
|
|
582
|
-
type Order_By =
|
|
583
|
-
/** in ascending order, nulls last */
|
|
584
|
-
'asc'
|
|
585
|
-
/** in ascending order, nulls first */
|
|
586
|
-
| 'asc_nulls_first'
|
|
587
|
-
/** in ascending order, nulls last */
|
|
588
|
-
| 'asc_nulls_last'
|
|
589
|
-
/** in descending order, nulls first */
|
|
590
|
-
| 'desc'
|
|
591
|
-
/** in descending order, nulls first */
|
|
592
|
-
| 'desc_nulls_first'
|
|
593
|
-
/** in descending order, nulls last */
|
|
594
|
-
| 'desc_nulls_last';
|
|
595
|
-
/** order by aggregate values of table "pinned_threads_v2" */
|
|
596
|
-
type Pinned_Threads_V2_Aggregate_Order_By = {
|
|
597
|
-
count?: InputMaybe<Order_By>;
|
|
598
|
-
max?: InputMaybe<Pinned_Threads_V2_Max_Order_By>;
|
|
599
|
-
min?: InputMaybe<Pinned_Threads_V2_Min_Order_By>;
|
|
600
|
-
};
|
|
601
|
-
/** Boolean expression to filter rows from the table "pinned_threads_v2". All fields are combined with a logical 'AND'. */
|
|
602
|
-
type Pinned_Threads_V2_Bool_Exp = {
|
|
603
|
-
_and?: InputMaybe<Array<Pinned_Threads_V2_Bool_Exp>>;
|
|
604
|
-
_not?: InputMaybe<Pinned_Threads_V2_Bool_Exp>;
|
|
605
|
-
_or?: InputMaybe<Array<Pinned_Threads_V2_Bool_Exp>>;
|
|
606
|
-
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
607
|
-
thread?: InputMaybe<Threads_V2_Bool_Exp>;
|
|
608
|
-
thread_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
609
|
-
user_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
610
|
-
};
|
|
611
|
-
/** order by max() on columns of table "pinned_threads_v2" */
|
|
612
|
-
type Pinned_Threads_V2_Max_Order_By = {
|
|
613
|
-
created_at?: InputMaybe<Order_By>;
|
|
614
|
-
thread_id?: InputMaybe<Order_By>;
|
|
615
|
-
user_id?: InputMaybe<Order_By>;
|
|
616
|
-
};
|
|
617
|
-
/** order by min() on columns of table "pinned_threads_v2" */
|
|
618
|
-
type Pinned_Threads_V2_Min_Order_By = {
|
|
619
|
-
created_at?: InputMaybe<Order_By>;
|
|
620
|
-
thread_id?: InputMaybe<Order_By>;
|
|
621
|
-
user_id?: InputMaybe<Order_By>;
|
|
622
|
-
};
|
|
623
|
-
type Program_Artifact_Kind_Enum_Enum =
|
|
624
|
-
/** The artifact is data produced by the program */
|
|
625
|
-
'Data'
|
|
626
|
-
/** The artifact is a file inside the program */
|
|
627
|
-
| 'File';
|
|
628
|
-
/** Boolean expression to compare columns of type "program_artifact_kind_enum_enum". All fields are combined with logical 'AND'. */
|
|
629
|
-
type Program_Artifact_Kind_Enum_Enum_Comparison_Exp = {
|
|
630
|
-
_eq?: InputMaybe<Program_Artifact_Kind_Enum_Enum>;
|
|
631
|
-
_in?: InputMaybe<Array<Program_Artifact_Kind_Enum_Enum>>;
|
|
632
|
-
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
633
|
-
_neq?: InputMaybe<Program_Artifact_Kind_Enum_Enum>;
|
|
634
|
-
_nin?: InputMaybe<Array<Program_Artifact_Kind_Enum_Enum>>;
|
|
635
|
-
};
|
|
636
|
-
type Program_Artifacts_Aggregate_Bool_Exp = {
|
|
637
|
-
count?: InputMaybe<Program_Artifacts_Aggregate_Bool_Exp_Count>;
|
|
638
|
-
};
|
|
639
|
-
type Program_Artifacts_Aggregate_Bool_Exp_Count = {
|
|
640
|
-
arguments?: InputMaybe<Array<Program_Artifacts_Select_Column>>;
|
|
641
|
-
distinct?: InputMaybe<Scalars['Boolean']['input']>;
|
|
642
|
-
filter?: InputMaybe<Program_Artifacts_Bool_Exp>;
|
|
643
|
-
predicate: Int_Comparison_Exp;
|
|
644
|
-
};
|
|
645
|
-
/** order by aggregate values of table "program_artifacts" */
|
|
646
|
-
type Program_Artifacts_Aggregate_Order_By = {
|
|
647
|
-
count?: InputMaybe<Order_By>;
|
|
648
|
-
max?: InputMaybe<Program_Artifacts_Max_Order_By>;
|
|
649
|
-
min?: InputMaybe<Program_Artifacts_Min_Order_By>;
|
|
650
|
-
};
|
|
651
|
-
/** Boolean expression to filter rows from the table "program_artifacts". All fields are combined with a logical 'AND'. */
|
|
652
|
-
type Program_Artifacts_Bool_Exp = {
|
|
653
|
-
_and?: InputMaybe<Array<Program_Artifacts_Bool_Exp>>;
|
|
654
|
-
_not?: InputMaybe<Program_Artifacts_Bool_Exp>;
|
|
655
|
-
_or?: InputMaybe<Array<Program_Artifacts_Bool_Exp>>;
|
|
656
|
-
artifact?: InputMaybe<Artifacts_Bool_Exp>;
|
|
657
|
-
artifact_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
658
|
-
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
659
|
-
kind?: InputMaybe<Program_Artifact_Kind_Enum_Enum_Comparison_Exp>;
|
|
660
|
-
name?: InputMaybe<String_Comparison_Exp>;
|
|
661
|
-
program?: InputMaybe<Programs_Bool_Exp>;
|
|
662
|
-
program_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
663
|
-
updated_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
664
|
-
};
|
|
665
|
-
/** order by max() on columns of table "program_artifacts" */
|
|
666
|
-
type Program_Artifacts_Max_Order_By = {
|
|
667
|
-
artifact_id?: InputMaybe<Order_By>;
|
|
668
|
-
created_at?: InputMaybe<Order_By>;
|
|
669
|
-
name?: InputMaybe<Order_By>;
|
|
670
|
-
program_id?: InputMaybe<Order_By>;
|
|
671
|
-
updated_at?: InputMaybe<Order_By>;
|
|
672
|
-
};
|
|
673
|
-
/** order by min() on columns of table "program_artifacts" */
|
|
674
|
-
type Program_Artifacts_Min_Order_By = {
|
|
675
|
-
artifact_id?: InputMaybe<Order_By>;
|
|
676
|
-
created_at?: InputMaybe<Order_By>;
|
|
677
|
-
name?: InputMaybe<Order_By>;
|
|
678
|
-
program_id?: InputMaybe<Order_By>;
|
|
679
|
-
updated_at?: InputMaybe<Order_By>;
|
|
680
|
-
};
|
|
681
|
-
/** Ordering options when selecting data from "program_artifacts". */
|
|
682
|
-
type Program_Artifacts_Order_By = {
|
|
683
|
-
artifact?: InputMaybe<Artifacts_Order_By>;
|
|
684
|
-
artifact_id?: InputMaybe<Order_By>;
|
|
685
|
-
created_at?: InputMaybe<Order_By>;
|
|
686
|
-
kind?: InputMaybe<Order_By>;
|
|
687
|
-
name?: InputMaybe<Order_By>;
|
|
688
|
-
program?: InputMaybe<Programs_Order_By>;
|
|
689
|
-
program_id?: InputMaybe<Order_By>;
|
|
690
|
-
updated_at?: InputMaybe<Order_By>;
|
|
691
|
-
};
|
|
692
|
-
/** select columns of table "program_artifacts" */
|
|
693
|
-
type Program_Artifacts_Select_Column =
|
|
694
|
-
/** column name */
|
|
695
|
-
'artifact_id'
|
|
696
|
-
/** column name */
|
|
697
|
-
| 'created_at'
|
|
698
|
-
/** column name */
|
|
699
|
-
| 'kind'
|
|
700
|
-
/** column name */
|
|
701
|
-
| 'name'
|
|
702
|
-
/** column name */
|
|
703
|
-
| 'program_id'
|
|
704
|
-
/** column name */
|
|
705
|
-
| 'updated_at';
|
|
706
|
-
/** Boolean expression to filter rows from the table "program_run_artifacts". All fields are combined with a logical 'AND'. */
|
|
707
|
-
type Program_Run_Artifacts_Bool_Exp = {
|
|
708
|
-
_and?: InputMaybe<Array<Program_Run_Artifacts_Bool_Exp>>;
|
|
709
|
-
_not?: InputMaybe<Program_Run_Artifacts_Bool_Exp>;
|
|
710
|
-
_or?: InputMaybe<Array<Program_Run_Artifacts_Bool_Exp>>;
|
|
711
|
-
artifact_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
712
|
-
artifact_version?: InputMaybe<Int_Comparison_Exp>;
|
|
713
|
-
artifact_version_object?: InputMaybe<Artifact_Versions_Bool_Exp>;
|
|
714
|
-
program_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
715
|
-
program_run?: InputMaybe<Program_Runs_Bool_Exp>;
|
|
716
|
-
run_id?: InputMaybe<Bigint_Comparison_Exp>;
|
|
717
|
-
};
|
|
718
|
-
/** Boolean expression to filter rows from the table "program_run_events". All fields are combined with a logical 'AND'. */
|
|
719
|
-
type Program_Run_Events_Bool_Exp = {
|
|
720
|
-
_and?: InputMaybe<Array<Program_Run_Events_Bool_Exp>>;
|
|
721
|
-
_not?: InputMaybe<Program_Run_Events_Bool_Exp>;
|
|
722
|
-
_or?: InputMaybe<Array<Program_Run_Events_Bool_Exp>>;
|
|
723
|
-
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
724
|
-
event_data?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
725
|
-
event_id?: InputMaybe<Bigint_Comparison_Exp>;
|
|
726
|
-
program_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
727
|
-
program_run?: InputMaybe<Program_Runs_Bool_Exp>;
|
|
728
|
-
run_id?: InputMaybe<Bigint_Comparison_Exp>;
|
|
729
|
-
step_index?: InputMaybe<Int_Comparison_Exp>;
|
|
730
|
-
type?: InputMaybe<String_Comparison_Exp>;
|
|
731
|
-
};
|
|
732
|
-
/** order by aggregate values of table "program_runs" */
|
|
733
|
-
type Program_Runs_Aggregate_Order_By = {
|
|
734
|
-
avg?: InputMaybe<Program_Runs_Avg_Order_By>;
|
|
735
|
-
count?: InputMaybe<Order_By>;
|
|
736
|
-
max?: InputMaybe<Program_Runs_Max_Order_By>;
|
|
737
|
-
min?: InputMaybe<Program_Runs_Min_Order_By>;
|
|
738
|
-
stddev?: InputMaybe<Program_Runs_Stddev_Order_By>;
|
|
739
|
-
stddev_pop?: InputMaybe<Program_Runs_Stddev_Pop_Order_By>;
|
|
740
|
-
stddev_samp?: InputMaybe<Program_Runs_Stddev_Samp_Order_By>;
|
|
741
|
-
sum?: InputMaybe<Program_Runs_Sum_Order_By>;
|
|
742
|
-
var_pop?: InputMaybe<Program_Runs_Var_Pop_Order_By>;
|
|
743
|
-
var_samp?: InputMaybe<Program_Runs_Var_Samp_Order_By>;
|
|
744
|
-
variance?: InputMaybe<Program_Runs_Variance_Order_By>;
|
|
745
|
-
};
|
|
746
|
-
/** order by avg() on columns of table "program_runs" */
|
|
747
|
-
type Program_Runs_Avg_Order_By = {
|
|
748
|
-
run_id?: InputMaybe<Order_By>;
|
|
749
|
-
};
|
|
750
|
-
/** Boolean expression to filter rows from the table "program_runs". All fields are combined with a logical 'AND'. */
|
|
751
|
-
type Program_Runs_Bool_Exp = {
|
|
752
|
-
_and?: InputMaybe<Array<Program_Runs_Bool_Exp>>;
|
|
753
|
-
_not?: InputMaybe<Program_Runs_Bool_Exp>;
|
|
754
|
-
_or?: InputMaybe<Array<Program_Runs_Bool_Exp>>;
|
|
755
|
-
build_fqdn?: InputMaybe<String_Comparison_Exp>;
|
|
756
|
-
completed_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
757
|
-
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
758
|
-
entry_point_artifact?: InputMaybe<Uuid_Comparison_Exp>;
|
|
759
|
-
entry_point_artifact_object?: InputMaybe<Artifacts_Bool_Exp>;
|
|
760
|
-
program?: InputMaybe<Programs_Bool_Exp>;
|
|
761
|
-
program_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
762
|
-
program_run_artifacts?: InputMaybe<Program_Run_Artifacts_Bool_Exp>;
|
|
763
|
-
program_run_events?: InputMaybe<Program_Run_Events_Bool_Exp>;
|
|
764
|
-
run_id?: InputMaybe<Bigint_Comparison_Exp>;
|
|
765
|
-
successful?: InputMaybe<Boolean_Comparison_Exp>;
|
|
766
|
-
};
|
|
767
|
-
/** order by max() on columns of table "program_runs" */
|
|
768
|
-
type Program_Runs_Max_Order_By = {
|
|
769
|
-
build_fqdn?: InputMaybe<Order_By>;
|
|
770
|
-
completed_at?: InputMaybe<Order_By>;
|
|
771
|
-
created_at?: InputMaybe<Order_By>;
|
|
772
|
-
entry_point_artifact?: InputMaybe<Order_By>;
|
|
773
|
-
program_id?: InputMaybe<Order_By>;
|
|
774
|
-
run_id?: InputMaybe<Order_By>;
|
|
775
|
-
};
|
|
776
|
-
/** order by min() on columns of table "program_runs" */
|
|
777
|
-
type Program_Runs_Min_Order_By = {
|
|
778
|
-
build_fqdn?: InputMaybe<Order_By>;
|
|
779
|
-
completed_at?: InputMaybe<Order_By>;
|
|
780
|
-
created_at?: InputMaybe<Order_By>;
|
|
781
|
-
entry_point_artifact?: InputMaybe<Order_By>;
|
|
782
|
-
program_id?: InputMaybe<Order_By>;
|
|
783
|
-
run_id?: InputMaybe<Order_By>;
|
|
784
|
-
};
|
|
785
|
-
/** order by stddev() on columns of table "program_runs" */
|
|
786
|
-
type Program_Runs_Stddev_Order_By = {
|
|
787
|
-
run_id?: InputMaybe<Order_By>;
|
|
788
|
-
};
|
|
789
|
-
/** order by stddev_pop() on columns of table "program_runs" */
|
|
790
|
-
type Program_Runs_Stddev_Pop_Order_By = {
|
|
791
|
-
run_id?: InputMaybe<Order_By>;
|
|
792
|
-
};
|
|
793
|
-
/** order by stddev_samp() on columns of table "program_runs" */
|
|
794
|
-
type Program_Runs_Stddev_Samp_Order_By = {
|
|
795
|
-
run_id?: InputMaybe<Order_By>;
|
|
796
|
-
};
|
|
797
|
-
/** order by sum() on columns of table "program_runs" */
|
|
798
|
-
type Program_Runs_Sum_Order_By = {
|
|
799
|
-
run_id?: InputMaybe<Order_By>;
|
|
800
|
-
};
|
|
801
|
-
/** order by var_pop() on columns of table "program_runs" */
|
|
802
|
-
type Program_Runs_Var_Pop_Order_By = {
|
|
803
|
-
run_id?: InputMaybe<Order_By>;
|
|
804
|
-
};
|
|
805
|
-
/** order by var_samp() on columns of table "program_runs" */
|
|
806
|
-
type Program_Runs_Var_Samp_Order_By = {
|
|
807
|
-
run_id?: InputMaybe<Order_By>;
|
|
808
|
-
};
|
|
809
|
-
/** order by variance() on columns of table "program_runs" */
|
|
810
|
-
type Program_Runs_Variance_Order_By = {
|
|
811
|
-
run_id?: InputMaybe<Order_By>;
|
|
812
|
-
};
|
|
813
|
-
type Program_Visibility_Enum_Enum =
|
|
814
|
-
/** Owner can read and write, no one else has access */
|
|
815
|
-
'OwnerReadWrite'
|
|
816
|
-
/** Owner can read and write, project members can read the code and schedules, artifacts and runs */
|
|
817
|
-
| 'ProjectReadCodeAndData'
|
|
818
|
-
/** Owner can read and write, project members can read and write */
|
|
819
|
-
| 'ProjectReadWrite';
|
|
820
|
-
/** Boolean expression to compare columns of type "program_visibility_enum_enum". All fields are combined with logical 'AND'. */
|
|
821
|
-
type Program_Visibility_Enum_Enum_Comparison_Exp = {
|
|
822
|
-
_eq?: InputMaybe<Program_Visibility_Enum_Enum>;
|
|
823
|
-
_in?: InputMaybe<Array<Program_Visibility_Enum_Enum>>;
|
|
824
|
-
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
825
|
-
_neq?: InputMaybe<Program_Visibility_Enum_Enum>;
|
|
826
|
-
_nin?: InputMaybe<Array<Program_Visibility_Enum_Enum>>;
|
|
827
|
-
};
|
|
828
|
-
/** Boolean expression to filter rows from the table "programs". All fields are combined with a logical 'AND'. */
|
|
829
|
-
type Programs_Bool_Exp = {
|
|
830
|
-
_and?: InputMaybe<Array<Programs_Bool_Exp>>;
|
|
831
|
-
_not?: InputMaybe<Programs_Bool_Exp>;
|
|
832
|
-
_or?: InputMaybe<Array<Programs_Bool_Exp>>;
|
|
833
|
-
copied_from_program?: InputMaybe<Programs_Bool_Exp>;
|
|
834
|
-
copied_from_program_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
835
|
-
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
836
|
-
id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
837
|
-
name?: InputMaybe<String_Comparison_Exp>;
|
|
838
|
-
owner_user?: InputMaybe<Promptql_Users_Bool_Exp>;
|
|
839
|
-
owner_user_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
840
|
-
package_name?: InputMaybe<String_Comparison_Exp>;
|
|
841
|
-
program_artifacts?: InputMaybe<Program_Artifacts_Bool_Exp>;
|
|
842
|
-
program_artifacts_aggregate?: InputMaybe<Program_Artifacts_Aggregate_Bool_Exp>;
|
|
843
|
-
program_runs?: InputMaybe<Program_Runs_Bool_Exp>;
|
|
844
|
-
project_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
845
|
-
updated_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
846
|
-
visibility?: InputMaybe<Program_Visibility_Enum_Enum_Comparison_Exp>;
|
|
847
|
-
};
|
|
848
|
-
/** Ordering options when selecting data from "programs". */
|
|
849
|
-
type Programs_Order_By = {
|
|
850
|
-
copied_from_program?: InputMaybe<Programs_Order_By>;
|
|
851
|
-
copied_from_program_id?: InputMaybe<Order_By>;
|
|
852
|
-
created_at?: InputMaybe<Order_By>;
|
|
853
|
-
id?: InputMaybe<Order_By>;
|
|
854
|
-
name?: InputMaybe<Order_By>;
|
|
855
|
-
owner_user?: InputMaybe<Promptql_Users_Order_By>;
|
|
856
|
-
owner_user_id?: InputMaybe<Order_By>;
|
|
857
|
-
package_name?: InputMaybe<Order_By>;
|
|
858
|
-
program_artifacts_aggregate?: InputMaybe<Program_Artifacts_Aggregate_Order_By>;
|
|
859
|
-
program_runs_aggregate?: InputMaybe<Program_Runs_Aggregate_Order_By>;
|
|
860
|
-
project_id?: InputMaybe<Order_By>;
|
|
861
|
-
updated_at?: InputMaybe<Order_By>;
|
|
862
|
-
visibility?: InputMaybe<Order_By>;
|
|
863
|
-
};
|
|
864
|
-
/** Boolean expression to filter rows from the table "project_artifacts". All fields are combined with a logical 'AND'. */
|
|
865
|
-
type Project_Artifacts_Bool_Exp = {
|
|
866
|
-
_and?: InputMaybe<Array<Project_Artifacts_Bool_Exp>>;
|
|
867
|
-
_not?: InputMaybe<Project_Artifacts_Bool_Exp>;
|
|
868
|
-
_or?: InputMaybe<Array<Project_Artifacts_Bool_Exp>>;
|
|
869
|
-
artifact?: InputMaybe<Artifacts_Bool_Exp>;
|
|
870
|
-
artifact_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
871
|
-
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
872
|
-
name?: InputMaybe<String_Comparison_Exp>;
|
|
873
|
-
project_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
874
|
-
updated_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
875
|
-
user_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
876
|
-
visibility?: InputMaybe<String_Comparison_Exp>;
|
|
877
|
-
};
|
|
878
|
-
/** Ordering options when selecting data from "project_artifacts". */
|
|
879
|
-
type Project_Artifacts_Order_By = {
|
|
880
|
-
artifact?: InputMaybe<Artifacts_Order_By>;
|
|
881
|
-
artifact_id?: InputMaybe<Order_By>;
|
|
882
|
-
created_at?: InputMaybe<Order_By>;
|
|
883
|
-
name?: InputMaybe<Order_By>;
|
|
884
|
-
project_id?: InputMaybe<Order_By>;
|
|
885
|
-
updated_at?: InputMaybe<Order_By>;
|
|
886
|
-
user_id?: InputMaybe<Order_By>;
|
|
887
|
-
visibility?: InputMaybe<Order_By>;
|
|
888
|
-
};
|
|
889
|
-
/** Boolean expression to filter rows from the table "project_configuration". All fields are combined with a logical 'AND'. */
|
|
890
|
-
type Project_Configuration_Bool_Exp = {
|
|
891
|
-
_and?: InputMaybe<Array<Project_Configuration_Bool_Exp>>;
|
|
892
|
-
_not?: InputMaybe<Project_Configuration_Bool_Exp>;
|
|
893
|
-
_or?: InputMaybe<Array<Project_Configuration_Bool_Exp>>;
|
|
894
|
-
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
895
|
-
data_studio?: InputMaybe<Boolean_Comparison_Exp>;
|
|
896
|
-
default_onboarding_modal_visibility?: InputMaybe<Boolean_Comparison_Exp>;
|
|
897
|
-
default_room?: InputMaybe<Uuid_Comparison_Exp>;
|
|
898
|
-
default_room_info?: InputMaybe<Rooms_Bool_Exp>;
|
|
899
|
-
default_thread_visibility?: InputMaybe<Thread_Visibility_Enum_Enum_Comparison_Exp>;
|
|
900
|
-
enable_social_feed?: InputMaybe<Boolean_Comparison_Exp>;
|
|
901
|
-
github_installations?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
902
|
-
project_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
903
|
-
show_github_project_onboarding?: InputMaybe<Boolean_Comparison_Exp>;
|
|
904
|
-
thread_sharing_enabled?: InputMaybe<Boolean_Comparison_Exp>;
|
|
905
|
-
updated_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
906
|
-
};
|
|
907
|
-
/** Ordering options when selecting data from "project_configuration". */
|
|
908
|
-
type Project_Configuration_Order_By = {
|
|
909
|
-
created_at?: InputMaybe<Order_By>;
|
|
910
|
-
data_studio?: InputMaybe<Order_By>;
|
|
911
|
-
default_onboarding_modal_visibility?: InputMaybe<Order_By>;
|
|
912
|
-
default_room?: InputMaybe<Order_By>;
|
|
913
|
-
default_room_info?: InputMaybe<Rooms_Order_By>;
|
|
914
|
-
default_thread_visibility?: InputMaybe<Order_By>;
|
|
915
|
-
enable_social_feed?: InputMaybe<Order_By>;
|
|
916
|
-
github_installations?: InputMaybe<Order_By>;
|
|
917
|
-
project_id?: InputMaybe<Order_By>;
|
|
918
|
-
show_github_project_onboarding?: InputMaybe<Order_By>;
|
|
919
|
-
thread_sharing_enabled?: InputMaybe<Order_By>;
|
|
920
|
-
updated_at?: InputMaybe<Order_By>;
|
|
921
|
-
};
|
|
922
|
-
/** order by aggregate values of table "promptql_users" */
|
|
923
|
-
type Promptql_Users_Aggregate_Order_By = {
|
|
924
|
-
avg?: InputMaybe<Promptql_Users_Avg_Order_By>;
|
|
925
|
-
count?: InputMaybe<Order_By>;
|
|
926
|
-
max?: InputMaybe<Promptql_Users_Max_Order_By>;
|
|
927
|
-
min?: InputMaybe<Promptql_Users_Min_Order_By>;
|
|
928
|
-
stddev?: InputMaybe<Promptql_Users_Stddev_Order_By>;
|
|
929
|
-
stddev_pop?: InputMaybe<Promptql_Users_Stddev_Pop_Order_By>;
|
|
930
|
-
stddev_samp?: InputMaybe<Promptql_Users_Stddev_Samp_Order_By>;
|
|
931
|
-
sum?: InputMaybe<Promptql_Users_Sum_Order_By>;
|
|
932
|
-
var_pop?: InputMaybe<Promptql_Users_Var_Pop_Order_By>;
|
|
933
|
-
var_samp?: InputMaybe<Promptql_Users_Var_Samp_Order_By>;
|
|
934
|
-
variance?: InputMaybe<Promptql_Users_Variance_Order_By>;
|
|
935
|
-
};
|
|
936
|
-
/** order by avg() on columns of table "promptql_users" */
|
|
937
|
-
type Promptql_Users_Avg_Order_By = {
|
|
938
|
-
weight?: InputMaybe<Order_By>;
|
|
939
|
-
};
|
|
940
|
-
/** Boolean expression to filter rows from the table "promptql_users". All fields are combined with a logical 'AND'. */
|
|
941
|
-
type Promptql_Users_Bool_Exp = {
|
|
942
|
-
_and?: InputMaybe<Array<Promptql_Users_Bool_Exp>>;
|
|
943
|
-
_not?: InputMaybe<Promptql_Users_Bool_Exp>;
|
|
944
|
-
_or?: InputMaybe<Array<Promptql_Users_Bool_Exp>>;
|
|
945
|
-
control_plane_user_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
946
|
-
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
947
|
-
custom_claim_assignments?: InputMaybe<Custom_Claim_Assignments_Bool_Exp>;
|
|
948
|
-
display_name?: InputMaybe<String_Comparison_Exp>;
|
|
949
|
-
email?: InputMaybe<Citext_Comparison_Exp>;
|
|
950
|
-
is_active?: InputMaybe<Boolean_Comparison_Exp>;
|
|
951
|
-
is_app_admin?: InputMaybe<Boolean_Comparison_Exp>;
|
|
952
|
-
is_bot?: InputMaybe<Boolean_Comparison_Exp>;
|
|
953
|
-
project_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
954
|
-
promptql_user_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
955
|
-
slack_info?: InputMaybe<Slack_Info_Bool_Exp>;
|
|
956
|
-
starred_artifacts?: InputMaybe<Starred_Artifacts_Bool_Exp>;
|
|
957
|
-
starred_threads?: InputMaybe<Starred_Threads_Bool_Exp>;
|
|
958
|
-
thread_user_typing?: InputMaybe<Thread_User_Typing_Bool_Exp>;
|
|
959
|
-
thread_user_typing_aggregate?: InputMaybe<Thread_User_Typing_Aggregate_Bool_Exp>;
|
|
960
|
-
updated_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
961
|
-
user_group_members?: InputMaybe<User_Group_Members_Bool_Exp>;
|
|
962
|
-
user_preference?: InputMaybe<User_Preferences_Bool_Exp>;
|
|
963
|
-
user_slack_notification_preference?: InputMaybe<User_Slack_Notification_Preferences_Bool_Exp>;
|
|
964
|
-
weight?: InputMaybe<Int_Comparison_Exp>;
|
|
965
|
-
};
|
|
966
|
-
/** order by max() on columns of table "promptql_users" */
|
|
967
|
-
type Promptql_Users_Max_Order_By = {
|
|
968
|
-
control_plane_user_id?: InputMaybe<Order_By>;
|
|
969
|
-
created_at?: InputMaybe<Order_By>;
|
|
970
|
-
display_name?: InputMaybe<Order_By>;
|
|
971
|
-
email?: InputMaybe<Order_By>;
|
|
972
|
-
project_id?: InputMaybe<Order_By>;
|
|
973
|
-
promptql_user_id?: InputMaybe<Order_By>;
|
|
974
|
-
updated_at?: InputMaybe<Order_By>;
|
|
975
|
-
weight?: InputMaybe<Order_By>;
|
|
976
|
-
};
|
|
977
|
-
/** order by min() on columns of table "promptql_users" */
|
|
978
|
-
type Promptql_Users_Min_Order_By = {
|
|
979
|
-
control_plane_user_id?: InputMaybe<Order_By>;
|
|
980
|
-
created_at?: InputMaybe<Order_By>;
|
|
981
|
-
display_name?: InputMaybe<Order_By>;
|
|
982
|
-
email?: InputMaybe<Order_By>;
|
|
983
|
-
project_id?: InputMaybe<Order_By>;
|
|
984
|
-
promptql_user_id?: InputMaybe<Order_By>;
|
|
985
|
-
updated_at?: InputMaybe<Order_By>;
|
|
986
|
-
weight?: InputMaybe<Order_By>;
|
|
987
|
-
};
|
|
988
|
-
/** Ordering options when selecting data from "promptql_users". */
|
|
989
|
-
type Promptql_Users_Order_By = {
|
|
990
|
-
control_plane_user_id?: InputMaybe<Order_By>;
|
|
991
|
-
created_at?: InputMaybe<Order_By>;
|
|
992
|
-
custom_claim_assignments_aggregate?: InputMaybe<Custom_Claim_Assignments_Aggregate_Order_By>;
|
|
993
|
-
display_name?: InputMaybe<Order_By>;
|
|
994
|
-
email?: InputMaybe<Order_By>;
|
|
995
|
-
is_active?: InputMaybe<Order_By>;
|
|
996
|
-
is_app_admin?: InputMaybe<Order_By>;
|
|
997
|
-
is_bot?: InputMaybe<Order_By>;
|
|
998
|
-
project_id?: InputMaybe<Order_By>;
|
|
999
|
-
promptql_user_id?: InputMaybe<Order_By>;
|
|
1000
|
-
slack_info?: InputMaybe<Slack_Info_Order_By>;
|
|
1001
|
-
starred_artifacts_aggregate?: InputMaybe<Starred_Artifacts_Aggregate_Order_By>;
|
|
1002
|
-
starred_threads_aggregate?: InputMaybe<Starred_Threads_Aggregate_Order_By>;
|
|
1003
|
-
thread_user_typing_aggregate?: InputMaybe<Thread_User_Typing_Aggregate_Order_By>;
|
|
1004
|
-
updated_at?: InputMaybe<Order_By>;
|
|
1005
|
-
user_group_members_aggregate?: InputMaybe<User_Group_Members_Aggregate_Order_By>;
|
|
1006
|
-
user_preference?: InputMaybe<User_Preferences_Order_By>;
|
|
1007
|
-
user_slack_notification_preference?: InputMaybe<User_Slack_Notification_Preferences_Order_By>;
|
|
1008
|
-
weight?: InputMaybe<Order_By>;
|
|
1009
|
-
};
|
|
1010
|
-
/** order by stddev() on columns of table "promptql_users" */
|
|
1011
|
-
type Promptql_Users_Stddev_Order_By = {
|
|
1012
|
-
weight?: InputMaybe<Order_By>;
|
|
1013
|
-
};
|
|
1014
|
-
/** order by stddev_pop() on columns of table "promptql_users" */
|
|
1015
|
-
type Promptql_Users_Stddev_Pop_Order_By = {
|
|
1016
|
-
weight?: InputMaybe<Order_By>;
|
|
1017
|
-
};
|
|
1018
|
-
/** order by stddev_samp() on columns of table "promptql_users" */
|
|
1019
|
-
type Promptql_Users_Stddev_Samp_Order_By = {
|
|
1020
|
-
weight?: InputMaybe<Order_By>;
|
|
1021
|
-
};
|
|
1022
|
-
/** order by sum() on columns of table "promptql_users" */
|
|
1023
|
-
type Promptql_Users_Sum_Order_By = {
|
|
1024
|
-
weight?: InputMaybe<Order_By>;
|
|
1025
|
-
};
|
|
1026
|
-
/** order by var_pop() on columns of table "promptql_users" */
|
|
1027
|
-
type Promptql_Users_Var_Pop_Order_By = {
|
|
1028
|
-
weight?: InputMaybe<Order_By>;
|
|
1029
|
-
};
|
|
1030
|
-
/** order by var_samp() on columns of table "promptql_users" */
|
|
1031
|
-
type Promptql_Users_Var_Samp_Order_By = {
|
|
1032
|
-
weight?: InputMaybe<Order_By>;
|
|
1033
|
-
};
|
|
1034
|
-
/** order by variance() on columns of table "promptql_users" */
|
|
1035
|
-
type Promptql_Users_Variance_Order_By = {
|
|
1036
|
-
weight?: InputMaybe<Order_By>;
|
|
1037
|
-
};
|
|
1038
|
-
/** order by aggregate values of table "public_room_active_users" */
|
|
1039
|
-
type Public_Room_Active_Users_Aggregate_Order_By = {
|
|
1040
|
-
count?: InputMaybe<Order_By>;
|
|
1041
|
-
max?: InputMaybe<Public_Room_Active_Users_Max_Order_By>;
|
|
1042
|
-
min?: InputMaybe<Public_Room_Active_Users_Min_Order_By>;
|
|
1043
|
-
};
|
|
1044
|
-
/** Boolean expression to filter rows from the table "public_room_active_users". All fields are combined with a logical 'AND'. */
|
|
1045
|
-
type Public_Room_Active_Users_Bool_Exp = {
|
|
1046
|
-
_and?: InputMaybe<Array<Public_Room_Active_Users_Bool_Exp>>;
|
|
1047
|
-
_not?: InputMaybe<Public_Room_Active_Users_Bool_Exp>;
|
|
1048
|
-
_or?: InputMaybe<Array<Public_Room_Active_Users_Bool_Exp>>;
|
|
1049
|
-
activated_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1050
|
-
added_by?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1051
|
-
added_by_user?: InputMaybe<Promptql_Users_Bool_Exp>;
|
|
1052
|
-
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1053
|
-
promptql_user?: InputMaybe<Promptql_Users_Bool_Exp>;
|
|
1054
|
-
promptql_user_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1055
|
-
room?: InputMaybe<Rooms_Bool_Exp>;
|
|
1056
|
-
room_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1057
|
-
updated_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1058
|
-
};
|
|
1059
|
-
/** order by max() on columns of table "public_room_active_users" */
|
|
1060
|
-
type Public_Room_Active_Users_Max_Order_By = {
|
|
1061
|
-
activated_at?: InputMaybe<Order_By>;
|
|
1062
|
-
added_by?: InputMaybe<Order_By>;
|
|
1063
|
-
created_at?: InputMaybe<Order_By>;
|
|
1064
|
-
promptql_user_id?: InputMaybe<Order_By>;
|
|
1065
|
-
room_id?: InputMaybe<Order_By>;
|
|
1066
|
-
updated_at?: InputMaybe<Order_By>;
|
|
1067
|
-
};
|
|
1068
|
-
/** order by min() on columns of table "public_room_active_users" */
|
|
1069
|
-
type Public_Room_Active_Users_Min_Order_By = {
|
|
1070
|
-
activated_at?: InputMaybe<Order_By>;
|
|
1071
|
-
added_by?: InputMaybe<Order_By>;
|
|
1072
|
-
created_at?: InputMaybe<Order_By>;
|
|
1073
|
-
promptql_user_id?: InputMaybe<Order_By>;
|
|
1074
|
-
room_id?: InputMaybe<Order_By>;
|
|
1075
|
-
updated_at?: InputMaybe<Order_By>;
|
|
1076
|
-
};
|
|
1077
|
-
/** order by aggregate values of table "room_active_member" */
|
|
1078
|
-
type Room_Active_Member_Aggregate_Order_By = {
|
|
1079
|
-
count?: InputMaybe<Order_By>;
|
|
1080
|
-
max?: InputMaybe<Room_Active_Member_Max_Order_By>;
|
|
1081
|
-
min?: InputMaybe<Room_Active_Member_Min_Order_By>;
|
|
1082
|
-
};
|
|
1083
|
-
/** Boolean expression to filter rows from the table "room_active_member". All fields are combined with a logical 'AND'. */
|
|
1084
|
-
type Room_Active_Member_Bool_Exp = {
|
|
1085
|
-
_and?: InputMaybe<Array<Room_Active_Member_Bool_Exp>>;
|
|
1086
|
-
_not?: InputMaybe<Room_Active_Member_Bool_Exp>;
|
|
1087
|
-
_or?: InputMaybe<Array<Room_Active_Member_Bool_Exp>>;
|
|
1088
|
-
display_name?: InputMaybe<String_Comparison_Exp>;
|
|
1089
|
-
email?: InputMaybe<String_Comparison_Exp>;
|
|
1090
|
-
is_owner?: InputMaybe<Boolean_Comparison_Exp>;
|
|
1091
|
-
joined_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1092
|
-
promptql_user_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1093
|
-
user?: InputMaybe<Promptql_Users_Bool_Exp>;
|
|
1094
|
-
};
|
|
1095
|
-
/** order by max() on columns of table "room_active_member" */
|
|
1096
|
-
type Room_Active_Member_Max_Order_By = {
|
|
1097
|
-
display_name?: InputMaybe<Order_By>;
|
|
1098
|
-
email?: InputMaybe<Order_By>;
|
|
1099
|
-
joined_at?: InputMaybe<Order_By>;
|
|
1100
|
-
promptql_user_id?: InputMaybe<Order_By>;
|
|
1101
|
-
};
|
|
1102
|
-
/** order by min() on columns of table "room_active_member" */
|
|
1103
|
-
type Room_Active_Member_Min_Order_By = {
|
|
1104
|
-
display_name?: InputMaybe<Order_By>;
|
|
1105
|
-
email?: InputMaybe<Order_By>;
|
|
1106
|
-
joined_at?: InputMaybe<Order_By>;
|
|
1107
|
-
promptql_user_id?: InputMaybe<Order_By>;
|
|
1108
|
-
};
|
|
1109
|
-
/** Boolean expression to filter rows from the table "room_pinned_artifact". All fields are combined with a logical 'AND'. */
|
|
1110
|
-
type Room_Pinned_Artifact_Bool_Exp = {
|
|
1111
|
-
_and?: InputMaybe<Array<Room_Pinned_Artifact_Bool_Exp>>;
|
|
1112
|
-
_not?: InputMaybe<Room_Pinned_Artifact_Bool_Exp>;
|
|
1113
|
-
_or?: InputMaybe<Array<Room_Pinned_Artifact_Bool_Exp>>;
|
|
1114
|
-
artifact?: InputMaybe<Artifacts_Bool_Exp>;
|
|
1115
|
-
artifact_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1116
|
-
display_states?: InputMaybe<Room_Pinned_Artifact_Display_State_Bool_Exp>;
|
|
1117
|
-
pinned_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1118
|
-
pinned_by?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1119
|
-
pinned_by_user?: InputMaybe<Promptql_Users_Bool_Exp>;
|
|
1120
|
-
room?: InputMaybe<Rooms_Bool_Exp>;
|
|
1121
|
-
room_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1122
|
-
};
|
|
1123
|
-
/** order by aggregate values of table "room_pinned_artifact_display_state" */
|
|
1124
|
-
type Room_Pinned_Artifact_Display_State_Aggregate_Order_By = {
|
|
1125
|
-
count?: InputMaybe<Order_By>;
|
|
1126
|
-
max?: InputMaybe<Room_Pinned_Artifact_Display_State_Max_Order_By>;
|
|
1127
|
-
min?: InputMaybe<Room_Pinned_Artifact_Display_State_Min_Order_By>;
|
|
1128
|
-
};
|
|
1129
|
-
/** Boolean expression to filter rows from the table "room_pinned_artifact_display_state". All fields are combined with a logical 'AND'. */
|
|
1130
|
-
type Room_Pinned_Artifact_Display_State_Bool_Exp = {
|
|
1131
|
-
_and?: InputMaybe<Array<Room_Pinned_Artifact_Display_State_Bool_Exp>>;
|
|
1132
|
-
_not?: InputMaybe<Room_Pinned_Artifact_Display_State_Bool_Exp>;
|
|
1133
|
-
_or?: InputMaybe<Array<Room_Pinned_Artifact_Display_State_Bool_Exp>>;
|
|
1134
|
-
display_state?: InputMaybe<String_Comparison_Exp>;
|
|
1135
|
-
promptql_user?: InputMaybe<Promptql_Users_Bool_Exp>;
|
|
1136
|
-
promptql_user_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1137
|
-
room_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1138
|
-
room_pinned_artifact?: InputMaybe<Room_Pinned_Artifact_Bool_Exp>;
|
|
1139
|
-
updated_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1140
|
-
};
|
|
1141
|
-
/** order by max() on columns of table "room_pinned_artifact_display_state" */
|
|
1142
|
-
type Room_Pinned_Artifact_Display_State_Max_Order_By = {
|
|
1143
|
-
display_state?: InputMaybe<Order_By>;
|
|
1144
|
-
promptql_user_id?: InputMaybe<Order_By>;
|
|
1145
|
-
room_id?: InputMaybe<Order_By>;
|
|
1146
|
-
updated_at?: InputMaybe<Order_By>;
|
|
1147
|
-
};
|
|
1148
|
-
/** order by min() on columns of table "room_pinned_artifact_display_state" */
|
|
1149
|
-
type Room_Pinned_Artifact_Display_State_Min_Order_By = {
|
|
1150
|
-
display_state?: InputMaybe<Order_By>;
|
|
1151
|
-
promptql_user_id?: InputMaybe<Order_By>;
|
|
1152
|
-
room_id?: InputMaybe<Order_By>;
|
|
1153
|
-
updated_at?: InputMaybe<Order_By>;
|
|
1154
|
-
};
|
|
1155
|
-
/** Ordering options when selecting data from "room_pinned_artifact". */
|
|
1156
|
-
type Room_Pinned_Artifact_Order_By = {
|
|
1157
|
-
artifact?: InputMaybe<Artifacts_Order_By>;
|
|
1158
|
-
artifact_id?: InputMaybe<Order_By>;
|
|
1159
|
-
display_states_aggregate?: InputMaybe<Room_Pinned_Artifact_Display_State_Aggregate_Order_By>;
|
|
1160
|
-
pinned_at?: InputMaybe<Order_By>;
|
|
1161
|
-
pinned_by?: InputMaybe<Order_By>;
|
|
1162
|
-
pinned_by_user?: InputMaybe<Promptql_Users_Order_By>;
|
|
1163
|
-
room?: InputMaybe<Rooms_Order_By>;
|
|
1164
|
-
room_id?: InputMaybe<Order_By>;
|
|
1165
|
-
};
|
|
1166
|
-
/** Boolean expression to filter rows from the table "rooms". All fields are combined with a logical 'AND'. */
|
|
1167
|
-
type Rooms_Bool_Exp = {
|
|
1168
|
-
_and?: InputMaybe<Array<Rooms_Bool_Exp>>;
|
|
1169
|
-
_not?: InputMaybe<Rooms_Bool_Exp>;
|
|
1170
|
-
_or?: InputMaybe<Array<Rooms_Bool_Exp>>;
|
|
1171
|
-
active_members?: InputMaybe<Room_Active_Member_Bool_Exp>;
|
|
1172
|
-
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1173
|
-
deleted_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1174
|
-
description?: InputMaybe<String_Comparison_Exp>;
|
|
1175
|
-
has_new_threads?: InputMaybe<Boolean_Comparison_Exp>;
|
|
1176
|
-
name?: InputMaybe<String_Comparison_Exp>;
|
|
1177
|
-
new_participating_threads_count?: InputMaybe<Int_Comparison_Exp>;
|
|
1178
|
-
owner?: InputMaybe<Promptql_Users_Bool_Exp>;
|
|
1179
|
-
project_configuration?: InputMaybe<Project_Configuration_Bool_Exp>;
|
|
1180
|
-
project_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1181
|
-
public_room_active_users?: InputMaybe<Public_Room_Active_Users_Bool_Exp>;
|
|
1182
|
-
room_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1183
|
-
room_pinned_artifact?: InputMaybe<Room_Pinned_Artifact_Bool_Exp>;
|
|
1184
|
-
rooms_participants?: InputMaybe<Rooms_Participants_Bool_Exp>;
|
|
1185
|
-
threads?: InputMaybe<Threads_V2_Bool_Exp>;
|
|
1186
|
-
threads_aggregate?: InputMaybe<Threads_V2_Aggregate_Bool_Exp>;
|
|
1187
|
-
updated_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1188
|
-
user_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1189
|
-
user_room_activity?: InputMaybe<User_Room_Activity_Bool_Exp>;
|
|
1190
|
-
visibility?: InputMaybe<String_Comparison_Exp>;
|
|
1191
|
-
};
|
|
1192
|
-
/** Ordering options when selecting data from "rooms". */
|
|
1193
|
-
type Rooms_Order_By = {
|
|
1194
|
-
active_members_aggregate?: InputMaybe<Room_Active_Member_Aggregate_Order_By>;
|
|
1195
|
-
created_at?: InputMaybe<Order_By>;
|
|
1196
|
-
deleted_at?: InputMaybe<Order_By>;
|
|
1197
|
-
description?: InputMaybe<Order_By>;
|
|
1198
|
-
has_new_threads?: InputMaybe<Order_By>;
|
|
1199
|
-
name?: InputMaybe<Order_By>;
|
|
1200
|
-
new_participating_threads_count?: InputMaybe<Order_By>;
|
|
1201
|
-
owner?: InputMaybe<Promptql_Users_Order_By>;
|
|
1202
|
-
project_configuration?: InputMaybe<Project_Configuration_Order_By>;
|
|
1203
|
-
project_id?: InputMaybe<Order_By>;
|
|
1204
|
-
public_room_active_users_aggregate?: InputMaybe<Public_Room_Active_Users_Aggregate_Order_By>;
|
|
1205
|
-
room_id?: InputMaybe<Order_By>;
|
|
1206
|
-
room_pinned_artifact?: InputMaybe<Room_Pinned_Artifact_Order_By>;
|
|
1207
|
-
rooms_participants_aggregate?: InputMaybe<Rooms_Participants_Aggregate_Order_By>;
|
|
1208
|
-
threads_aggregate?: InputMaybe<Threads_V2_Aggregate_Order_By>;
|
|
1209
|
-
updated_at?: InputMaybe<Order_By>;
|
|
1210
|
-
user_id?: InputMaybe<Order_By>;
|
|
1211
|
-
user_room_activity?: InputMaybe<User_Room_Activity_Order_By>;
|
|
1212
|
-
visibility?: InputMaybe<Order_By>;
|
|
1213
|
-
};
|
|
1214
|
-
/** order by aggregate values of table "rooms_participants" */
|
|
1215
|
-
type Rooms_Participants_Aggregate_Order_By = {
|
|
1216
|
-
count?: InputMaybe<Order_By>;
|
|
1217
|
-
max?: InputMaybe<Rooms_Participants_Max_Order_By>;
|
|
1218
|
-
min?: InputMaybe<Rooms_Participants_Min_Order_By>;
|
|
1219
|
-
};
|
|
1220
|
-
/** Boolean expression to filter rows from the table "rooms_participants". All fields are combined with a logical 'AND'. */
|
|
1221
|
-
type Rooms_Participants_Bool_Exp = {
|
|
1222
|
-
_and?: InputMaybe<Array<Rooms_Participants_Bool_Exp>>;
|
|
1223
|
-
_not?: InputMaybe<Rooms_Participants_Bool_Exp>;
|
|
1224
|
-
_or?: InputMaybe<Array<Rooms_Participants_Bool_Exp>>;
|
|
1225
|
-
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1226
|
-
is_removed?: InputMaybe<Boolean_Comparison_Exp>;
|
|
1227
|
-
promptql_user?: InputMaybe<Promptql_Users_Bool_Exp>;
|
|
1228
|
-
promptql_user_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1229
|
-
room?: InputMaybe<Rooms_Bool_Exp>;
|
|
1230
|
-
room_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1231
|
-
updated_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1232
|
-
};
|
|
1233
|
-
/** order by max() on columns of table "rooms_participants" */
|
|
1234
|
-
type Rooms_Participants_Max_Order_By = {
|
|
1235
|
-
created_at?: InputMaybe<Order_By>;
|
|
1236
|
-
promptql_user_id?: InputMaybe<Order_By>;
|
|
1237
|
-
room_id?: InputMaybe<Order_By>;
|
|
1238
|
-
updated_at?: InputMaybe<Order_By>;
|
|
1239
|
-
};
|
|
1240
|
-
/** order by min() on columns of table "rooms_participants" */
|
|
1241
|
-
type Rooms_Participants_Min_Order_By = {
|
|
1242
|
-
created_at?: InputMaybe<Order_By>;
|
|
1243
|
-
promptql_user_id?: InputMaybe<Order_By>;
|
|
1244
|
-
room_id?: InputMaybe<Order_By>;
|
|
1245
|
-
updated_at?: InputMaybe<Order_By>;
|
|
1246
|
-
};
|
|
1247
|
-
/** order by aggregate values of table "shared_threads" */
|
|
1248
|
-
type Shared_Threads_Aggregate_Order_By = {
|
|
1249
|
-
avg?: InputMaybe<Shared_Threads_Avg_Order_By>;
|
|
1250
|
-
count?: InputMaybe<Order_By>;
|
|
1251
|
-
max?: InputMaybe<Shared_Threads_Max_Order_By>;
|
|
1252
|
-
min?: InputMaybe<Shared_Threads_Min_Order_By>;
|
|
1253
|
-
stddev?: InputMaybe<Shared_Threads_Stddev_Order_By>;
|
|
1254
|
-
stddev_pop?: InputMaybe<Shared_Threads_Stddev_Pop_Order_By>;
|
|
1255
|
-
stddev_samp?: InputMaybe<Shared_Threads_Stddev_Samp_Order_By>;
|
|
1256
|
-
sum?: InputMaybe<Shared_Threads_Sum_Order_By>;
|
|
1257
|
-
var_pop?: InputMaybe<Shared_Threads_Var_Pop_Order_By>;
|
|
1258
|
-
var_samp?: InputMaybe<Shared_Threads_Var_Samp_Order_By>;
|
|
1259
|
-
variance?: InputMaybe<Shared_Threads_Variance_Order_By>;
|
|
1260
|
-
};
|
|
1261
|
-
/** order by avg() on columns of table "shared_threads" */
|
|
1262
|
-
type Shared_Threads_Avg_Order_By = {
|
|
1263
|
-
last_thread_event_id?: InputMaybe<Order_By>;
|
|
1264
|
-
};
|
|
1265
|
-
/** Boolean expression to filter rows from the table "shared_threads". All fields are combined with a logical 'AND'. */
|
|
1266
|
-
type Shared_Threads_Bool_Exp = {
|
|
1267
|
-
_and?: InputMaybe<Array<Shared_Threads_Bool_Exp>>;
|
|
1268
|
-
_not?: InputMaybe<Shared_Threads_Bool_Exp>;
|
|
1269
|
-
_or?: InputMaybe<Array<Shared_Threads_Bool_Exp>>;
|
|
1270
|
-
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1271
|
-
deleted_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1272
|
-
last_thread_event_id?: InputMaybe<Bigint_Comparison_Exp>;
|
|
1273
|
-
shared_thread_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1274
|
-
source_thread?: InputMaybe<Threads_V2_Bool_Exp>;
|
|
1275
|
-
source_thread_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1276
|
-
title?: InputMaybe<String_Comparison_Exp>;
|
|
1277
|
-
user?: InputMaybe<Promptql_Users_Bool_Exp>;
|
|
1278
|
-
};
|
|
1279
|
-
/** order by max() on columns of table "shared_threads" */
|
|
1280
|
-
type Shared_Threads_Max_Order_By = {
|
|
1281
|
-
created_at?: InputMaybe<Order_By>;
|
|
1282
|
-
deleted_at?: InputMaybe<Order_By>;
|
|
1283
|
-
last_thread_event_id?: InputMaybe<Order_By>;
|
|
1284
|
-
shared_thread_id?: InputMaybe<Order_By>;
|
|
1285
|
-
source_thread_id?: InputMaybe<Order_By>;
|
|
1286
|
-
title?: InputMaybe<Order_By>;
|
|
1287
|
-
};
|
|
1288
|
-
/** order by min() on columns of table "shared_threads" */
|
|
1289
|
-
type Shared_Threads_Min_Order_By = {
|
|
1290
|
-
created_at?: InputMaybe<Order_By>;
|
|
1291
|
-
deleted_at?: InputMaybe<Order_By>;
|
|
1292
|
-
last_thread_event_id?: InputMaybe<Order_By>;
|
|
1293
|
-
shared_thread_id?: InputMaybe<Order_By>;
|
|
1294
|
-
source_thread_id?: InputMaybe<Order_By>;
|
|
1295
|
-
title?: InputMaybe<Order_By>;
|
|
1296
|
-
};
|
|
1297
|
-
/** order by stddev() on columns of table "shared_threads" */
|
|
1298
|
-
type Shared_Threads_Stddev_Order_By = {
|
|
1299
|
-
last_thread_event_id?: InputMaybe<Order_By>;
|
|
1300
|
-
};
|
|
1301
|
-
/** order by stddev_pop() on columns of table "shared_threads" */
|
|
1302
|
-
type Shared_Threads_Stddev_Pop_Order_By = {
|
|
1303
|
-
last_thread_event_id?: InputMaybe<Order_By>;
|
|
1304
|
-
};
|
|
1305
|
-
/** order by stddev_samp() on columns of table "shared_threads" */
|
|
1306
|
-
type Shared_Threads_Stddev_Samp_Order_By = {
|
|
1307
|
-
last_thread_event_id?: InputMaybe<Order_By>;
|
|
1308
|
-
};
|
|
1309
|
-
/** order by sum() on columns of table "shared_threads" */
|
|
1310
|
-
type Shared_Threads_Sum_Order_By = {
|
|
1311
|
-
last_thread_event_id?: InputMaybe<Order_By>;
|
|
1312
|
-
};
|
|
1313
|
-
/** order by var_pop() on columns of table "shared_threads" */
|
|
1314
|
-
type Shared_Threads_Var_Pop_Order_By = {
|
|
1315
|
-
last_thread_event_id?: InputMaybe<Order_By>;
|
|
1316
|
-
};
|
|
1317
|
-
/** order by var_samp() on columns of table "shared_threads" */
|
|
1318
|
-
type Shared_Threads_Var_Samp_Order_By = {
|
|
1319
|
-
last_thread_event_id?: InputMaybe<Order_By>;
|
|
1320
|
-
};
|
|
1321
|
-
/** order by variance() on columns of table "shared_threads" */
|
|
1322
|
-
type Shared_Threads_Variance_Order_By = {
|
|
1323
|
-
last_thread_event_id?: InputMaybe<Order_By>;
|
|
1324
|
-
};
|
|
1325
|
-
type Slack_Chat_Display_Mode_Enum =
|
|
1326
|
-
/** Reply full content with the query plan, query interpretation, data artifacts etc... */
|
|
1327
|
-
'Full'
|
|
1328
|
-
/** Reply preview content and redirects to PromptQL via thread link */
|
|
1329
|
-
| 'Preview';
|
|
1330
|
-
/** Boolean expression to compare columns of type "slack_chat_display_mode_enum". All fields are combined with logical 'AND'. */
|
|
1331
|
-
type Slack_Chat_Display_Mode_Enum_Comparison_Exp = {
|
|
1332
|
-
_eq?: InputMaybe<Slack_Chat_Display_Mode_Enum>;
|
|
1333
|
-
_in?: InputMaybe<Array<Slack_Chat_Display_Mode_Enum>>;
|
|
1334
|
-
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1335
|
-
_neq?: InputMaybe<Slack_Chat_Display_Mode_Enum>;
|
|
1336
|
-
_nin?: InputMaybe<Array<Slack_Chat_Display_Mode_Enum>>;
|
|
1337
|
-
};
|
|
1338
|
-
/** Boolean expression to filter rows from the table "slack_info". All fields are combined with a logical 'AND'. */
|
|
1339
|
-
type Slack_Info_Bool_Exp = {
|
|
1340
|
-
_and?: InputMaybe<Array<Slack_Info_Bool_Exp>>;
|
|
1341
|
-
_not?: InputMaybe<Slack_Info_Bool_Exp>;
|
|
1342
|
-
_or?: InputMaybe<Array<Slack_Info_Bool_Exp>>;
|
|
1343
|
-
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1344
|
-
promptql_user?: InputMaybe<Promptql_Users_Bool_Exp>;
|
|
1345
|
-
promptql_user_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1346
|
-
slack_email?: InputMaybe<Citext_Comparison_Exp>;
|
|
1347
|
-
slack_fields?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
1348
|
-
slack_user_id?: InputMaybe<String_Comparison_Exp>;
|
|
1349
|
-
slack_workspace_id?: InputMaybe<String_Comparison_Exp>;
|
|
1350
|
-
updated_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1351
|
-
};
|
|
1352
|
-
/** Ordering options when selecting data from "slack_info". */
|
|
1353
|
-
type Slack_Info_Order_By = {
|
|
1354
|
-
created_at?: InputMaybe<Order_By>;
|
|
1355
|
-
promptql_user?: InputMaybe<Promptql_Users_Order_By>;
|
|
1356
|
-
promptql_user_id?: InputMaybe<Order_By>;
|
|
1357
|
-
slack_email?: InputMaybe<Order_By>;
|
|
1358
|
-
slack_fields?: InputMaybe<Order_By>;
|
|
1359
|
-
slack_user_id?: InputMaybe<Order_By>;
|
|
1360
|
-
slack_workspace_id?: InputMaybe<Order_By>;
|
|
1361
|
-
updated_at?: InputMaybe<Order_By>;
|
|
1362
|
-
};
|
|
1363
|
-
/** order by aggregate values of table "slack_integration" */
|
|
1364
|
-
type Slack_Integration_Aggregate_Order_By = {
|
|
1365
|
-
count?: InputMaybe<Order_By>;
|
|
1366
|
-
max?: InputMaybe<Slack_Integration_Max_Order_By>;
|
|
1367
|
-
min?: InputMaybe<Slack_Integration_Min_Order_By>;
|
|
1368
|
-
};
|
|
1369
|
-
/** Boolean expression to filter rows from the table "slack_integration". All fields are combined with a logical 'AND'. */
|
|
1370
|
-
type Slack_Integration_Bool_Exp = {
|
|
1371
|
-
_and?: InputMaybe<Array<Slack_Integration_Bool_Exp>>;
|
|
1372
|
-
_not?: InputMaybe<Slack_Integration_Bool_Exp>;
|
|
1373
|
-
_or?: InputMaybe<Array<Slack_Integration_Bool_Exp>>;
|
|
1374
|
-
chat_display_mode?: InputMaybe<Slack_Chat_Display_Mode_Enum_Comparison_Exp>;
|
|
1375
|
-
chat_enabled?: InputMaybe<Boolean_Comparison_Exp>;
|
|
1376
|
-
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1377
|
-
created_by?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1378
|
-
id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1379
|
-
is_global_app?: InputMaybe<Boolean_Comparison_Exp>;
|
|
1380
|
-
project_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1381
|
-
promptql_user?: InputMaybe<Promptql_Users_Bool_Exp>;
|
|
1382
|
-
slack_app_id?: InputMaybe<String_Comparison_Exp>;
|
|
1383
|
-
slack_app_name?: InputMaybe<String_Comparison_Exp>;
|
|
1384
|
-
slack_workspace_id?: InputMaybe<String_Comparison_Exp>;
|
|
1385
|
-
};
|
|
1386
|
-
/** order by max() on columns of table "slack_integration" */
|
|
1387
|
-
type Slack_Integration_Max_Order_By = {
|
|
1388
|
-
created_at?: InputMaybe<Order_By>;
|
|
1389
|
-
created_by?: InputMaybe<Order_By>;
|
|
1390
|
-
id?: InputMaybe<Order_By>;
|
|
1391
|
-
project_id?: InputMaybe<Order_By>;
|
|
1392
|
-
slack_app_id?: InputMaybe<Order_By>;
|
|
1393
|
-
slack_app_name?: InputMaybe<Order_By>;
|
|
1394
|
-
slack_workspace_id?: InputMaybe<Order_By>;
|
|
1395
|
-
};
|
|
1396
|
-
/** order by min() on columns of table "slack_integration" */
|
|
1397
|
-
type Slack_Integration_Min_Order_By = {
|
|
1398
|
-
created_at?: InputMaybe<Order_By>;
|
|
1399
|
-
created_by?: InputMaybe<Order_By>;
|
|
1400
|
-
id?: InputMaybe<Order_By>;
|
|
1401
|
-
project_id?: InputMaybe<Order_By>;
|
|
1402
|
-
slack_app_id?: InputMaybe<Order_By>;
|
|
1403
|
-
slack_app_name?: InputMaybe<Order_By>;
|
|
1404
|
-
slack_workspace_id?: InputMaybe<Order_By>;
|
|
1405
|
-
};
|
|
1406
|
-
/** order by aggregate values of table "social_feed_candidates" */
|
|
1407
|
-
type Social_Feed_Candidates_Aggregate_Order_By = {
|
|
1408
|
-
avg?: InputMaybe<Social_Feed_Candidates_Avg_Order_By>;
|
|
1409
|
-
count?: InputMaybe<Order_By>;
|
|
1410
|
-
max?: InputMaybe<Social_Feed_Candidates_Max_Order_By>;
|
|
1411
|
-
min?: InputMaybe<Social_Feed_Candidates_Min_Order_By>;
|
|
1412
|
-
stddev?: InputMaybe<Social_Feed_Candidates_Stddev_Order_By>;
|
|
1413
|
-
stddev_pop?: InputMaybe<Social_Feed_Candidates_Stddev_Pop_Order_By>;
|
|
1414
|
-
stddev_samp?: InputMaybe<Social_Feed_Candidates_Stddev_Samp_Order_By>;
|
|
1415
|
-
sum?: InputMaybe<Social_Feed_Candidates_Sum_Order_By>;
|
|
1416
|
-
var_pop?: InputMaybe<Social_Feed_Candidates_Var_Pop_Order_By>;
|
|
1417
|
-
var_samp?: InputMaybe<Social_Feed_Candidates_Var_Samp_Order_By>;
|
|
1418
|
-
variance?: InputMaybe<Social_Feed_Candidates_Variance_Order_By>;
|
|
1419
|
-
};
|
|
1420
|
-
/** order by avg() on columns of table "social_feed_candidates" */
|
|
1421
|
-
type Social_Feed_Candidates_Avg_Order_By = {
|
|
1422
|
-
thread_event_id?: InputMaybe<Order_By>;
|
|
1423
|
-
version?: InputMaybe<Order_By>;
|
|
1424
|
-
};
|
|
1425
|
-
/** Boolean expression to filter rows from the table "social_feed_candidates". All fields are combined with a logical 'AND'. */
|
|
1426
|
-
type Social_Feed_Candidates_Bool_Exp = {
|
|
1427
|
-
_and?: InputMaybe<Array<Social_Feed_Candidates_Bool_Exp>>;
|
|
1428
|
-
_not?: InputMaybe<Social_Feed_Candidates_Bool_Exp>;
|
|
1429
|
-
_or?: InputMaybe<Array<Social_Feed_Candidates_Bool_Exp>>;
|
|
1430
|
-
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1431
|
-
id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1432
|
-
llm_output?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
1433
|
-
selected_messages?: InputMaybe<Feed_Candidate_Selected_Messages_Bool_Exp>;
|
|
1434
|
-
summary?: InputMaybe<String_Comparison_Exp>;
|
|
1435
|
-
thread?: InputMaybe<Threads_V2_Bool_Exp>;
|
|
1436
|
-
thread_event_id?: InputMaybe<Bigint_Comparison_Exp>;
|
|
1437
|
-
thread_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1438
|
-
title?: InputMaybe<String_Comparison_Exp>;
|
|
1439
|
-
updated_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1440
|
-
version?: InputMaybe<Int_Comparison_Exp>;
|
|
1441
|
-
};
|
|
1442
|
-
/** order by max() on columns of table "social_feed_candidates" */
|
|
1443
|
-
type Social_Feed_Candidates_Max_Order_By = {
|
|
1444
|
-
created_at?: InputMaybe<Order_By>;
|
|
1445
|
-
id?: InputMaybe<Order_By>;
|
|
1446
|
-
summary?: InputMaybe<Order_By>;
|
|
1447
|
-
thread_event_id?: InputMaybe<Order_By>;
|
|
1448
|
-
thread_id?: InputMaybe<Order_By>;
|
|
1449
|
-
title?: InputMaybe<Order_By>;
|
|
1450
|
-
updated_at?: InputMaybe<Order_By>;
|
|
1451
|
-
version?: InputMaybe<Order_By>;
|
|
1452
|
-
};
|
|
1453
|
-
/** order by min() on columns of table "social_feed_candidates" */
|
|
1454
|
-
type Social_Feed_Candidates_Min_Order_By = {
|
|
1455
|
-
created_at?: InputMaybe<Order_By>;
|
|
1456
|
-
id?: InputMaybe<Order_By>;
|
|
1457
|
-
summary?: InputMaybe<Order_By>;
|
|
1458
|
-
thread_event_id?: InputMaybe<Order_By>;
|
|
1459
|
-
thread_id?: InputMaybe<Order_By>;
|
|
1460
|
-
title?: InputMaybe<Order_By>;
|
|
1461
|
-
updated_at?: InputMaybe<Order_By>;
|
|
1462
|
-
version?: InputMaybe<Order_By>;
|
|
1463
|
-
};
|
|
1464
|
-
/** order by stddev() on columns of table "social_feed_candidates" */
|
|
1465
|
-
type Social_Feed_Candidates_Stddev_Order_By = {
|
|
1466
|
-
thread_event_id?: InputMaybe<Order_By>;
|
|
1467
|
-
version?: InputMaybe<Order_By>;
|
|
1468
|
-
};
|
|
1469
|
-
/** order by stddev_pop() on columns of table "social_feed_candidates" */
|
|
1470
|
-
type Social_Feed_Candidates_Stddev_Pop_Order_By = {
|
|
1471
|
-
thread_event_id?: InputMaybe<Order_By>;
|
|
1472
|
-
version?: InputMaybe<Order_By>;
|
|
1473
|
-
};
|
|
1474
|
-
/** order by stddev_samp() on columns of table "social_feed_candidates" */
|
|
1475
|
-
type Social_Feed_Candidates_Stddev_Samp_Order_By = {
|
|
1476
|
-
thread_event_id?: InputMaybe<Order_By>;
|
|
1477
|
-
version?: InputMaybe<Order_By>;
|
|
1478
|
-
};
|
|
1479
|
-
/** order by sum() on columns of table "social_feed_candidates" */
|
|
1480
|
-
type Social_Feed_Candidates_Sum_Order_By = {
|
|
1481
|
-
thread_event_id?: InputMaybe<Order_By>;
|
|
1482
|
-
version?: InputMaybe<Order_By>;
|
|
1483
|
-
};
|
|
1484
|
-
/** order by var_pop() on columns of table "social_feed_candidates" */
|
|
1485
|
-
type Social_Feed_Candidates_Var_Pop_Order_By = {
|
|
1486
|
-
thread_event_id?: InputMaybe<Order_By>;
|
|
1487
|
-
version?: InputMaybe<Order_By>;
|
|
1488
|
-
};
|
|
1489
|
-
/** order by var_samp() on columns of table "social_feed_candidates" */
|
|
1490
|
-
type Social_Feed_Candidates_Var_Samp_Order_By = {
|
|
1491
|
-
thread_event_id?: InputMaybe<Order_By>;
|
|
1492
|
-
version?: InputMaybe<Order_By>;
|
|
1493
|
-
};
|
|
1494
|
-
/** order by variance() on columns of table "social_feed_candidates" */
|
|
1495
|
-
type Social_Feed_Candidates_Variance_Order_By = {
|
|
1496
|
-
thread_event_id?: InputMaybe<Order_By>;
|
|
1497
|
-
version?: InputMaybe<Order_By>;
|
|
1498
|
-
};
|
|
1499
|
-
/** order by aggregate values of table "starred_artifacts" */
|
|
1500
|
-
type Starred_Artifacts_Aggregate_Order_By = {
|
|
1501
|
-
count?: InputMaybe<Order_By>;
|
|
1502
|
-
max?: InputMaybe<Starred_Artifacts_Max_Order_By>;
|
|
1503
|
-
min?: InputMaybe<Starred_Artifacts_Min_Order_By>;
|
|
1504
|
-
};
|
|
1505
|
-
/** Boolean expression to filter rows from the table "starred_artifacts". All fields are combined with a logical 'AND'. */
|
|
1506
|
-
type Starred_Artifacts_Bool_Exp = {
|
|
1507
|
-
_and?: InputMaybe<Array<Starred_Artifacts_Bool_Exp>>;
|
|
1508
|
-
_not?: InputMaybe<Starred_Artifacts_Bool_Exp>;
|
|
1509
|
-
_or?: InputMaybe<Array<Starred_Artifacts_Bool_Exp>>;
|
|
1510
|
-
artifact?: InputMaybe<Artifacts_Bool_Exp>;
|
|
1511
|
-
artifact_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1512
|
-
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1513
|
-
user?: InputMaybe<Promptql_Users_Bool_Exp>;
|
|
1514
|
-
user_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1515
|
-
};
|
|
1516
|
-
/** order by max() on columns of table "starred_artifacts" */
|
|
1517
|
-
type Starred_Artifacts_Max_Order_By = {
|
|
1518
|
-
artifact_id?: InputMaybe<Order_By>;
|
|
1519
|
-
created_at?: InputMaybe<Order_By>;
|
|
1520
|
-
user_id?: InputMaybe<Order_By>;
|
|
1521
|
-
};
|
|
1522
|
-
/** order by min() on columns of table "starred_artifacts" */
|
|
1523
|
-
type Starred_Artifacts_Min_Order_By = {
|
|
1524
|
-
artifact_id?: InputMaybe<Order_By>;
|
|
1525
|
-
created_at?: InputMaybe<Order_By>;
|
|
1526
|
-
user_id?: InputMaybe<Order_By>;
|
|
1527
|
-
};
|
|
1528
|
-
/** order by aggregate values of table "starred_threads" */
|
|
1529
|
-
type Starred_Threads_Aggregate_Order_By = {
|
|
1530
|
-
avg?: InputMaybe<Starred_Threads_Avg_Order_By>;
|
|
1531
|
-
count?: InputMaybe<Order_By>;
|
|
1532
|
-
max?: InputMaybe<Starred_Threads_Max_Order_By>;
|
|
1533
|
-
min?: InputMaybe<Starred_Threads_Min_Order_By>;
|
|
1534
|
-
stddev?: InputMaybe<Starred_Threads_Stddev_Order_By>;
|
|
1535
|
-
stddev_pop?: InputMaybe<Starred_Threads_Stddev_Pop_Order_By>;
|
|
1536
|
-
stddev_samp?: InputMaybe<Starred_Threads_Stddev_Samp_Order_By>;
|
|
1537
|
-
sum?: InputMaybe<Starred_Threads_Sum_Order_By>;
|
|
1538
|
-
var_pop?: InputMaybe<Starred_Threads_Var_Pop_Order_By>;
|
|
1539
|
-
var_samp?: InputMaybe<Starred_Threads_Var_Samp_Order_By>;
|
|
1540
|
-
variance?: InputMaybe<Starred_Threads_Variance_Order_By>;
|
|
1541
|
-
};
|
|
1542
|
-
/** order by avg() on columns of table "starred_threads" */
|
|
1543
|
-
type Starred_Threads_Avg_Order_By = {
|
|
1544
|
-
message_event_id?: InputMaybe<Order_By>;
|
|
1545
|
-
position?: InputMaybe<Order_By>;
|
|
1546
|
-
};
|
|
1547
|
-
/** Boolean expression to filter rows from the table "starred_threads". All fields are combined with a logical 'AND'. */
|
|
1548
|
-
type Starred_Threads_Bool_Exp = {
|
|
1549
|
-
_and?: InputMaybe<Array<Starred_Threads_Bool_Exp>>;
|
|
1550
|
-
_not?: InputMaybe<Starred_Threads_Bool_Exp>;
|
|
1551
|
-
_or?: InputMaybe<Array<Starred_Threads_Bool_Exp>>;
|
|
1552
|
-
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1553
|
-
message_event?: InputMaybe<Thread_Events_Bool_Exp>;
|
|
1554
|
-
message_event_id?: InputMaybe<Bigint_Comparison_Exp>;
|
|
1555
|
-
position?: InputMaybe<Int_Comparison_Exp>;
|
|
1556
|
-
thread?: InputMaybe<Threads_V2_Bool_Exp>;
|
|
1557
|
-
thread_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1558
|
-
user?: InputMaybe<Promptql_Users_Bool_Exp>;
|
|
1559
|
-
user_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1560
|
-
};
|
|
1561
|
-
/** order by max() on columns of table "starred_threads" */
|
|
1562
|
-
type Starred_Threads_Max_Order_By = {
|
|
1563
|
-
created_at?: InputMaybe<Order_By>;
|
|
1564
|
-
message_event_id?: InputMaybe<Order_By>;
|
|
1565
|
-
position?: InputMaybe<Order_By>;
|
|
1566
|
-
thread_id?: InputMaybe<Order_By>;
|
|
1567
|
-
user_id?: InputMaybe<Order_By>;
|
|
1568
|
-
};
|
|
1569
|
-
/** order by min() on columns of table "starred_threads" */
|
|
1570
|
-
type Starred_Threads_Min_Order_By = {
|
|
1571
|
-
created_at?: InputMaybe<Order_By>;
|
|
1572
|
-
message_event_id?: InputMaybe<Order_By>;
|
|
1573
|
-
position?: InputMaybe<Order_By>;
|
|
1574
|
-
thread_id?: InputMaybe<Order_By>;
|
|
1575
|
-
user_id?: InputMaybe<Order_By>;
|
|
1576
|
-
};
|
|
1577
|
-
/** order by stddev() on columns of table "starred_threads" */
|
|
1578
|
-
type Starred_Threads_Stddev_Order_By = {
|
|
1579
|
-
message_event_id?: InputMaybe<Order_By>;
|
|
1580
|
-
position?: InputMaybe<Order_By>;
|
|
1581
|
-
};
|
|
1582
|
-
/** order by stddev_pop() on columns of table "starred_threads" */
|
|
1583
|
-
type Starred_Threads_Stddev_Pop_Order_By = {
|
|
1584
|
-
message_event_id?: InputMaybe<Order_By>;
|
|
1585
|
-
position?: InputMaybe<Order_By>;
|
|
1586
|
-
};
|
|
1587
|
-
/** order by stddev_samp() on columns of table "starred_threads" */
|
|
1588
|
-
type Starred_Threads_Stddev_Samp_Order_By = {
|
|
1589
|
-
message_event_id?: InputMaybe<Order_By>;
|
|
1590
|
-
position?: InputMaybe<Order_By>;
|
|
1591
|
-
};
|
|
1592
|
-
/** order by sum() on columns of table "starred_threads" */
|
|
1593
|
-
type Starred_Threads_Sum_Order_By = {
|
|
1594
|
-
message_event_id?: InputMaybe<Order_By>;
|
|
1595
|
-
position?: InputMaybe<Order_By>;
|
|
1596
|
-
};
|
|
1597
|
-
/** order by var_pop() on columns of table "starred_threads" */
|
|
1598
|
-
type Starred_Threads_Var_Pop_Order_By = {
|
|
1599
|
-
message_event_id?: InputMaybe<Order_By>;
|
|
1600
|
-
position?: InputMaybe<Order_By>;
|
|
1601
|
-
};
|
|
1602
|
-
/** order by var_samp() on columns of table "starred_threads" */
|
|
1603
|
-
type Starred_Threads_Var_Samp_Order_By = {
|
|
1604
|
-
message_event_id?: InputMaybe<Order_By>;
|
|
1605
|
-
position?: InputMaybe<Order_By>;
|
|
1606
|
-
};
|
|
1607
|
-
/** order by variance() on columns of table "starred_threads" */
|
|
1608
|
-
type Starred_Threads_Variance_Order_By = {
|
|
1609
|
-
message_event_id?: InputMaybe<Order_By>;
|
|
1610
|
-
position?: InputMaybe<Order_By>;
|
|
1611
|
-
};
|
|
1612
|
-
type Thread_Artifacts_Aggregate_Bool_Exp = {
|
|
1613
|
-
count?: InputMaybe<Thread_Artifacts_Aggregate_Bool_Exp_Count>;
|
|
1614
|
-
};
|
|
1615
|
-
type Thread_Artifacts_Aggregate_Bool_Exp_Count = {
|
|
1616
|
-
arguments?: InputMaybe<Array<Thread_Artifacts_Select_Column>>;
|
|
1617
|
-
distinct?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1618
|
-
filter?: InputMaybe<Thread_Artifacts_Bool_Exp>;
|
|
1619
|
-
predicate: Int_Comparison_Exp;
|
|
1620
|
-
};
|
|
1621
|
-
/** order by aggregate values of table "thread_artifacts" */
|
|
1622
|
-
type Thread_Artifacts_Aggregate_Order_By = {
|
|
1623
|
-
count?: InputMaybe<Order_By>;
|
|
1624
|
-
max?: InputMaybe<Thread_Artifacts_Max_Order_By>;
|
|
1625
|
-
min?: InputMaybe<Thread_Artifacts_Min_Order_By>;
|
|
1626
|
-
};
|
|
1627
|
-
/** Boolean expression to filter rows from the table "thread_artifacts". All fields are combined with a logical 'AND'. */
|
|
1628
|
-
type Thread_Artifacts_Bool_Exp = {
|
|
1629
|
-
_and?: InputMaybe<Array<Thread_Artifacts_Bool_Exp>>;
|
|
1630
|
-
_not?: InputMaybe<Thread_Artifacts_Bool_Exp>;
|
|
1631
|
-
_or?: InputMaybe<Array<Thread_Artifacts_Bool_Exp>>;
|
|
1632
|
-
artifact?: InputMaybe<Artifacts_Bool_Exp>;
|
|
1633
|
-
artifact_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1634
|
-
thread?: InputMaybe<Threads_V2_Bool_Exp>;
|
|
1635
|
-
thread_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1636
|
-
};
|
|
1637
|
-
/** order by max() on columns of table "thread_artifacts" */
|
|
1638
|
-
type Thread_Artifacts_Max_Order_By = {
|
|
1639
|
-
artifact_id?: InputMaybe<Order_By>;
|
|
1640
|
-
thread_id?: InputMaybe<Order_By>;
|
|
1641
|
-
};
|
|
1642
|
-
/** order by min() on columns of table "thread_artifacts" */
|
|
1643
|
-
type Thread_Artifacts_Min_Order_By = {
|
|
1644
|
-
artifact_id?: InputMaybe<Order_By>;
|
|
1645
|
-
thread_id?: InputMaybe<Order_By>;
|
|
1646
|
-
};
|
|
1647
|
-
/** select columns of table "thread_artifacts" */
|
|
1648
|
-
type Thread_Artifacts_Select_Column =
|
|
1649
|
-
/** column name */
|
|
1650
|
-
'artifact_id'
|
|
1651
|
-
/** column name */
|
|
1652
|
-
| 'thread_id';
|
|
1653
|
-
type Thread_Event_Mentions_Aggregate_Bool_Exp = {
|
|
1654
|
-
count?: InputMaybe<Thread_Event_Mentions_Aggregate_Bool_Exp_Count>;
|
|
1655
|
-
};
|
|
1656
|
-
type Thread_Event_Mentions_Aggregate_Bool_Exp_Count = {
|
|
1657
|
-
arguments?: InputMaybe<Array<Thread_Event_Mentions_Select_Column>>;
|
|
1658
|
-
distinct?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1659
|
-
filter?: InputMaybe<Thread_Event_Mentions_Bool_Exp>;
|
|
1660
|
-
predicate: Int_Comparison_Exp;
|
|
1661
|
-
};
|
|
1662
|
-
/** order by aggregate values of table "thread_event_mentions" */
|
|
1663
|
-
type Thread_Event_Mentions_Aggregate_Order_By = {
|
|
1664
|
-
avg?: InputMaybe<Thread_Event_Mentions_Avg_Order_By>;
|
|
1665
|
-
count?: InputMaybe<Order_By>;
|
|
1666
|
-
max?: InputMaybe<Thread_Event_Mentions_Max_Order_By>;
|
|
1667
|
-
min?: InputMaybe<Thread_Event_Mentions_Min_Order_By>;
|
|
1668
|
-
stddev?: InputMaybe<Thread_Event_Mentions_Stddev_Order_By>;
|
|
1669
|
-
stddev_pop?: InputMaybe<Thread_Event_Mentions_Stddev_Pop_Order_By>;
|
|
1670
|
-
stddev_samp?: InputMaybe<Thread_Event_Mentions_Stddev_Samp_Order_By>;
|
|
1671
|
-
sum?: InputMaybe<Thread_Event_Mentions_Sum_Order_By>;
|
|
1672
|
-
var_pop?: InputMaybe<Thread_Event_Mentions_Var_Pop_Order_By>;
|
|
1673
|
-
var_samp?: InputMaybe<Thread_Event_Mentions_Var_Samp_Order_By>;
|
|
1674
|
-
variance?: InputMaybe<Thread_Event_Mentions_Variance_Order_By>;
|
|
1675
|
-
};
|
|
1676
|
-
/** order by avg() on columns of table "thread_event_mentions" */
|
|
1677
|
-
type Thread_Event_Mentions_Avg_Order_By = {
|
|
1678
|
-
thread_event_id?: InputMaybe<Order_By>;
|
|
1679
|
-
};
|
|
1680
|
-
/** Boolean expression to filter rows from the table "thread_event_mentions". All fields are combined with a logical 'AND'. */
|
|
1681
|
-
type Thread_Event_Mentions_Bool_Exp = {
|
|
1682
|
-
_and?: InputMaybe<Array<Thread_Event_Mentions_Bool_Exp>>;
|
|
1683
|
-
_not?: InputMaybe<Thread_Event_Mentions_Bool_Exp>;
|
|
1684
|
-
_or?: InputMaybe<Array<Thread_Event_Mentions_Bool_Exp>>;
|
|
1685
|
-
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1686
|
-
mentioned_user?: InputMaybe<Promptql_Users_Bool_Exp>;
|
|
1687
|
-
mentioned_user_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1688
|
-
thread?: InputMaybe<Threads_V2_Bool_Exp>;
|
|
1689
|
-
thread_event?: InputMaybe<Thread_Events_Bool_Exp>;
|
|
1690
|
-
thread_event_id?: InputMaybe<Bigint_Comparison_Exp>;
|
|
1691
|
-
thread_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1692
|
-
};
|
|
1693
|
-
/** order by max() on columns of table "thread_event_mentions" */
|
|
1694
|
-
type Thread_Event_Mentions_Max_Order_By = {
|
|
1695
|
-
created_at?: InputMaybe<Order_By>;
|
|
1696
|
-
mentioned_user_id?: InputMaybe<Order_By>;
|
|
1697
|
-
thread_event_id?: InputMaybe<Order_By>;
|
|
1698
|
-
thread_id?: InputMaybe<Order_By>;
|
|
1699
|
-
};
|
|
1700
|
-
/** order by min() on columns of table "thread_event_mentions" */
|
|
1701
|
-
type Thread_Event_Mentions_Min_Order_By = {
|
|
1702
|
-
created_at?: InputMaybe<Order_By>;
|
|
1703
|
-
mentioned_user_id?: InputMaybe<Order_By>;
|
|
1704
|
-
thread_event_id?: InputMaybe<Order_By>;
|
|
1705
|
-
thread_id?: InputMaybe<Order_By>;
|
|
1706
|
-
};
|
|
1707
|
-
/** select columns of table "thread_event_mentions" */
|
|
1708
|
-
type Thread_Event_Mentions_Select_Column =
|
|
1709
|
-
/** column name */
|
|
1710
|
-
'created_at'
|
|
1711
|
-
/** column name */
|
|
1712
|
-
| 'mentioned_user_id'
|
|
1713
|
-
/** column name */
|
|
1714
|
-
| 'thread_event_id'
|
|
1715
|
-
/** column name */
|
|
1716
|
-
| 'thread_id';
|
|
1717
|
-
/** order by stddev() on columns of table "thread_event_mentions" */
|
|
1718
|
-
type Thread_Event_Mentions_Stddev_Order_By = {
|
|
1719
|
-
thread_event_id?: InputMaybe<Order_By>;
|
|
1720
|
-
};
|
|
1721
|
-
/** order by stddev_pop() on columns of table "thread_event_mentions" */
|
|
1722
|
-
type Thread_Event_Mentions_Stddev_Pop_Order_By = {
|
|
1723
|
-
thread_event_id?: InputMaybe<Order_By>;
|
|
1724
|
-
};
|
|
1725
|
-
/** order by stddev_samp() on columns of table "thread_event_mentions" */
|
|
1726
|
-
type Thread_Event_Mentions_Stddev_Samp_Order_By = {
|
|
1727
|
-
thread_event_id?: InputMaybe<Order_By>;
|
|
1728
|
-
};
|
|
1729
|
-
/** order by sum() on columns of table "thread_event_mentions" */
|
|
1730
|
-
type Thread_Event_Mentions_Sum_Order_By = {
|
|
1731
|
-
thread_event_id?: InputMaybe<Order_By>;
|
|
1732
|
-
};
|
|
1733
|
-
/** order by var_pop() on columns of table "thread_event_mentions" */
|
|
1734
|
-
type Thread_Event_Mentions_Var_Pop_Order_By = {
|
|
1735
|
-
thread_event_id?: InputMaybe<Order_By>;
|
|
1736
|
-
};
|
|
1737
|
-
/** order by var_samp() on columns of table "thread_event_mentions" */
|
|
1738
|
-
type Thread_Event_Mentions_Var_Samp_Order_By = {
|
|
1739
|
-
thread_event_id?: InputMaybe<Order_By>;
|
|
1740
|
-
};
|
|
1741
|
-
/** order by variance() on columns of table "thread_event_mentions" */
|
|
1742
|
-
type Thread_Event_Mentions_Variance_Order_By = {
|
|
1743
|
-
thread_event_id?: InputMaybe<Order_By>;
|
|
1744
|
-
};
|
|
1745
|
-
type Thread_Events_Aggregate_Bool_Exp = {
|
|
1746
|
-
count?: InputMaybe<Thread_Events_Aggregate_Bool_Exp_Count>;
|
|
1747
|
-
};
|
|
1748
|
-
type Thread_Events_Aggregate_Bool_Exp_Count = {
|
|
1749
|
-
arguments?: InputMaybe<Array<Thread_Events_Select_Column>>;
|
|
1750
|
-
distinct?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1751
|
-
filter?: InputMaybe<Thread_Events_Bool_Exp>;
|
|
1752
|
-
predicate: Int_Comparison_Exp;
|
|
1753
|
-
};
|
|
1754
|
-
/** order by aggregate values of table "thread_events" */
|
|
1755
|
-
type Thread_Events_Aggregate_Order_By = {
|
|
1756
|
-
avg?: InputMaybe<Thread_Events_Avg_Order_By>;
|
|
1757
|
-
count?: InputMaybe<Order_By>;
|
|
1758
|
-
max?: InputMaybe<Thread_Events_Max_Order_By>;
|
|
1759
|
-
min?: InputMaybe<Thread_Events_Min_Order_By>;
|
|
1760
|
-
stddev?: InputMaybe<Thread_Events_Stddev_Order_By>;
|
|
1761
|
-
stddev_pop?: InputMaybe<Thread_Events_Stddev_Pop_Order_By>;
|
|
1762
|
-
stddev_samp?: InputMaybe<Thread_Events_Stddev_Samp_Order_By>;
|
|
1763
|
-
sum?: InputMaybe<Thread_Events_Sum_Order_By>;
|
|
1764
|
-
var_pop?: InputMaybe<Thread_Events_Var_Pop_Order_By>;
|
|
1765
|
-
var_samp?: InputMaybe<Thread_Events_Var_Samp_Order_By>;
|
|
1766
|
-
variance?: InputMaybe<Thread_Events_Variance_Order_By>;
|
|
1767
|
-
};
|
|
1768
|
-
/** order by avg() on columns of table "thread_events" */
|
|
1769
|
-
type Thread_Events_Avg_Order_By = {
|
|
1770
|
-
thread_event_id?: InputMaybe<Order_By>;
|
|
1771
|
-
};
|
|
1772
|
-
/** Boolean expression to filter rows from the table "thread_events". All fields are combined with a logical 'AND'. */
|
|
1773
|
-
type Thread_Events_Bool_Exp = {
|
|
1774
|
-
_and?: InputMaybe<Array<Thread_Events_Bool_Exp>>;
|
|
1775
|
-
_not?: InputMaybe<Thread_Events_Bool_Exp>;
|
|
1776
|
-
_or?: InputMaybe<Array<Thread_Events_Bool_Exp>>;
|
|
1777
|
-
build_fqdn?: InputMaybe<String_Comparison_Exp>;
|
|
1778
|
-
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1779
|
-
event_data?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
1780
|
-
thread?: InputMaybe<Threads_V2_Bool_Exp>;
|
|
1781
|
-
thread_event_id?: InputMaybe<Bigint_Comparison_Exp>;
|
|
1782
|
-
thread_event_mentions?: InputMaybe<Thread_Event_Mentions_Bool_Exp>;
|
|
1783
|
-
thread_event_mentions_aggregate?: InputMaybe<Thread_Event_Mentions_Aggregate_Bool_Exp>;
|
|
1784
|
-
thread_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1785
|
-
thread_participant?: InputMaybe<Thread_Participants_Bool_Exp>;
|
|
1786
|
-
user?: InputMaybe<Promptql_Users_Bool_Exp>;
|
|
1787
|
-
user_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1788
|
-
};
|
|
1789
|
-
/** order by max() on columns of table "thread_events" */
|
|
1790
|
-
type Thread_Events_Max_Order_By = {
|
|
1791
|
-
build_fqdn?: InputMaybe<Order_By>;
|
|
1792
|
-
created_at?: InputMaybe<Order_By>;
|
|
1793
|
-
thread_event_id?: InputMaybe<Order_By>;
|
|
1794
|
-
thread_id?: InputMaybe<Order_By>;
|
|
1795
|
-
/** promptql_user_id of the event author. NULL for agent (PromptQL) messages because the agent HGE role does not set this column. Non-NULL for user messages (set by HGE permission). */
|
|
1796
|
-
user_id?: InputMaybe<Order_By>;
|
|
1797
|
-
};
|
|
1798
|
-
/** order by min() on columns of table "thread_events" */
|
|
1799
|
-
type Thread_Events_Min_Order_By = {
|
|
1800
|
-
build_fqdn?: InputMaybe<Order_By>;
|
|
1801
|
-
created_at?: InputMaybe<Order_By>;
|
|
1802
|
-
thread_event_id?: InputMaybe<Order_By>;
|
|
1803
|
-
thread_id?: InputMaybe<Order_By>;
|
|
1804
|
-
/** promptql_user_id of the event author. NULL for agent (PromptQL) messages because the agent HGE role does not set this column. Non-NULL for user messages (set by HGE permission). */
|
|
1805
|
-
user_id?: InputMaybe<Order_By>;
|
|
1806
|
-
};
|
|
1807
|
-
/** select columns of table "thread_events" */
|
|
1808
|
-
type Thread_Events_Select_Column =
|
|
1809
|
-
/** column name */
|
|
1810
|
-
'build_fqdn'
|
|
1811
|
-
/** column name */
|
|
1812
|
-
| 'created_at'
|
|
1813
|
-
/** column name */
|
|
1814
|
-
| 'event_data'
|
|
1815
|
-
/** column name */
|
|
1816
|
-
| 'thread_event_id'
|
|
1817
|
-
/** column name */
|
|
1818
|
-
| 'thread_id'
|
|
1819
|
-
/** column name */
|
|
1820
|
-
| 'user_id';
|
|
1821
|
-
/** order by stddev() on columns of table "thread_events" */
|
|
1822
|
-
type Thread_Events_Stddev_Order_By = {
|
|
1823
|
-
thread_event_id?: InputMaybe<Order_By>;
|
|
1824
|
-
};
|
|
1825
|
-
/** order by stddev_pop() on columns of table "thread_events" */
|
|
1826
|
-
type Thread_Events_Stddev_Pop_Order_By = {
|
|
1827
|
-
thread_event_id?: InputMaybe<Order_By>;
|
|
1828
|
-
};
|
|
1829
|
-
/** order by stddev_samp() on columns of table "thread_events" */
|
|
1830
|
-
type Thread_Events_Stddev_Samp_Order_By = {
|
|
1831
|
-
thread_event_id?: InputMaybe<Order_By>;
|
|
1832
|
-
};
|
|
1833
|
-
/** order by sum() on columns of table "thread_events" */
|
|
1834
|
-
type Thread_Events_Sum_Order_By = {
|
|
1835
|
-
thread_event_id?: InputMaybe<Order_By>;
|
|
1836
|
-
};
|
|
1837
|
-
/** order by var_pop() on columns of table "thread_events" */
|
|
1838
|
-
type Thread_Events_Var_Pop_Order_By = {
|
|
1839
|
-
thread_event_id?: InputMaybe<Order_By>;
|
|
1840
|
-
};
|
|
1841
|
-
/** order by var_samp() on columns of table "thread_events" */
|
|
1842
|
-
type Thread_Events_Var_Samp_Order_By = {
|
|
1843
|
-
thread_event_id?: InputMaybe<Order_By>;
|
|
1844
|
-
};
|
|
1845
|
-
/** order by variance() on columns of table "thread_events" */
|
|
1846
|
-
type Thread_Events_Variance_Order_By = {
|
|
1847
|
-
thread_event_id?: InputMaybe<Order_By>;
|
|
1848
|
-
};
|
|
1849
|
-
type Thread_Feedback_Aggregate_Bool_Exp = {
|
|
1850
|
-
count?: InputMaybe<Thread_Feedback_Aggregate_Bool_Exp_Count>;
|
|
1851
|
-
};
|
|
1852
|
-
type Thread_Feedback_Aggregate_Bool_Exp_Count = {
|
|
1853
|
-
arguments?: InputMaybe<Array<Thread_Feedback_Select_Column>>;
|
|
1854
|
-
distinct?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1855
|
-
filter?: InputMaybe<Thread_Feedback_Bool_Exp>;
|
|
1856
|
-
predicate: Int_Comparison_Exp;
|
|
1857
|
-
};
|
|
1858
|
-
/** order by aggregate values of table "thread_feedback" */
|
|
1859
|
-
type Thread_Feedback_Aggregate_Order_By = {
|
|
1860
|
-
avg?: InputMaybe<Thread_Feedback_Avg_Order_By>;
|
|
1861
|
-
count?: InputMaybe<Order_By>;
|
|
1862
|
-
max?: InputMaybe<Thread_Feedback_Max_Order_By>;
|
|
1863
|
-
min?: InputMaybe<Thread_Feedback_Min_Order_By>;
|
|
1864
|
-
stddev?: InputMaybe<Thread_Feedback_Stddev_Order_By>;
|
|
1865
|
-
stddev_pop?: InputMaybe<Thread_Feedback_Stddev_Pop_Order_By>;
|
|
1866
|
-
stddev_samp?: InputMaybe<Thread_Feedback_Stddev_Samp_Order_By>;
|
|
1867
|
-
sum?: InputMaybe<Thread_Feedback_Sum_Order_By>;
|
|
1868
|
-
var_pop?: InputMaybe<Thread_Feedback_Var_Pop_Order_By>;
|
|
1869
|
-
var_samp?: InputMaybe<Thread_Feedback_Var_Samp_Order_By>;
|
|
1870
|
-
variance?: InputMaybe<Thread_Feedback_Variance_Order_By>;
|
|
1871
|
-
};
|
|
1872
|
-
/** order by avg() on columns of table "thread_feedback" */
|
|
1873
|
-
type Thread_Feedback_Avg_Order_By = {
|
|
1874
|
-
/** -1 means negative, 1 means positive */
|
|
1875
|
-
feedback?: InputMaybe<Order_By>;
|
|
1876
|
-
};
|
|
1877
|
-
/** Boolean expression to filter rows from the table "thread_feedback". All fields are combined with a logical 'AND'. */
|
|
1878
|
-
type Thread_Feedback_Bool_Exp = {
|
|
1879
|
-
_and?: InputMaybe<Array<Thread_Feedback_Bool_Exp>>;
|
|
1880
|
-
_not?: InputMaybe<Thread_Feedback_Bool_Exp>;
|
|
1881
|
-
_or?: InputMaybe<Array<Thread_Feedback_Bool_Exp>>;
|
|
1882
|
-
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
1883
|
-
details?: InputMaybe<String_Comparison_Exp>;
|
|
1884
|
-
feedback?: InputMaybe<Int_Comparison_Exp>;
|
|
1885
|
-
message_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1886
|
-
promptql_user_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1887
|
-
thread?: InputMaybe<Threads_V2_Bool_Exp>;
|
|
1888
|
-
thread_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
1889
|
-
user?: InputMaybe<Promptql_Users_Bool_Exp>;
|
|
1890
|
-
};
|
|
1891
|
-
/** order by max() on columns of table "thread_feedback" */
|
|
1892
|
-
type Thread_Feedback_Max_Order_By = {
|
|
1893
|
-
created_at?: InputMaybe<Order_By>;
|
|
1894
|
-
details?: InputMaybe<Order_By>;
|
|
1895
|
-
/** -1 means negative, 1 means positive */
|
|
1896
|
-
feedback?: InputMaybe<Order_By>;
|
|
1897
|
-
message_id?: InputMaybe<Order_By>;
|
|
1898
|
-
promptql_user_id?: InputMaybe<Order_By>;
|
|
1899
|
-
thread_id?: InputMaybe<Order_By>;
|
|
1900
|
-
};
|
|
1901
|
-
/** order by min() on columns of table "thread_feedback" */
|
|
1902
|
-
type Thread_Feedback_Min_Order_By = {
|
|
1903
|
-
created_at?: InputMaybe<Order_By>;
|
|
1904
|
-
details?: InputMaybe<Order_By>;
|
|
1905
|
-
/** -1 means negative, 1 means positive */
|
|
1906
|
-
feedback?: InputMaybe<Order_By>;
|
|
1907
|
-
message_id?: InputMaybe<Order_By>;
|
|
1908
|
-
promptql_user_id?: InputMaybe<Order_By>;
|
|
1909
|
-
thread_id?: InputMaybe<Order_By>;
|
|
1910
|
-
};
|
|
1911
|
-
/** select columns of table "thread_feedback" */
|
|
1912
|
-
type Thread_Feedback_Select_Column =
|
|
1913
|
-
/** column name */
|
|
1914
|
-
'created_at'
|
|
1915
|
-
/** column name */
|
|
1916
|
-
| 'details'
|
|
1917
|
-
/** column name */
|
|
1918
|
-
| 'feedback'
|
|
1919
|
-
/** column name */
|
|
1920
|
-
| 'message_id'
|
|
1921
|
-
/** column name */
|
|
1922
|
-
| 'promptql_user_id'
|
|
1923
|
-
/** column name */
|
|
1924
|
-
| 'thread_id';
|
|
1925
|
-
/** order by stddev() on columns of table "thread_feedback" */
|
|
1926
|
-
type Thread_Feedback_Stddev_Order_By = {
|
|
1927
|
-
/** -1 means negative, 1 means positive */
|
|
1928
|
-
feedback?: InputMaybe<Order_By>;
|
|
1929
|
-
};
|
|
1930
|
-
/** order by stddev_pop() on columns of table "thread_feedback" */
|
|
1931
|
-
type Thread_Feedback_Stddev_Pop_Order_By = {
|
|
1932
|
-
/** -1 means negative, 1 means positive */
|
|
1933
|
-
feedback?: InputMaybe<Order_By>;
|
|
1934
|
-
};
|
|
1935
|
-
/** order by stddev_samp() on columns of table "thread_feedback" */
|
|
1936
|
-
type Thread_Feedback_Stddev_Samp_Order_By = {
|
|
1937
|
-
/** -1 means negative, 1 means positive */
|
|
1938
|
-
feedback?: InputMaybe<Order_By>;
|
|
1939
|
-
};
|
|
1940
|
-
/** order by sum() on columns of table "thread_feedback" */
|
|
1941
|
-
type Thread_Feedback_Sum_Order_By = {
|
|
1942
|
-
/** -1 means negative, 1 means positive */
|
|
1943
|
-
feedback?: InputMaybe<Order_By>;
|
|
1944
|
-
};
|
|
1945
|
-
/** order by var_pop() on columns of table "thread_feedback" */
|
|
1946
|
-
type Thread_Feedback_Var_Pop_Order_By = {
|
|
1947
|
-
/** -1 means negative, 1 means positive */
|
|
1948
|
-
feedback?: InputMaybe<Order_By>;
|
|
1949
|
-
};
|
|
1950
|
-
/** order by var_samp() on columns of table "thread_feedback" */
|
|
1951
|
-
type Thread_Feedback_Var_Samp_Order_By = {
|
|
1952
|
-
/** -1 means negative, 1 means positive */
|
|
1953
|
-
feedback?: InputMaybe<Order_By>;
|
|
1954
|
-
};
|
|
1955
|
-
/** order by variance() on columns of table "thread_feedback" */
|
|
1956
|
-
type Thread_Feedback_Variance_Order_By = {
|
|
1957
|
-
/** -1 means negative, 1 means positive */
|
|
1958
|
-
feedback?: InputMaybe<Order_By>;
|
|
1959
|
-
};
|
|
1960
|
-
/** Boolean expression to filter rows from the table "thread_notification_preference_enum". All fields are combined with a logical 'AND'. */
|
|
1961
|
-
type Thread_Notification_Preference_Enum_Bool_Exp = {
|
|
1962
|
-
_and?: InputMaybe<Array<Thread_Notification_Preference_Enum_Bool_Exp>>;
|
|
1963
|
-
_not?: InputMaybe<Thread_Notification_Preference_Enum_Bool_Exp>;
|
|
1964
|
-
_or?: InputMaybe<Array<Thread_Notification_Preference_Enum_Bool_Exp>>;
|
|
1965
|
-
comment?: InputMaybe<String_Comparison_Exp>;
|
|
1966
|
-
thread_participants?: InputMaybe<Thread_Participants_Bool_Exp>;
|
|
1967
|
-
thread_participants_aggregate?: InputMaybe<Thread_Participants_Aggregate_Bool_Exp>;
|
|
1968
|
-
thread_participants_by_desktop_notification_preference?: InputMaybe<Thread_Participants_Bool_Exp>;
|
|
1969
|
-
thread_participants_by_desktop_notification_preference_aggregate?: InputMaybe<Thread_Participants_Aggregate_Bool_Exp>;
|
|
1970
|
-
thread_participants_by_mobile_notification_preference?: InputMaybe<Thread_Participants_Bool_Exp>;
|
|
1971
|
-
thread_participants_by_mobile_notification_preference_aggregate?: InputMaybe<Thread_Participants_Aggregate_Bool_Exp>;
|
|
1972
|
-
value?: InputMaybe<String_Comparison_Exp>;
|
|
1973
|
-
};
|
|
1974
|
-
type Thread_Notification_Preference_Enum_Enum =
|
|
1975
|
-
/** Notifications for all events */
|
|
1976
|
-
'All'
|
|
1977
|
-
/** Notifications only when mentioned */
|
|
1978
|
-
| 'Mentions'
|
|
1979
|
-
/** Notifications for mentions and PromptQL replies to your questions */
|
|
1980
|
-
| 'MentionsAndReplies'
|
|
1981
|
-
/** No notifications for any event */
|
|
1982
|
-
| 'Nothing';
|
|
1983
|
-
/** Boolean expression to compare columns of type "thread_notification_preference_enum_enum". All fields are combined with logical 'AND'. */
|
|
1984
|
-
type Thread_Notification_Preference_Enum_Enum_Comparison_Exp = {
|
|
1985
|
-
_eq?: InputMaybe<Thread_Notification_Preference_Enum_Enum>;
|
|
1986
|
-
_in?: InputMaybe<Array<Thread_Notification_Preference_Enum_Enum>>;
|
|
1987
|
-
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1988
|
-
_neq?: InputMaybe<Thread_Notification_Preference_Enum_Enum>;
|
|
1989
|
-
_nin?: InputMaybe<Array<Thread_Notification_Preference_Enum_Enum>>;
|
|
1990
|
-
};
|
|
1991
|
-
type Thread_Participant_Activity_Aggregate_Bool_Exp = {
|
|
1992
|
-
count?: InputMaybe<Thread_Participant_Activity_Aggregate_Bool_Exp_Count>;
|
|
1993
|
-
};
|
|
1994
|
-
type Thread_Participant_Activity_Aggregate_Bool_Exp_Count = {
|
|
1995
|
-
arguments?: InputMaybe<Array<Thread_Participant_Activity_Select_Column>>;
|
|
1996
|
-
distinct?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1997
|
-
filter?: InputMaybe<Thread_Participant_Activity_Bool_Exp>;
|
|
1998
|
-
predicate: Int_Comparison_Exp;
|
|
1999
|
-
};
|
|
2000
|
-
/** Boolean expression to filter rows from the table "thread_participant_activity". All fields are combined with a logical 'AND'. */
|
|
2001
|
-
type Thread_Participant_Activity_Bool_Exp = {
|
|
2002
|
-
_and?: InputMaybe<Array<Thread_Participant_Activity_Bool_Exp>>;
|
|
2003
|
-
_not?: InputMaybe<Thread_Participant_Activity_Bool_Exp>;
|
|
2004
|
-
_or?: InputMaybe<Array<Thread_Participant_Activity_Bool_Exp>>;
|
|
2005
|
-
activity_id?: InputMaybe<Bigint_Comparison_Exp>;
|
|
2006
|
-
activity_type?: InputMaybe<String_Comparison_Exp>;
|
|
2007
|
-
performed_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
2008
|
-
performed_by?: InputMaybe<Uuid_Comparison_Exp>;
|
|
2009
|
-
promptql_user_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
2010
|
-
thread_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
2011
|
-
thread_participant?: InputMaybe<Thread_Participants_Bool_Exp>;
|
|
2012
|
-
};
|
|
2013
|
-
/** select columns of table "thread_participant_activity" */
|
|
2014
|
-
type Thread_Participant_Activity_Select_Column =
|
|
2015
|
-
/** column name */
|
|
2016
|
-
'activity_id'
|
|
2017
|
-
/** column name */
|
|
2018
|
-
| 'activity_type'
|
|
2019
|
-
/** column name */
|
|
2020
|
-
| 'performed_at'
|
|
2021
|
-
/** column name */
|
|
2022
|
-
| 'performed_by'
|
|
2023
|
-
/** column name */
|
|
2024
|
-
| 'promptql_user_id'
|
|
2025
|
-
/** column name */
|
|
2026
|
-
| 'thread_id';
|
|
2027
|
-
type Thread_Participants_Aggregate_Bool_Exp = {
|
|
2028
|
-
bool_and?: InputMaybe<Thread_Participants_Aggregate_Bool_Exp_Bool_And>;
|
|
2029
|
-
bool_or?: InputMaybe<Thread_Participants_Aggregate_Bool_Exp_Bool_Or>;
|
|
2030
|
-
count?: InputMaybe<Thread_Participants_Aggregate_Bool_Exp_Count>;
|
|
2031
|
-
};
|
|
2032
|
-
type Thread_Participants_Aggregate_Bool_Exp_Bool_And = {
|
|
2033
|
-
arguments: Thread_Participants_Select_Column_Thread_Participants_Aggregate_Bool_Exp_Bool_And_Arguments_Columns;
|
|
2034
|
-
distinct?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2035
|
-
filter?: InputMaybe<Thread_Participants_Bool_Exp>;
|
|
2036
|
-
predicate: Boolean_Comparison_Exp;
|
|
2037
|
-
};
|
|
2038
|
-
type Thread_Participants_Aggregate_Bool_Exp_Bool_Or = {
|
|
2039
|
-
arguments: Thread_Participants_Select_Column_Thread_Participants_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns;
|
|
2040
|
-
distinct?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2041
|
-
filter?: InputMaybe<Thread_Participants_Bool_Exp>;
|
|
2042
|
-
predicate: Boolean_Comparison_Exp;
|
|
2043
|
-
};
|
|
2044
|
-
type Thread_Participants_Aggregate_Bool_Exp_Count = {
|
|
2045
|
-
arguments?: InputMaybe<Array<Thread_Participants_Select_Column>>;
|
|
2046
|
-
distinct?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2047
|
-
filter?: InputMaybe<Thread_Participants_Bool_Exp>;
|
|
2048
|
-
predicate: Int_Comparison_Exp;
|
|
2049
|
-
};
|
|
2050
|
-
/** order by aggregate values of table "thread_participants" */
|
|
2051
|
-
type Thread_Participants_Aggregate_Order_By = {
|
|
2052
|
-
avg?: InputMaybe<Thread_Participants_Avg_Order_By>;
|
|
2053
|
-
count?: InputMaybe<Order_By>;
|
|
2054
|
-
max?: InputMaybe<Thread_Participants_Max_Order_By>;
|
|
2055
|
-
min?: InputMaybe<Thread_Participants_Min_Order_By>;
|
|
2056
|
-
stddev?: InputMaybe<Thread_Participants_Stddev_Order_By>;
|
|
2057
|
-
stddev_pop?: InputMaybe<Thread_Participants_Stddev_Pop_Order_By>;
|
|
2058
|
-
stddev_samp?: InputMaybe<Thread_Participants_Stddev_Samp_Order_By>;
|
|
2059
|
-
sum?: InputMaybe<Thread_Participants_Sum_Order_By>;
|
|
2060
|
-
var_pop?: InputMaybe<Thread_Participants_Var_Pop_Order_By>;
|
|
2061
|
-
var_samp?: InputMaybe<Thread_Participants_Var_Samp_Order_By>;
|
|
2062
|
-
variance?: InputMaybe<Thread_Participants_Variance_Order_By>;
|
|
2063
|
-
};
|
|
2064
|
-
/** order by avg() on columns of table "thread_participants" */
|
|
2065
|
-
type Thread_Participants_Avg_Order_By = {
|
|
2066
|
-
last_seen_event_id?: InputMaybe<Order_By>;
|
|
2067
|
-
latest_relevant_event_id?: InputMaybe<Order_By>;
|
|
2068
|
-
};
|
|
2069
|
-
/** Boolean expression to filter rows from the table "thread_participants". All fields are combined with a logical 'AND'. */
|
|
2070
|
-
type Thread_Participants_Bool_Exp = {
|
|
2071
|
-
_and?: InputMaybe<Array<Thread_Participants_Bool_Exp>>;
|
|
2072
|
-
_not?: InputMaybe<Thread_Participants_Bool_Exp>;
|
|
2073
|
-
_or?: InputMaybe<Array<Thread_Participants_Bool_Exp>>;
|
|
2074
|
-
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
2075
|
-
desktop_notification_preference?: InputMaybe<Thread_Notification_Preference_Enum_Enum_Comparison_Exp>;
|
|
2076
|
-
desktop_notification_preference_enum?: InputMaybe<Thread_Notification_Preference_Enum_Bool_Exp>;
|
|
2077
|
-
is_removed?: InputMaybe<Boolean_Comparison_Exp>;
|
|
2078
|
-
last_seen_event_id?: InputMaybe<Bigint_Comparison_Exp>;
|
|
2079
|
-
last_seen_thread_event?: InputMaybe<Thread_Events_Bool_Exp>;
|
|
2080
|
-
latest_relevant_event_id?: InputMaybe<Bigint_Comparison_Exp>;
|
|
2081
|
-
mobile_notification_preference?: InputMaybe<Thread_Notification_Preference_Enum_Enum_Comparison_Exp>;
|
|
2082
|
-
mobile_notification_preference_enum?: InputMaybe<Thread_Notification_Preference_Enum_Bool_Exp>;
|
|
2083
|
-
notification_preference?: InputMaybe<String_Comparison_Exp>;
|
|
2084
|
-
promptql_user?: InputMaybe<Promptql_Users_Bool_Exp>;
|
|
2085
|
-
promptql_user_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
2086
|
-
slack_notification_preference?: InputMaybe<Thread_Notification_Preference_Enum_Enum_Comparison_Exp>;
|
|
2087
|
-
slack_notification_preference_enum?: InputMaybe<Thread_Notification_Preference_Enum_Bool_Exp>;
|
|
2088
|
-
thread_events?: InputMaybe<Thread_Events_Bool_Exp>;
|
|
2089
|
-
thread_events_aggregate?: InputMaybe<Thread_Events_Aggregate_Bool_Exp>;
|
|
2090
|
-
thread_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
2091
|
-
thread_participant_activities?: InputMaybe<Thread_Participant_Activity_Bool_Exp>;
|
|
2092
|
-
thread_participant_activities_aggregate?: InputMaybe<Thread_Participant_Activity_Aggregate_Bool_Exp>;
|
|
2093
|
-
threads_v2?: InputMaybe<Threads_V2_Bool_Exp>;
|
|
2094
|
-
typing_indicator?: InputMaybe<Thread_User_Typing_Bool_Exp>;
|
|
2095
|
-
updated_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
2096
|
-
};
|
|
2097
|
-
/** order by max() on columns of table "thread_participants" */
|
|
2098
|
-
type Thread_Participants_Max_Order_By = {
|
|
2099
|
-
/** Timestamp when the participant was added to the thread */
|
|
2100
|
-
created_at?: InputMaybe<Order_By>;
|
|
2101
|
-
last_seen_event_id?: InputMaybe<Order_By>;
|
|
2102
|
-
latest_relevant_event_id?: InputMaybe<Order_By>;
|
|
2103
|
-
promptql_user_id?: InputMaybe<Order_By>;
|
|
2104
|
-
thread_id?: InputMaybe<Order_By>;
|
|
2105
|
-
updated_at?: InputMaybe<Order_By>;
|
|
2106
|
-
};
|
|
2107
|
-
/** order by min() on columns of table "thread_participants" */
|
|
2108
|
-
type Thread_Participants_Min_Order_By = {
|
|
2109
|
-
/** Timestamp when the participant was added to the thread */
|
|
2110
|
-
created_at?: InputMaybe<Order_By>;
|
|
2111
|
-
last_seen_event_id?: InputMaybe<Order_By>;
|
|
2112
|
-
latest_relevant_event_id?: InputMaybe<Order_By>;
|
|
2113
|
-
promptql_user_id?: InputMaybe<Order_By>;
|
|
2114
|
-
thread_id?: InputMaybe<Order_By>;
|
|
2115
|
-
updated_at?: InputMaybe<Order_By>;
|
|
2116
|
-
};
|
|
2117
|
-
/** select columns of table "thread_participants" */
|
|
2118
|
-
type Thread_Participants_Select_Column =
|
|
2119
|
-
/** column name */
|
|
2120
|
-
'created_at'
|
|
2121
|
-
/** column name */
|
|
2122
|
-
| 'desktop_notification_preference'
|
|
2123
|
-
/** column name */
|
|
2124
|
-
| 'is_removed'
|
|
2125
|
-
/** column name */
|
|
2126
|
-
| 'last_seen_event_id'
|
|
2127
|
-
/** column name */
|
|
2128
|
-
| 'latest_relevant_event_id'
|
|
2129
|
-
/** column name */
|
|
2130
|
-
| 'mobile_notification_preference'
|
|
2131
|
-
/** column name */
|
|
2132
|
-
| 'promptql_user_id'
|
|
2133
|
-
/** column name */
|
|
2134
|
-
| 'slack_notification_preference'
|
|
2135
|
-
/** column name */
|
|
2136
|
-
| 'thread_id'
|
|
2137
|
-
/** column name */
|
|
2138
|
-
| 'updated_at';
|
|
2139
|
-
/** select "thread_participants_aggregate_bool_exp_bool_and_arguments_columns" columns of table "thread_participants" */
|
|
2140
|
-
type Thread_Participants_Select_Column_Thread_Participants_Aggregate_Bool_Exp_Bool_And_Arguments_Columns =
|
|
2141
|
-
/** column name */
|
|
2142
|
-
'is_removed';
|
|
2143
|
-
/** select "thread_participants_aggregate_bool_exp_bool_or_arguments_columns" columns of table "thread_participants" */
|
|
2144
|
-
type Thread_Participants_Select_Column_Thread_Participants_Aggregate_Bool_Exp_Bool_Or_Arguments_Columns =
|
|
2145
|
-
/** column name */
|
|
2146
|
-
'is_removed';
|
|
2147
|
-
/** order by stddev() on columns of table "thread_participants" */
|
|
2148
|
-
type Thread_Participants_Stddev_Order_By = {
|
|
2149
|
-
last_seen_event_id?: InputMaybe<Order_By>;
|
|
2150
|
-
latest_relevant_event_id?: InputMaybe<Order_By>;
|
|
2151
|
-
};
|
|
2152
|
-
/** order by stddev_pop() on columns of table "thread_participants" */
|
|
2153
|
-
type Thread_Participants_Stddev_Pop_Order_By = {
|
|
2154
|
-
last_seen_event_id?: InputMaybe<Order_By>;
|
|
2155
|
-
latest_relevant_event_id?: InputMaybe<Order_By>;
|
|
2156
|
-
};
|
|
2157
|
-
/** order by stddev_samp() on columns of table "thread_participants" */
|
|
2158
|
-
type Thread_Participants_Stddev_Samp_Order_By = {
|
|
2159
|
-
last_seen_event_id?: InputMaybe<Order_By>;
|
|
2160
|
-
latest_relevant_event_id?: InputMaybe<Order_By>;
|
|
2161
|
-
};
|
|
2162
|
-
/** order by sum() on columns of table "thread_participants" */
|
|
2163
|
-
type Thread_Participants_Sum_Order_By = {
|
|
2164
|
-
last_seen_event_id?: InputMaybe<Order_By>;
|
|
2165
|
-
latest_relevant_event_id?: InputMaybe<Order_By>;
|
|
2166
|
-
};
|
|
2167
|
-
/** order by var_pop() on columns of table "thread_participants" */
|
|
2168
|
-
type Thread_Participants_Var_Pop_Order_By = {
|
|
2169
|
-
last_seen_event_id?: InputMaybe<Order_By>;
|
|
2170
|
-
latest_relevant_event_id?: InputMaybe<Order_By>;
|
|
2171
|
-
};
|
|
2172
|
-
/** order by var_samp() on columns of table "thread_participants" */
|
|
2173
|
-
type Thread_Participants_Var_Samp_Order_By = {
|
|
2174
|
-
last_seen_event_id?: InputMaybe<Order_By>;
|
|
2175
|
-
latest_relevant_event_id?: InputMaybe<Order_By>;
|
|
2176
|
-
};
|
|
2177
|
-
/** order by variance() on columns of table "thread_participants" */
|
|
2178
|
-
type Thread_Participants_Variance_Order_By = {
|
|
2179
|
-
last_seen_event_id?: InputMaybe<Order_By>;
|
|
2180
|
-
latest_relevant_event_id?: InputMaybe<Order_By>;
|
|
2181
|
-
};
|
|
2182
|
-
/** order by aggregate values of table "thread_taught_by_result" */
|
|
2183
|
-
type Thread_Taught_By_Result_Aggregate_Order_By = {
|
|
2184
|
-
count?: InputMaybe<Order_By>;
|
|
2185
|
-
max?: InputMaybe<Thread_Taught_By_Result_Max_Order_By>;
|
|
2186
|
-
min?: InputMaybe<Thread_Taught_By_Result_Min_Order_By>;
|
|
2187
|
-
};
|
|
2188
|
-
/** Boolean expression to filter rows from the table "thread_taught_by_result". All fields are combined with a logical 'AND'. */
|
|
2189
|
-
type Thread_Taught_By_Result_Bool_Exp = {
|
|
2190
|
-
_and?: InputMaybe<Array<Thread_Taught_By_Result_Bool_Exp>>;
|
|
2191
|
-
_not?: InputMaybe<Thread_Taught_By_Result_Bool_Exp>;
|
|
2192
|
-
_or?: InputMaybe<Array<Thread_Taught_By_Result_Bool_Exp>>;
|
|
2193
|
-
teachings?: InputMaybe<String_Comparison_Exp>;
|
|
2194
|
-
user?: InputMaybe<Promptql_Users_Bool_Exp>;
|
|
2195
|
-
user_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
2196
|
-
};
|
|
2197
|
-
/** order by max() on columns of table "thread_taught_by_result" */
|
|
2198
|
-
type Thread_Taught_By_Result_Max_Order_By = {
|
|
2199
|
-
teachings?: InputMaybe<Order_By>;
|
|
2200
|
-
user_id?: InputMaybe<Order_By>;
|
|
2201
|
-
};
|
|
2202
|
-
/** order by min() on columns of table "thread_taught_by_result" */
|
|
2203
|
-
type Thread_Taught_By_Result_Min_Order_By = {
|
|
2204
|
-
teachings?: InputMaybe<Order_By>;
|
|
2205
|
-
user_id?: InputMaybe<Order_By>;
|
|
2206
|
-
};
|
|
2207
|
-
type Thread_User_Typing_Aggregate_Bool_Exp = {
|
|
2208
|
-
count?: InputMaybe<Thread_User_Typing_Aggregate_Bool_Exp_Count>;
|
|
2209
|
-
};
|
|
2210
|
-
type Thread_User_Typing_Aggregate_Bool_Exp_Count = {
|
|
2211
|
-
arguments?: InputMaybe<Array<Thread_User_Typing_Select_Column>>;
|
|
2212
|
-
distinct?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2213
|
-
filter?: InputMaybe<Thread_User_Typing_Bool_Exp>;
|
|
2214
|
-
predicate: Int_Comparison_Exp;
|
|
2215
|
-
};
|
|
2216
|
-
/** order by aggregate values of table "thread_user_typing" */
|
|
2217
|
-
type Thread_User_Typing_Aggregate_Order_By = {
|
|
2218
|
-
count?: InputMaybe<Order_By>;
|
|
2219
|
-
max?: InputMaybe<Thread_User_Typing_Max_Order_By>;
|
|
2220
|
-
min?: InputMaybe<Thread_User_Typing_Min_Order_By>;
|
|
2221
|
-
};
|
|
2222
|
-
/** Boolean expression to filter rows from the table "thread_user_typing". All fields are combined with a logical 'AND'. */
|
|
2223
|
-
type Thread_User_Typing_Bool_Exp = {
|
|
2224
|
-
_and?: InputMaybe<Array<Thread_User_Typing_Bool_Exp>>;
|
|
2225
|
-
_not?: InputMaybe<Thread_User_Typing_Bool_Exp>;
|
|
2226
|
-
_or?: InputMaybe<Array<Thread_User_Typing_Bool_Exp>>;
|
|
2227
|
-
last_typing_ts?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
2228
|
-
promptql_user_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
2229
|
-
thread?: InputMaybe<Threads_V2_Bool_Exp>;
|
|
2230
|
-
thread_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
2231
|
-
thread_participant?: InputMaybe<Thread_Participants_Bool_Exp>;
|
|
2232
|
-
user?: InputMaybe<Promptql_Users_Bool_Exp>;
|
|
2233
|
-
};
|
|
2234
|
-
/** order by max() on columns of table "thread_user_typing" */
|
|
2235
|
-
type Thread_User_Typing_Max_Order_By = {
|
|
2236
|
-
last_typing_ts?: InputMaybe<Order_By>;
|
|
2237
|
-
promptql_user_id?: InputMaybe<Order_By>;
|
|
2238
|
-
thread_id?: InputMaybe<Order_By>;
|
|
2239
|
-
};
|
|
2240
|
-
/** order by min() on columns of table "thread_user_typing" */
|
|
2241
|
-
type Thread_User_Typing_Min_Order_By = {
|
|
2242
|
-
last_typing_ts?: InputMaybe<Order_By>;
|
|
2243
|
-
promptql_user_id?: InputMaybe<Order_By>;
|
|
2244
|
-
thread_id?: InputMaybe<Order_By>;
|
|
2245
|
-
};
|
|
2246
|
-
/** select columns of table "thread_user_typing" */
|
|
2247
|
-
type Thread_User_Typing_Select_Column =
|
|
2248
|
-
/** column name */
|
|
2249
|
-
'last_typing_ts'
|
|
2250
|
-
/** column name */
|
|
2251
|
-
| 'promptql_user_id'
|
|
2252
|
-
/** column name */
|
|
2253
|
-
| 'thread_id';
|
|
2254
|
-
type Thread_Visibility_Enum_Enum =
|
|
2255
|
-
/** Private threads are visible only to thread participants */
|
|
2256
|
-
'PRIVATE'
|
|
2257
|
-
/** Public threads are visible to everyone in the project */
|
|
2258
|
-
| 'PUBLIC';
|
|
2259
|
-
/** Boolean expression to compare columns of type "thread_visibility_enum_enum". All fields are combined with logical 'AND'. */
|
|
2260
|
-
type Thread_Visibility_Enum_Enum_Comparison_Exp = {
|
|
2261
|
-
_eq?: InputMaybe<Thread_Visibility_Enum_Enum>;
|
|
2262
|
-
_in?: InputMaybe<Array<Thread_Visibility_Enum_Enum>>;
|
|
2263
|
-
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2264
|
-
_neq?: InputMaybe<Thread_Visibility_Enum_Enum>;
|
|
2265
|
-
_nin?: InputMaybe<Array<Thread_Visibility_Enum_Enum>>;
|
|
2266
|
-
};
|
|
2267
|
-
type Threads_V2_Aggregate_Bool_Exp = {
|
|
2268
|
-
count?: InputMaybe<Threads_V2_Aggregate_Bool_Exp_Count>;
|
|
2269
|
-
};
|
|
2270
|
-
type Threads_V2_Aggregate_Bool_Exp_Count = {
|
|
2271
|
-
arguments?: InputMaybe<Array<Threads_V2_Select_Column>>;
|
|
2272
|
-
distinct?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2273
|
-
filter?: InputMaybe<Threads_V2_Bool_Exp>;
|
|
2274
|
-
predicate: Int_Comparison_Exp;
|
|
2275
|
-
};
|
|
2276
|
-
/** order by aggregate values of table "threads_v2" */
|
|
2277
|
-
type Threads_V2_Aggregate_Order_By = {
|
|
2278
|
-
avg?: InputMaybe<Threads_V2_Avg_Order_By>;
|
|
2279
|
-
count?: InputMaybe<Order_By>;
|
|
2280
|
-
max?: InputMaybe<Threads_V2_Max_Order_By>;
|
|
2281
|
-
min?: InputMaybe<Threads_V2_Min_Order_By>;
|
|
2282
|
-
stddev?: InputMaybe<Threads_V2_Stddev_Order_By>;
|
|
2283
|
-
stddev_pop?: InputMaybe<Threads_V2_Stddev_Pop_Order_By>;
|
|
2284
|
-
stddev_samp?: InputMaybe<Threads_V2_Stddev_Samp_Order_By>;
|
|
2285
|
-
sum?: InputMaybe<Threads_V2_Sum_Order_By>;
|
|
2286
|
-
var_pop?: InputMaybe<Threads_V2_Var_Pop_Order_By>;
|
|
2287
|
-
var_samp?: InputMaybe<Threads_V2_Var_Samp_Order_By>;
|
|
2288
|
-
variance?: InputMaybe<Threads_V2_Variance_Order_By>;
|
|
2289
|
-
};
|
|
2290
|
-
/** order by avg() on columns of table "threads_v2" */
|
|
2291
|
-
type Threads_V2_Avg_Order_By = {
|
|
2292
|
-
/** Denormalized first thread_event_id for fast room new-thread queries. */
|
|
2293
|
-
first_event_id?: InputMaybe<Order_By>;
|
|
2294
|
-
};
|
|
2295
|
-
/** Boolean expression to filter rows from the table "threads_v2". All fields are combined with a logical 'AND'. */
|
|
2296
|
-
type Threads_V2_Bool_Exp = {
|
|
2297
|
-
_and?: InputMaybe<Array<Threads_V2_Bool_Exp>>;
|
|
2298
|
-
_not?: InputMaybe<Threads_V2_Bool_Exp>;
|
|
2299
|
-
_or?: InputMaybe<Array<Threads_V2_Bool_Exp>>;
|
|
2300
|
-
build_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
2301
|
-
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
2302
|
-
created_from?: InputMaybe<String_Comparison_Exp>;
|
|
2303
|
-
custom_title?: InputMaybe<String_Comparison_Exp>;
|
|
2304
|
-
deleted_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
2305
|
-
first_event_id?: InputMaybe<Bigint_Comparison_Exp>;
|
|
2306
|
-
forked_from?: InputMaybe<Uuid_Comparison_Exp>;
|
|
2307
|
-
interactors?: InputMaybe<Promptql_Users_Bool_Exp>;
|
|
2308
|
-
is_starred?: InputMaybe<Boolean_Comparison_Exp>;
|
|
2309
|
-
learning_suggestion?: InputMaybe<String_Comparison_Exp>;
|
|
2310
|
-
message_reactions?: InputMaybe<Message_Reactions_Bool_Exp>;
|
|
2311
|
-
message_reactions_aggregate?: InputMaybe<Message_Reactions_Aggregate_Bool_Exp>;
|
|
2312
|
-
pinned_threads_v2s?: InputMaybe<Pinned_Threads_V2_Bool_Exp>;
|
|
2313
|
-
project_config?: InputMaybe<Project_Configuration_Bool_Exp>;
|
|
2314
|
-
project_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
2315
|
-
project_slack_integrations?: InputMaybe<Slack_Integration_Bool_Exp>;
|
|
2316
|
-
project_user_groups?: InputMaybe<User_Groups_Bool_Exp>;
|
|
2317
|
-
relevant_event_count?: InputMaybe<Int_Comparison_Exp>;
|
|
2318
|
-
room?: InputMaybe<Rooms_Bool_Exp>;
|
|
2319
|
-
room_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
2320
|
-
shared_threads?: InputMaybe<Shared_Threads_Bool_Exp>;
|
|
2321
|
-
social_feed_candidates?: InputMaybe<Social_Feed_Candidates_Bool_Exp>;
|
|
2322
|
-
taught_by?: InputMaybe<Thread_Taught_By_Result_Bool_Exp>;
|
|
2323
|
-
thread_artifacts?: InputMaybe<Thread_Artifacts_Bool_Exp>;
|
|
2324
|
-
thread_artifacts_aggregate?: InputMaybe<Thread_Artifacts_Aggregate_Bool_Exp>;
|
|
2325
|
-
thread_event_mentions?: InputMaybe<Thread_Event_Mentions_Bool_Exp>;
|
|
2326
|
-
thread_event_mentions_aggregate?: InputMaybe<Thread_Event_Mentions_Aggregate_Bool_Exp>;
|
|
2327
|
-
thread_events?: InputMaybe<Thread_Events_Bool_Exp>;
|
|
2328
|
-
thread_events_aggregate?: InputMaybe<Thread_Events_Aggregate_Bool_Exp>;
|
|
2329
|
-
thread_feedback?: InputMaybe<Thread_Feedback_Bool_Exp>;
|
|
2330
|
-
thread_feedback_aggregate?: InputMaybe<Thread_Feedback_Aggregate_Bool_Exp>;
|
|
2331
|
-
thread_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
2332
|
-
thread_participants?: InputMaybe<Thread_Participants_Bool_Exp>;
|
|
2333
|
-
thread_participants_aggregate?: InputMaybe<Thread_Participants_Aggregate_Bool_Exp>;
|
|
2334
|
-
thread_user_typing?: InputMaybe<Thread_User_Typing_Bool_Exp>;
|
|
2335
|
-
thread_user_typing_aggregate?: InputMaybe<Thread_User_Typing_Aggregate_Bool_Exp>;
|
|
2336
|
-
title?: InputMaybe<String_Comparison_Exp>;
|
|
2337
|
-
updated_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
2338
|
-
user?: InputMaybe<Promptql_Users_Bool_Exp>;
|
|
2339
|
-
user_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
2340
|
-
visibility?: InputMaybe<Thread_Visibility_Enum_Enum_Comparison_Exp>;
|
|
2341
|
-
};
|
|
2342
|
-
/** order by max() on columns of table "threads_v2" */
|
|
2343
|
-
type Threads_V2_Max_Order_By = {
|
|
2344
|
-
build_id?: InputMaybe<Order_By>;
|
|
2345
|
-
created_at?: InputMaybe<Order_By>;
|
|
2346
|
-
created_from?: InputMaybe<Order_By>;
|
|
2347
|
-
custom_title?: InputMaybe<Order_By>;
|
|
2348
|
-
deleted_at?: InputMaybe<Order_By>;
|
|
2349
|
-
/** Denormalized first thread_event_id for fast room new-thread queries. */
|
|
2350
|
-
first_event_id?: InputMaybe<Order_By>;
|
|
2351
|
-
forked_from?: InputMaybe<Order_By>;
|
|
2352
|
-
project_id?: InputMaybe<Order_By>;
|
|
2353
|
-
/** The room this thread belongs to. Every thread must belong to exactly one room. */
|
|
2354
|
-
room_id?: InputMaybe<Order_By>;
|
|
2355
|
-
thread_id?: InputMaybe<Order_By>;
|
|
2356
|
-
title?: InputMaybe<Order_By>;
|
|
2357
|
-
/** DEPRECATED: Do not use this field. The actual updated_at can be derived from the last event of the thread (thread_events table). */
|
|
2358
|
-
updated_at?: InputMaybe<Order_By>;
|
|
2359
|
-
/** promptql_user_id of creator */
|
|
2360
|
-
user_id?: InputMaybe<Order_By>;
|
|
2361
|
-
};
|
|
2362
|
-
/** order by min() on columns of table "threads_v2" */
|
|
2363
|
-
type Threads_V2_Min_Order_By = {
|
|
2364
|
-
build_id?: InputMaybe<Order_By>;
|
|
2365
|
-
created_at?: InputMaybe<Order_By>;
|
|
2366
|
-
created_from?: InputMaybe<Order_By>;
|
|
2367
|
-
custom_title?: InputMaybe<Order_By>;
|
|
2368
|
-
deleted_at?: InputMaybe<Order_By>;
|
|
2369
|
-
/** Denormalized first thread_event_id for fast room new-thread queries. */
|
|
2370
|
-
first_event_id?: InputMaybe<Order_By>;
|
|
2371
|
-
forked_from?: InputMaybe<Order_By>;
|
|
2372
|
-
project_id?: InputMaybe<Order_By>;
|
|
2373
|
-
/** The room this thread belongs to. Every thread must belong to exactly one room. */
|
|
2374
|
-
room_id?: InputMaybe<Order_By>;
|
|
2375
|
-
thread_id?: InputMaybe<Order_By>;
|
|
2376
|
-
title?: InputMaybe<Order_By>;
|
|
2377
|
-
/** DEPRECATED: Do not use this field. The actual updated_at can be derived from the last event of the thread (thread_events table). */
|
|
2378
|
-
updated_at?: InputMaybe<Order_By>;
|
|
2379
|
-
/** promptql_user_id of creator */
|
|
2380
|
-
user_id?: InputMaybe<Order_By>;
|
|
2381
|
-
};
|
|
2382
|
-
/** Ordering options when selecting data from "threads_v2". */
|
|
2383
|
-
type Threads_V2_Order_By = {
|
|
2384
|
-
build_id?: InputMaybe<Order_By>;
|
|
2385
|
-
created_at?: InputMaybe<Order_By>;
|
|
2386
|
-
created_from?: InputMaybe<Order_By>;
|
|
2387
|
-
custom_title?: InputMaybe<Order_By>;
|
|
2388
|
-
deleted_at?: InputMaybe<Order_By>;
|
|
2389
|
-
first_event_id?: InputMaybe<Order_By>;
|
|
2390
|
-
forked_from?: InputMaybe<Order_By>;
|
|
2391
|
-
interactors_aggregate?: InputMaybe<Promptql_Users_Aggregate_Order_By>;
|
|
2392
|
-
is_starred?: InputMaybe<Order_By>;
|
|
2393
|
-
learning_suggestion?: InputMaybe<Order_By>;
|
|
2394
|
-
message_reactions_aggregate?: InputMaybe<Message_Reactions_Aggregate_Order_By>;
|
|
2395
|
-
pinned_threads_v2s_aggregate?: InputMaybe<Pinned_Threads_V2_Aggregate_Order_By>;
|
|
2396
|
-
project_config?: InputMaybe<Project_Configuration_Order_By>;
|
|
2397
|
-
project_id?: InputMaybe<Order_By>;
|
|
2398
|
-
project_slack_integrations_aggregate?: InputMaybe<Slack_Integration_Aggregate_Order_By>;
|
|
2399
|
-
project_user_groups_aggregate?: InputMaybe<User_Groups_Aggregate_Order_By>;
|
|
2400
|
-
relevant_event_count?: InputMaybe<Order_By>;
|
|
2401
|
-
room?: InputMaybe<Rooms_Order_By>;
|
|
2402
|
-
room_id?: InputMaybe<Order_By>;
|
|
2403
|
-
shared_threads_aggregate?: InputMaybe<Shared_Threads_Aggregate_Order_By>;
|
|
2404
|
-
social_feed_candidates_aggregate?: InputMaybe<Social_Feed_Candidates_Aggregate_Order_By>;
|
|
2405
|
-
taught_by_aggregate?: InputMaybe<Thread_Taught_By_Result_Aggregate_Order_By>;
|
|
2406
|
-
thread_artifacts_aggregate?: InputMaybe<Thread_Artifacts_Aggregate_Order_By>;
|
|
2407
|
-
thread_event_mentions_aggregate?: InputMaybe<Thread_Event_Mentions_Aggregate_Order_By>;
|
|
2408
|
-
thread_events_aggregate?: InputMaybe<Thread_Events_Aggregate_Order_By>;
|
|
2409
|
-
thread_feedback_aggregate?: InputMaybe<Thread_Feedback_Aggregate_Order_By>;
|
|
2410
|
-
thread_id?: InputMaybe<Order_By>;
|
|
2411
|
-
thread_participants_aggregate?: InputMaybe<Thread_Participants_Aggregate_Order_By>;
|
|
2412
|
-
thread_user_typing_aggregate?: InputMaybe<Thread_User_Typing_Aggregate_Order_By>;
|
|
2413
|
-
title?: InputMaybe<Order_By>;
|
|
2414
|
-
updated_at?: InputMaybe<Order_By>;
|
|
2415
|
-
user?: InputMaybe<Promptql_Users_Order_By>;
|
|
2416
|
-
user_id?: InputMaybe<Order_By>;
|
|
2417
|
-
visibility?: InputMaybe<Order_By>;
|
|
2418
|
-
};
|
|
2419
|
-
/** select columns of table "threads_v2" */
|
|
2420
|
-
type Threads_V2_Select_Column =
|
|
2421
|
-
/** column name */
|
|
2422
|
-
'build_id'
|
|
2423
|
-
/** column name */
|
|
2424
|
-
| 'created_at'
|
|
2425
|
-
/** column name */
|
|
2426
|
-
| 'created_from'
|
|
2427
|
-
/** column name */
|
|
2428
|
-
| 'custom_title'
|
|
2429
|
-
/** column name */
|
|
2430
|
-
| 'deleted_at'
|
|
2431
|
-
/** column name */
|
|
2432
|
-
| 'first_event_id'
|
|
2433
|
-
/** column name */
|
|
2434
|
-
| 'forked_from'
|
|
2435
|
-
/** column name */
|
|
2436
|
-
| 'project_id'
|
|
2437
|
-
/** column name */
|
|
2438
|
-
| 'room_id'
|
|
2439
|
-
/** column name */
|
|
2440
|
-
| 'thread_id'
|
|
2441
|
-
/** column name */
|
|
2442
|
-
| 'title'
|
|
2443
|
-
/** column name */
|
|
2444
|
-
| 'updated_at'
|
|
2445
|
-
/** column name */
|
|
2446
|
-
| 'user_id'
|
|
2447
|
-
/** column name */
|
|
2448
|
-
| 'visibility';
|
|
2449
|
-
/** order by stddev() on columns of table "threads_v2" */
|
|
2450
|
-
type Threads_V2_Stddev_Order_By = {
|
|
2451
|
-
/** Denormalized first thread_event_id for fast room new-thread queries. */
|
|
2452
|
-
first_event_id?: InputMaybe<Order_By>;
|
|
2453
|
-
};
|
|
2454
|
-
/** order by stddev_pop() on columns of table "threads_v2" */
|
|
2455
|
-
type Threads_V2_Stddev_Pop_Order_By = {
|
|
2456
|
-
/** Denormalized first thread_event_id for fast room new-thread queries. */
|
|
2457
|
-
first_event_id?: InputMaybe<Order_By>;
|
|
2458
|
-
};
|
|
2459
|
-
/** order by stddev_samp() on columns of table "threads_v2" */
|
|
2460
|
-
type Threads_V2_Stddev_Samp_Order_By = {
|
|
2461
|
-
/** Denormalized first thread_event_id for fast room new-thread queries. */
|
|
2462
|
-
first_event_id?: InputMaybe<Order_By>;
|
|
2463
|
-
};
|
|
2464
|
-
/** order by sum() on columns of table "threads_v2" */
|
|
2465
|
-
type Threads_V2_Sum_Order_By = {
|
|
2466
|
-
/** Denormalized first thread_event_id for fast room new-thread queries. */
|
|
2467
|
-
first_event_id?: InputMaybe<Order_By>;
|
|
2468
|
-
};
|
|
2469
|
-
/** order by var_pop() on columns of table "threads_v2" */
|
|
2470
|
-
type Threads_V2_Var_Pop_Order_By = {
|
|
2471
|
-
/** Denormalized first thread_event_id for fast room new-thread queries. */
|
|
2472
|
-
first_event_id?: InputMaybe<Order_By>;
|
|
2473
|
-
};
|
|
2474
|
-
/** order by var_samp() on columns of table "threads_v2" */
|
|
2475
|
-
type Threads_V2_Var_Samp_Order_By = {
|
|
2476
|
-
/** Denormalized first thread_event_id for fast room new-thread queries. */
|
|
2477
|
-
first_event_id?: InputMaybe<Order_By>;
|
|
2478
|
-
};
|
|
2479
|
-
/** order by variance() on columns of table "threads_v2" */
|
|
2480
|
-
type Threads_V2_Variance_Order_By = {
|
|
2481
|
-
/** Denormalized first thread_event_id for fast room new-thread queries. */
|
|
2482
|
-
first_event_id?: InputMaybe<Order_By>;
|
|
2483
|
-
};
|
|
2484
|
-
/** Boolean expression to compare columns of type "timestamptz". All fields are combined with logical 'AND'. */
|
|
2485
|
-
type Timestamptz_Comparison_Exp = {
|
|
2486
|
-
_eq?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
2487
|
-
_gt?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
2488
|
-
_gte?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
2489
|
-
_in?: InputMaybe<Array<Scalars['timestamptz']['input']>>;
|
|
2490
|
-
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2491
|
-
_lt?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
2492
|
-
_lte?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
2493
|
-
_neq?: InputMaybe<Scalars['timestamptz']['input']>;
|
|
2494
|
-
_nin?: InputMaybe<Array<Scalars['timestamptz']['input']>>;
|
|
2495
|
-
};
|
|
2496
|
-
/** order by aggregate values of table "user_group_members" */
|
|
2497
|
-
type User_Group_Members_Aggregate_Order_By = {
|
|
2498
|
-
count?: InputMaybe<Order_By>;
|
|
2499
|
-
max?: InputMaybe<User_Group_Members_Max_Order_By>;
|
|
2500
|
-
min?: InputMaybe<User_Group_Members_Min_Order_By>;
|
|
2501
|
-
};
|
|
2502
|
-
/** Boolean expression to filter rows from the table "user_group_members". All fields are combined with a logical 'AND'. */
|
|
2503
|
-
type User_Group_Members_Bool_Exp = {
|
|
2504
|
-
_and?: InputMaybe<Array<User_Group_Members_Bool_Exp>>;
|
|
2505
|
-
_not?: InputMaybe<User_Group_Members_Bool_Exp>;
|
|
2506
|
-
_or?: InputMaybe<Array<User_Group_Members_Bool_Exp>>;
|
|
2507
|
-
promptql_user?: InputMaybe<Promptql_Users_Bool_Exp>;
|
|
2508
|
-
promptql_user_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
2509
|
-
user_group?: InputMaybe<User_Groups_Bool_Exp>;
|
|
2510
|
-
user_group_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
2511
|
-
};
|
|
2512
|
-
/** order by max() on columns of table "user_group_members" */
|
|
2513
|
-
type User_Group_Members_Max_Order_By = {
|
|
2514
|
-
promptql_user_id?: InputMaybe<Order_By>;
|
|
2515
|
-
user_group_id?: InputMaybe<Order_By>;
|
|
2516
|
-
};
|
|
2517
|
-
/** order by min() on columns of table "user_group_members" */
|
|
2518
|
-
type User_Group_Members_Min_Order_By = {
|
|
2519
|
-
promptql_user_id?: InputMaybe<Order_By>;
|
|
2520
|
-
user_group_id?: InputMaybe<Order_By>;
|
|
2521
|
-
};
|
|
2522
|
-
/** order by aggregate values of table "user_groups" */
|
|
2523
|
-
type User_Groups_Aggregate_Order_By = {
|
|
2524
|
-
count?: InputMaybe<Order_By>;
|
|
2525
|
-
max?: InputMaybe<User_Groups_Max_Order_By>;
|
|
2526
|
-
min?: InputMaybe<User_Groups_Min_Order_By>;
|
|
2527
|
-
};
|
|
2528
|
-
/** Boolean expression to filter rows from the table "user_groups". All fields are combined with a logical 'AND'. */
|
|
2529
|
-
type User_Groups_Bool_Exp = {
|
|
2530
|
-
_and?: InputMaybe<Array<User_Groups_Bool_Exp>>;
|
|
2531
|
-
_not?: InputMaybe<User_Groups_Bool_Exp>;
|
|
2532
|
-
_or?: InputMaybe<Array<User_Groups_Bool_Exp>>;
|
|
2533
|
-
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
2534
|
-
description?: InputMaybe<String_Comparison_Exp>;
|
|
2535
|
-
name?: InputMaybe<String_Comparison_Exp>;
|
|
2536
|
-
project_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
2537
|
-
user_group_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
2538
|
-
user_group_members?: InputMaybe<User_Group_Members_Bool_Exp>;
|
|
2539
|
-
};
|
|
2540
|
-
/** order by max() on columns of table "user_groups" */
|
|
2541
|
-
type User_Groups_Max_Order_By = {
|
|
2542
|
-
created_at?: InputMaybe<Order_By>;
|
|
2543
|
-
description?: InputMaybe<Order_By>;
|
|
2544
|
-
name?: InputMaybe<Order_By>;
|
|
2545
|
-
project_id?: InputMaybe<Order_By>;
|
|
2546
|
-
user_group_id?: InputMaybe<Order_By>;
|
|
2547
|
-
};
|
|
2548
|
-
/** order by min() on columns of table "user_groups" */
|
|
2549
|
-
type User_Groups_Min_Order_By = {
|
|
2550
|
-
created_at?: InputMaybe<Order_By>;
|
|
2551
|
-
description?: InputMaybe<Order_By>;
|
|
2552
|
-
name?: InputMaybe<Order_By>;
|
|
2553
|
-
project_id?: InputMaybe<Order_By>;
|
|
2554
|
-
user_group_id?: InputMaybe<Order_By>;
|
|
2555
|
-
};
|
|
2556
|
-
/** order by aggregate values of table "user_preferences" */
|
|
2557
|
-
type User_Preferences_Aggregate_Order_By = {
|
|
2558
|
-
count?: InputMaybe<Order_By>;
|
|
2559
|
-
max?: InputMaybe<User_Preferences_Max_Order_By>;
|
|
2560
|
-
min?: InputMaybe<User_Preferences_Min_Order_By>;
|
|
2561
|
-
};
|
|
2562
|
-
/** Boolean expression to filter rows from the table "user_preferences". All fields are combined with a logical 'AND'. */
|
|
2563
|
-
type User_Preferences_Bool_Exp = {
|
|
2564
|
-
_and?: InputMaybe<Array<User_Preferences_Bool_Exp>>;
|
|
2565
|
-
_not?: InputMaybe<User_Preferences_Bool_Exp>;
|
|
2566
|
-
_or?: InputMaybe<Array<User_Preferences_Bool_Exp>>;
|
|
2567
|
-
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
2568
|
-
custom_instructions?: InputMaybe<String_Comparison_Exp>;
|
|
2569
|
-
desktop_notification_preference?: InputMaybe<Notification_Preference_Enum_Enum_Comparison_Exp>;
|
|
2570
|
-
desktop_notification_preference_enum?: InputMaybe<Notification_Preference_Enum_Bool_Exp>;
|
|
2571
|
-
feature_flags?: InputMaybe<Jsonb_Comparison_Exp>;
|
|
2572
|
-
mobile_notification_preference?: InputMaybe<Notification_Preference_Enum_Enum_Comparison_Exp>;
|
|
2573
|
-
mobile_notification_preference_enum?: InputMaybe<Notification_Preference_Enum_Bool_Exp>;
|
|
2574
|
-
onboarding_popup_shown?: InputMaybe<Boolean_Comparison_Exp>;
|
|
2575
|
-
promptql_user?: InputMaybe<Promptql_Users_Bool_Exp>;
|
|
2576
|
-
promptql_user_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
2577
|
-
slack_notification_preference?: InputMaybe<Notification_Preference_Enum_Enum_Comparison_Exp>;
|
|
2578
|
-
slack_notification_preference_enum?: InputMaybe<Notification_Preference_Enum_Bool_Exp>;
|
|
2579
|
-
updated_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
2580
|
-
};
|
|
2581
|
-
/** order by max() on columns of table "user_preferences" */
|
|
2582
|
-
type User_Preferences_Max_Order_By = {
|
|
2583
|
-
created_at?: InputMaybe<Order_By>;
|
|
2584
|
-
custom_instructions?: InputMaybe<Order_By>;
|
|
2585
|
-
promptql_user_id?: InputMaybe<Order_By>;
|
|
2586
|
-
updated_at?: InputMaybe<Order_By>;
|
|
2587
|
-
};
|
|
2588
|
-
/** order by min() on columns of table "user_preferences" */
|
|
2589
|
-
type User_Preferences_Min_Order_By = {
|
|
2590
|
-
created_at?: InputMaybe<Order_By>;
|
|
2591
|
-
custom_instructions?: InputMaybe<Order_By>;
|
|
2592
|
-
promptql_user_id?: InputMaybe<Order_By>;
|
|
2593
|
-
updated_at?: InputMaybe<Order_By>;
|
|
2594
|
-
};
|
|
2595
|
-
/** Ordering options when selecting data from "user_preferences". */
|
|
2596
|
-
type User_Preferences_Order_By = {
|
|
2597
|
-
created_at?: InputMaybe<Order_By>;
|
|
2598
|
-
custom_instructions?: InputMaybe<Order_By>;
|
|
2599
|
-
desktop_notification_preference?: InputMaybe<Order_By>;
|
|
2600
|
-
desktop_notification_preference_enum?: InputMaybe<Notification_Preference_Enum_Order_By>;
|
|
2601
|
-
feature_flags?: InputMaybe<Order_By>;
|
|
2602
|
-
mobile_notification_preference?: InputMaybe<Order_By>;
|
|
2603
|
-
mobile_notification_preference_enum?: InputMaybe<Notification_Preference_Enum_Order_By>;
|
|
2604
|
-
onboarding_popup_shown?: InputMaybe<Order_By>;
|
|
2605
|
-
promptql_user?: InputMaybe<Promptql_Users_Order_By>;
|
|
2606
|
-
promptql_user_id?: InputMaybe<Order_By>;
|
|
2607
|
-
slack_notification_preference?: InputMaybe<Order_By>;
|
|
2608
|
-
slack_notification_preference_enum?: InputMaybe<Notification_Preference_Enum_Order_By>;
|
|
2609
|
-
updated_at?: InputMaybe<Order_By>;
|
|
2610
|
-
};
|
|
2611
|
-
/** Boolean expression to filter rows from the table "user_room_activity". All fields are combined with a logical 'AND'. */
|
|
2612
|
-
type User_Room_Activity_Bool_Exp = {
|
|
2613
|
-
_and?: InputMaybe<Array<User_Room_Activity_Bool_Exp>>;
|
|
2614
|
-
_not?: InputMaybe<User_Room_Activity_Bool_Exp>;
|
|
2615
|
-
_or?: InputMaybe<Array<User_Room_Activity_Bool_Exp>>;
|
|
2616
|
-
created_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
2617
|
-
last_seen_event_id?: InputMaybe<Bigint_Comparison_Exp>;
|
|
2618
|
-
promptql_user?: InputMaybe<Promptql_Users_Bool_Exp>;
|
|
2619
|
-
promptql_user_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
2620
|
-
room?: InputMaybe<Rooms_Bool_Exp>;
|
|
2621
|
-
room_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
2622
|
-
updated_at?: InputMaybe<Timestamptz_Comparison_Exp>;
|
|
2623
|
-
};
|
|
2624
|
-
/** Ordering options when selecting data from "user_room_activity". */
|
|
2625
|
-
type User_Room_Activity_Order_By = {
|
|
2626
|
-
created_at?: InputMaybe<Order_By>;
|
|
2627
|
-
last_seen_event_id?: InputMaybe<Order_By>;
|
|
2628
|
-
promptql_user?: InputMaybe<Promptql_Users_Order_By>;
|
|
2629
|
-
promptql_user_id?: InputMaybe<Order_By>;
|
|
2630
|
-
room?: InputMaybe<Rooms_Order_By>;
|
|
2631
|
-
room_id?: InputMaybe<Order_By>;
|
|
2632
|
-
updated_at?: InputMaybe<Order_By>;
|
|
2633
|
-
};
|
|
2634
|
-
/** order by aggregate values of table "user_slack_notification_preferences" */
|
|
2635
|
-
type User_Slack_Notification_Preferences_Aggregate_Order_By = {
|
|
2636
|
-
count?: InputMaybe<Order_By>;
|
|
2637
|
-
max?: InputMaybe<User_Slack_Notification_Preferences_Max_Order_By>;
|
|
2638
|
-
min?: InputMaybe<User_Slack_Notification_Preferences_Min_Order_By>;
|
|
2639
|
-
};
|
|
2640
|
-
/** Boolean expression to filter rows from the table "user_slack_notification_preferences". All fields are combined with a logical 'AND'. */
|
|
2641
|
-
type User_Slack_Notification_Preferences_Bool_Exp = {
|
|
2642
|
-
_and?: InputMaybe<Array<User_Slack_Notification_Preferences_Bool_Exp>>;
|
|
2643
|
-
_not?: InputMaybe<User_Slack_Notification_Preferences_Bool_Exp>;
|
|
2644
|
-
_or?: InputMaybe<Array<User_Slack_Notification_Preferences_Bool_Exp>>;
|
|
2645
|
-
notification_preference_enum?: InputMaybe<Notification_Preference_Enum_Bool_Exp>;
|
|
2646
|
-
preference?: InputMaybe<Notification_Preference_Enum_Enum_Comparison_Exp>;
|
|
2647
|
-
promptql_user?: InputMaybe<Promptql_Users_Bool_Exp>;
|
|
2648
|
-
promptql_user_id?: InputMaybe<Uuid_Comparison_Exp>;
|
|
2649
|
-
};
|
|
2650
|
-
/** order by max() on columns of table "user_slack_notification_preferences" */
|
|
2651
|
-
type User_Slack_Notification_Preferences_Max_Order_By = {
|
|
2652
|
-
promptql_user_id?: InputMaybe<Order_By>;
|
|
2653
|
-
};
|
|
2654
|
-
/** order by min() on columns of table "user_slack_notification_preferences" */
|
|
2655
|
-
type User_Slack_Notification_Preferences_Min_Order_By = {
|
|
2656
|
-
promptql_user_id?: InputMaybe<Order_By>;
|
|
2657
|
-
};
|
|
2658
|
-
/** Ordering options when selecting data from "user_slack_notification_preferences". */
|
|
2659
|
-
type User_Slack_Notification_Preferences_Order_By = {
|
|
2660
|
-
notification_preference_enum?: InputMaybe<Notification_Preference_Enum_Order_By>;
|
|
2661
|
-
preference?: InputMaybe<Order_By>;
|
|
2662
|
-
promptql_user?: InputMaybe<Promptql_Users_Order_By>;
|
|
2663
|
-
promptql_user_id?: InputMaybe<Order_By>;
|
|
2664
|
-
};
|
|
2665
|
-
/** Boolean expression to compare columns of type "uuid". All fields are combined with logical 'AND'. */
|
|
2666
|
-
type Uuid_Comparison_Exp = {
|
|
2667
|
-
_eq?: InputMaybe<Scalars['uuid']['input']>;
|
|
2668
|
-
_gt?: InputMaybe<Scalars['uuid']['input']>;
|
|
2669
|
-
_gte?: InputMaybe<Scalars['uuid']['input']>;
|
|
2670
|
-
_in?: InputMaybe<Array<Scalars['uuid']['input']>>;
|
|
2671
|
-
_is_null?: InputMaybe<Scalars['Boolean']['input']>;
|
|
2672
|
-
_lt?: InputMaybe<Scalars['uuid']['input']>;
|
|
2673
|
-
_lte?: InputMaybe<Scalars['uuid']['input']>;
|
|
2674
|
-
_neq?: InputMaybe<Scalars['uuid']['input']>;
|
|
2675
|
-
_nin?: InputMaybe<Array<Scalars['uuid']['input']>>;
|
|
2676
|
-
};
|
|
2677
|
-
type RoomFragment = {
|
|
2678
|
-
__typename?: 'rooms';
|
|
2679
|
-
room_id: string;
|
|
2680
|
-
name: string;
|
|
2681
|
-
description?: string | null;
|
|
2682
|
-
project_id: string;
|
|
2683
|
-
visibility: string;
|
|
2684
|
-
user_id: string;
|
|
2685
|
-
created_at: string;
|
|
2686
|
-
updated_at: string;
|
|
2687
|
-
};
|
|
2688
|
-
type ThreadFragment = {
|
|
2689
|
-
__typename?: 'threads_v2';
|
|
2690
|
-
thread_id: string;
|
|
2691
|
-
build_id?: string | null;
|
|
2692
|
-
title?: string | null;
|
|
2693
|
-
relevant_event_count?: number | null;
|
|
2694
|
-
visibility: Thread_Visibility_Enum_Enum;
|
|
2695
|
-
created_at: string;
|
|
2696
|
-
updated_at: string;
|
|
2697
|
-
user?: {
|
|
2698
|
-
__typename?: 'promptql_users';
|
|
2699
|
-
promptql_user_id: string;
|
|
2700
|
-
display_name: string;
|
|
2701
|
-
email: string;
|
|
2702
|
-
is_active: boolean;
|
|
2703
|
-
created_at: string;
|
|
2704
|
-
updated_at: string;
|
|
2705
|
-
} | null;
|
|
2706
|
-
};
|
|
2707
|
-
type ThreadEventFragment = {
|
|
2708
|
-
__typename?: 'thread_events';
|
|
2709
|
-
thread_event_id: string;
|
|
2710
|
-
event_data: any;
|
|
2711
|
-
created_at: string;
|
|
2712
|
-
user_id?: string | null;
|
|
2713
|
-
};
|
|
2714
|
-
type CancelAgentMessageMutationVariables = Exact<{
|
|
2715
|
-
threadId: Scalars['String']['input'];
|
|
2716
|
-
messageId: Scalars['String']['input'];
|
|
2717
|
-
}>;
|
|
2718
|
-
type CreateRoomMutationVariables = Exact<{
|
|
2719
|
-
name: Scalars['String']['input'];
|
|
2720
|
-
visibility?: InputMaybe<Scalars['String']['input']>;
|
|
2721
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
|
2722
|
-
}>;
|
|
2723
|
-
type SendThreadMessageMutationVariables = Exact<{
|
|
2724
|
-
message: Scalars['String']['input'];
|
|
2725
|
-
timezone: Scalars['String']['input'];
|
|
2726
|
-
threadId: Scalars['String']['input'];
|
|
2727
|
-
buildFqdn?: InputMaybe<Scalars['String']['input']>;
|
|
2728
|
-
uploads?: InputMaybe<Array<UserUploadInput> | UserUploadInput>;
|
|
2729
|
-
}>;
|
|
2730
|
-
type SendThreadMessageMutation = {
|
|
2731
|
-
__typename?: 'mutation_root';
|
|
2732
|
-
send_thread_message?: {
|
|
2733
|
-
__typename?: 'SendThreadEventOutput';
|
|
2734
|
-
thread_event_id: string;
|
|
2735
|
-
created_at: string;
|
|
2736
|
-
} | null;
|
|
2737
|
-
};
|
|
2738
|
-
type StartThreadMutationVariables = Exact<{
|
|
2739
|
-
message: Scalars['String']['input'];
|
|
2740
|
-
projectId: Scalars['String']['input'];
|
|
2741
|
-
timezone: Scalars['String']['input'];
|
|
2742
|
-
buildId?: InputMaybe<Scalars['String']['input']>;
|
|
2743
|
-
buildFqdn?: InputMaybe<Scalars['String']['input']>;
|
|
2744
|
-
roomId?: InputMaybe<Scalars['String']['input']>;
|
|
2745
|
-
uploads?: InputMaybe<Array<UserUploadInput> | UserUploadInput>;
|
|
2746
|
-
visibility?: InputMaybe<Scalars['String']['input']>;
|
|
2747
|
-
createdFrom?: InputMaybe<Scalars['String']['input']>;
|
|
2748
|
-
}>;
|
|
2749
|
-
type StartThreadMutation = {
|
|
2750
|
-
__typename?: 'mutation_root';
|
|
2751
|
-
start_thread?: {
|
|
2752
|
-
__typename?: 'StartThreadOutput';
|
|
2753
|
-
thread_id: string;
|
|
2754
|
-
title?: string | null;
|
|
2755
|
-
created_at: string;
|
|
2756
|
-
updated_at: string;
|
|
2757
|
-
thread_events: Array<{
|
|
2758
|
-
__typename?: 'ThreadEvent';
|
|
2759
|
-
created_at: string;
|
|
2760
|
-
thread_event_id: string;
|
|
2761
|
-
} | null>;
|
|
2762
|
-
} | null;
|
|
2763
|
-
};
|
|
2764
|
-
type GetRoomsQueryVariables = Exact<{
|
|
2765
|
-
where: Rooms_Bool_Exp;
|
|
2766
|
-
order_by?: InputMaybe<Array<Rooms_Order_By> | Rooms_Order_By>;
|
|
2767
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2768
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2769
|
-
}>;
|
|
2770
|
-
type GetThreadsQueryVariables = Exact<{
|
|
2771
|
-
where: Threads_V2_Bool_Exp;
|
|
2772
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2773
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2774
|
-
order_by?: InputMaybe<Array<Threads_V2_Order_By> | Threads_V2_Order_By>;
|
|
2775
|
-
}>;
|
|
2776
|
-
type SearchWikiPagesQueryVariables = Exact<{
|
|
2777
|
-
query: Scalars['String']['input'];
|
|
2778
|
-
offset?: InputMaybe<Scalars['Int']['input']>;
|
|
2779
|
-
limit?: InputMaybe<Scalars['Int']['input']>;
|
|
2780
|
-
}>;
|
|
2781
|
-
|
|
2782
|
-
export type { Bigint_Comparison_Exp as B, CreateRoomMutationVariables as C, EnrichTokenOutput as E, GetRoomsQueryVariables as G, Order_By as O, RoomFragment as R, StartThreadMutation as S, ThreadEventFragment as T, SendThreadMessageMutation as a, CancelAgentMessageMutationVariables as b, ThreadFragment as c, GetThreadsQueryVariables as d, SendThreadMessageMutationVariables as e, StartThreadMutationVariables as f, SearchWikiPagesQueryVariables as g };
|