@neutron.co.id/operasional-interfaces 1.0.1-beta.2

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.
@@ -0,0 +1,4754 @@
1
+ export type Maybe<T> = T | null;
2
+ export type InputMaybe<T> = Maybe<T>;
3
+ export type Exact<T extends {
4
+ [key: string]: unknown;
5
+ }> = {
6
+ [K in keyof T]: T[K];
7
+ };
8
+ export type MakeOptional<T, K extends keyof T> = Omit<T, K> & {
9
+ [SubKey in K]?: Maybe<T[SubKey]>;
10
+ };
11
+ export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {
12
+ [SubKey in K]: Maybe<T[SubKey]>;
13
+ };
14
+ /** All built-in and custom scalars, mapped to their actual values */
15
+ export type Scalars = {
16
+ ID: string;
17
+ String: string;
18
+ Boolean: boolean;
19
+ Int: number;
20
+ Float: number;
21
+ /** Any custom scalar type */
22
+ Any: any;
23
+ /** A date-time string at UTC, such as 2007-12-03T10:15:30Z, compliant with the `date-time` format outlined in section 5.6 of the RFC 3339 profile of the ISO 8601 standard for representation of dates and times using the Gregorian calendar. */
24
+ Date: string;
25
+ /** The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). */
26
+ Json: any;
27
+ /** A field whose value conforms with the standard mongodb object ID as described here: https://docs.mongodb.com/manual/reference/method/ObjectId/#ObjectId. Example: 5e5677d71bdc2ae76344968c */
28
+ ObjectId: string;
29
+ };
30
+ export type Application = {
31
+ /** Application abbreviation. */
32
+ abbr?: Maybe<Scalars['String']>;
33
+ /** Application code. */
34
+ code?: Maybe<Scalars['String']>;
35
+ /** Inversed relation from Application field of neo:kokpit:config model. */
36
+ configs?: Maybe<Array<Config>>;
37
+ /** When this application was created. */
38
+ createdAt?: Maybe<Scalars['Date']>;
39
+ /** Relation ID of Created By. */
40
+ createdBy?: Maybe<Scalars['ObjectId']>;
41
+ /** Who created this application. */
42
+ creator?: Maybe<User>;
43
+ /** When this application was deleted. */
44
+ deletedAt?: Maybe<Scalars['Date']>;
45
+ /** Relation ID of Deleted By. */
46
+ deletedBy?: Maybe<Scalars['ObjectId']>;
47
+ /** Who deleted this application. */
48
+ deleter?: Maybe<User>;
49
+ /** Application description, can be used for public info. */
50
+ description?: Maybe<Scalars['String']>;
51
+ /** Application detail. */
52
+ detail?: Maybe<Scalars['String']>;
53
+ /** Application */
54
+ display?: Maybe<Scalars['String']>;
55
+ /** Application */
56
+ flag?: Maybe<Scalars['String']>;
57
+ /** Inversed relation from Host field of neo:kokpit:config model. */
58
+ hostedConfigs?: Maybe<Array<Config>>;
59
+ /** Object ID. */
60
+ id?: Maybe<Scalars['ID']>;
61
+ /** Application key. */
62
+ key?: Maybe<Scalars['String']>;
63
+ /** Application logo. */
64
+ logo?: Maybe<Scalars['Json']>;
65
+ /** Application medium handle. */
66
+ medium?: Maybe<Scalars['String']>;
67
+ /** Application name. */
68
+ name?: Maybe<Scalars['String']>;
69
+ /** Organization of this application. */
70
+ organization?: Maybe<Organization>;
71
+ /** Relation ID of Organization. */
72
+ organizationId?: Maybe<Scalars['ObjectId']>;
73
+ /** When this application was restored. */
74
+ restoredAt?: Maybe<Scalars['Date']>;
75
+ /** Relation ID of Restored By. */
76
+ restoredBy?: Maybe<Scalars['ObjectId']>;
77
+ /** Who last restored this application. */
78
+ restorer?: Maybe<User>;
79
+ /** Application secret. */
80
+ secret?: Maybe<Scalars['String']>;
81
+ /** Inversed relation from Application field of neo:kokpit:service model. */
82
+ services?: Maybe<Array<Service>>;
83
+ /** Application short handle. */
84
+ short?: Maybe<Scalars['String']>;
85
+ /** Application stage. */
86
+ stage?: Maybe<Scalars['String']>;
87
+ /** Application status. */
88
+ status?: Maybe<Scalars['String']>;
89
+ /** When this application was last synced. */
90
+ syncedAt?: Maybe<Scalars['Date']>;
91
+ /** Application type. */
92
+ type?: Maybe<Scalars['String']>;
93
+ /** When this application was last updated. */
94
+ updatedAt?: Maybe<Scalars['Date']>;
95
+ /** Relation ID of Updated By. */
96
+ updatedBy?: Maybe<Scalars['ObjectId']>;
97
+ /** Who last updated this application. */
98
+ updater?: Maybe<User>;
99
+ };
100
+ export type ApplicationConfigsArgs = {
101
+ filter?: InputMaybe<Scalars['Json']>;
102
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
103
+ limit?: InputMaybe<Scalars['Int']>;
104
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
105
+ page?: InputMaybe<Scalars['Int']>;
106
+ search?: InputMaybe<Scalars['String']>;
107
+ sort?: InputMaybe<Scalars['Json']>;
108
+ };
109
+ export type ApplicationHostedConfigsArgs = {
110
+ filter?: InputMaybe<Scalars['Json']>;
111
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
112
+ limit?: InputMaybe<Scalars['Int']>;
113
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
114
+ page?: InputMaybe<Scalars['Int']>;
115
+ search?: InputMaybe<Scalars['String']>;
116
+ sort?: InputMaybe<Scalars['Json']>;
117
+ };
118
+ export type ApplicationServicesArgs = {
119
+ filter?: InputMaybe<Scalars['Json']>;
120
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
121
+ limit?: InputMaybe<Scalars['Int']>;
122
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
123
+ page?: InputMaybe<Scalars['Int']>;
124
+ search?: InputMaybe<Scalars['String']>;
125
+ sort?: InputMaybe<Scalars['Json']>;
126
+ };
127
+ /** neo:kokpit:application collection response. */
128
+ export type ApplicationCollectionResponse = {
129
+ /** Response info. */
130
+ info?: Maybe<Info>;
131
+ /** Collection of neo:kokpit:application items. */
132
+ items?: Maybe<Array<Application>>;
133
+ };
134
+ export type ApplicationInput = {
135
+ /** Application abbreviation. */
136
+ abbr?: InputMaybe<Scalars['String']>;
137
+ /** Application code. */
138
+ code?: InputMaybe<Scalars['String']>;
139
+ /** When this application was created. */
140
+ createdAt?: InputMaybe<Scalars['Date']>;
141
+ /** Relation ID of Created By. */
142
+ createdBy?: InputMaybe<Scalars['ObjectId']>;
143
+ /** When this application was deleted. */
144
+ deletedAt?: InputMaybe<Scalars['Date']>;
145
+ /** Relation ID of Deleted By. */
146
+ deletedBy?: InputMaybe<Scalars['ObjectId']>;
147
+ /** Application description, can be used for public info. */
148
+ description?: InputMaybe<Scalars['String']>;
149
+ /** Application detail. */
150
+ detail?: InputMaybe<Scalars['String']>;
151
+ /** Application */
152
+ display?: InputMaybe<Scalars['String']>;
153
+ /** Application */
154
+ flag?: InputMaybe<Scalars['String']>;
155
+ /** Application key. */
156
+ key?: InputMaybe<Scalars['String']>;
157
+ /** Application logo. */
158
+ logo?: InputMaybe<Scalars['Any']>;
159
+ /** Application medium handle. */
160
+ medium?: InputMaybe<Scalars['String']>;
161
+ /** Application name. */
162
+ name?: InputMaybe<Scalars['String']>;
163
+ /** Relation ID of Organization. */
164
+ organizationId?: InputMaybe<Scalars['ObjectId']>;
165
+ /** When this application was restored. */
166
+ restoredAt?: InputMaybe<Scalars['Date']>;
167
+ /** Relation ID of Restored By. */
168
+ restoredBy?: InputMaybe<Scalars['ObjectId']>;
169
+ /** Application secret. */
170
+ secret?: InputMaybe<Scalars['String']>;
171
+ /** Application short handle. */
172
+ short?: InputMaybe<Scalars['String']>;
173
+ /** Application stage. */
174
+ stage?: InputMaybe<Scalars['String']>;
175
+ /** Application status. */
176
+ status?: InputMaybe<Scalars['String']>;
177
+ /** When this application was last synced. */
178
+ syncedAt?: InputMaybe<Scalars['Date']>;
179
+ /** Application type. */
180
+ type?: InputMaybe<Scalars['String']>;
181
+ /** When this application was last updated. */
182
+ updatedAt?: InputMaybe<Scalars['Date']>;
183
+ /** Relation ID of Updated By. */
184
+ updatedBy?: InputMaybe<Scalars['ObjectId']>;
185
+ };
186
+ /** Single neo:kokpit:application response. */
187
+ export type ApplicationSingleResponse = {
188
+ /** Response info. */
189
+ info?: Maybe<Info>;
190
+ /** Single neo:kokpit:application item. */
191
+ item?: Maybe<Application>;
192
+ };
193
+ export type Area = {
194
+ /** Inversed relation from Wilayah field of neu:tempat:branch model. */
195
+ branches?: Maybe<Array<Branch>>;
196
+ /** Kode */
197
+ code?: Maybe<Scalars['String']>;
198
+ /** When this area was created. */
199
+ createdAt?: Maybe<Scalars['Date']>;
200
+ /** Relation ID of Created By. */
201
+ createdBy?: Maybe<Scalars['ObjectId']>;
202
+ /** Who created this area. */
203
+ creator?: Maybe<User>;
204
+ /** When this area was deleted. */
205
+ deletedAt?: Maybe<Scalars['Date']>;
206
+ /** Relation ID of Deleted By. */
207
+ deletedBy?: Maybe<Scalars['ObjectId']>;
208
+ /** Who deleted this area. */
209
+ deleter?: Maybe<User>;
210
+ /** Area */
211
+ display?: Maybe<Scalars['String']>;
212
+ /** Area */
213
+ flag?: Maybe<Scalars['String']>;
214
+ /** Object ID. */
215
+ id?: Maybe<Scalars['ID']>;
216
+ /** Nama */
217
+ name?: Maybe<Scalars['String']>;
218
+ /** When this area was restored. */
219
+ restoredAt?: Maybe<Scalars['Date']>;
220
+ /** Relation ID of Restored By. */
221
+ restoredBy?: Maybe<Scalars['ObjectId']>;
222
+ /** Who last restored this area. */
223
+ restorer?: Maybe<User>;
224
+ /** When this area was last synced. */
225
+ syncedAt?: Maybe<Scalars['Date']>;
226
+ /** When this area was last updated. */
227
+ updatedAt?: Maybe<Scalars['Date']>;
228
+ /** Relation ID of Updated By. */
229
+ updatedBy?: Maybe<Scalars['ObjectId']>;
230
+ /** Who last updated this area. */
231
+ updater?: Maybe<User>;
232
+ };
233
+ export type AreaBranchesArgs = {
234
+ filter?: InputMaybe<Scalars['Json']>;
235
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
236
+ limit?: InputMaybe<Scalars['Int']>;
237
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
238
+ page?: InputMaybe<Scalars['Int']>;
239
+ search?: InputMaybe<Scalars['String']>;
240
+ sort?: InputMaybe<Scalars['Json']>;
241
+ };
242
+ /** neu:tempat:area collection response. */
243
+ export type AreaCollectionResponse = {
244
+ /** Response info. */
245
+ info?: Maybe<Info>;
246
+ /** Collection of neu:tempat:area items. */
247
+ items?: Maybe<Array<Area>>;
248
+ };
249
+ export type AreaInput = {
250
+ /** Kode */
251
+ code?: InputMaybe<Scalars['String']>;
252
+ /** When this area was created. */
253
+ createdAt?: InputMaybe<Scalars['Date']>;
254
+ /** Relation ID of Created By. */
255
+ createdBy?: InputMaybe<Scalars['ObjectId']>;
256
+ /** When this area was deleted. */
257
+ deletedAt?: InputMaybe<Scalars['Date']>;
258
+ /** Relation ID of Deleted By. */
259
+ deletedBy?: InputMaybe<Scalars['ObjectId']>;
260
+ /** Area */
261
+ display?: InputMaybe<Scalars['String']>;
262
+ /** Area */
263
+ flag?: InputMaybe<Scalars['String']>;
264
+ /** Nama */
265
+ name?: InputMaybe<Scalars['String']>;
266
+ /** When this area was restored. */
267
+ restoredAt?: InputMaybe<Scalars['Date']>;
268
+ /** Relation ID of Restored By. */
269
+ restoredBy?: InputMaybe<Scalars['ObjectId']>;
270
+ /** When this area was last synced. */
271
+ syncedAt?: InputMaybe<Scalars['Date']>;
272
+ /** When this area was last updated. */
273
+ updatedAt?: InputMaybe<Scalars['Date']>;
274
+ /** Relation ID of Updated By. */
275
+ updatedBy?: InputMaybe<Scalars['ObjectId']>;
276
+ };
277
+ /** Single neu:tempat:area response. */
278
+ export type AreaSingleResponse = {
279
+ /** Response info. */
280
+ info?: Maybe<Info>;
281
+ /** Single neu:tempat:area item. */
282
+ item?: Maybe<Area>;
283
+ };
284
+ export type Branch = {
285
+ /** Wilayah cabang. */
286
+ area?: Maybe<Area>;
287
+ /** Relation ID of Wilayah. */
288
+ areaId?: Maybe<Scalars['ObjectId']>;
289
+ /** Merek cabang. */
290
+ brand?: Maybe<Brand>;
291
+ /** Relation ID of Merek. */
292
+ brandId?: Maybe<Scalars['ObjectId']>;
293
+ /** Inversed relation from Cabang field of neu:tempat:building model. */
294
+ buildings?: Maybe<Array<Building>>;
295
+ /** Asal kota/kabupaten cabang. */
296
+ city?: Maybe<City>;
297
+ /** Relation ID of Kota/Kabupaten. */
298
+ cityId?: Maybe<Scalars['ObjectId']>;
299
+ /** Kode cabang. */
300
+ code?: Maybe<Scalars['String']>;
301
+ /** Gambar cabang. */
302
+ cover?: Maybe<Scalars['Json']>;
303
+ /** When this cabang was created. */
304
+ createdAt?: Maybe<Scalars['Date']>;
305
+ /** Relation ID of Created By. */
306
+ createdBy?: Maybe<Scalars['ObjectId']>;
307
+ /** Who created this cabang. */
308
+ creator?: Maybe<User>;
309
+ /** When this cabang was deleted. */
310
+ deletedAt?: Maybe<Scalars['Date']>;
311
+ /** Relation ID of Deleted By. */
312
+ deletedBy?: Maybe<Scalars['ObjectId']>;
313
+ /** Who deleted this cabang. */
314
+ deleter?: Maybe<User>;
315
+ /** Deskripsi cabang. */
316
+ description?: Maybe<Scalars['String']>;
317
+ /** Cabang */
318
+ display?: Maybe<Scalars['String']>;
319
+ /** Cabang */
320
+ flag?: Maybe<Scalars['String']>;
321
+ /** Object ID. */
322
+ id?: Maybe<Scalars['ID']>;
323
+ /** Lokasi cabang. */
324
+ location?: Maybe<Scalars['Json']>;
325
+ /** Nama cabang. */
326
+ name?: Maybe<Scalars['String']>;
327
+ /** Kode sandi cabang. */
328
+ passcode?: Maybe<Scalars['String']>;
329
+ /** Inversed relation from Cabang Penempatan field of neu:personalia:staff model. */
330
+ placedStaffs?: Maybe<Array<Staff>>;
331
+ /** Asal provinsi cabang. */
332
+ province?: Maybe<Province>;
333
+ /** Relation ID of Provinsi. */
334
+ provinceId?: Maybe<Scalars['ObjectId']>;
335
+ /** When this cabang was restored. */
336
+ restoredAt?: Maybe<Scalars['Date']>;
337
+ /** Relation ID of Restored By. */
338
+ restoredBy?: Maybe<Scalars['ObjectId']>;
339
+ /** Who last restored this cabang. */
340
+ restorer?: Maybe<User>;
341
+ /** Inversed relation from Cabang field of neu:tempat:room model. */
342
+ rooms?: Maybe<Array<Room>>;
343
+ /** Inversed relation from Cabang Utama field of neu:personalia:staff model. */
344
+ staffs?: Maybe<Array<Staff>>;
345
+ /** Ringkasan cabang. */
346
+ summary?: Maybe<Scalars['String']>;
347
+ /** When this cabang was last synced. */
348
+ syncedAt?: Maybe<Scalars['Date']>;
349
+ /** When this cabang was last updated. */
350
+ updatedAt?: Maybe<Scalars['Date']>;
351
+ /** Relation ID of Updated By. */
352
+ updatedBy?: Maybe<Scalars['ObjectId']>;
353
+ /** Who last updated this cabang. */
354
+ updater?: Maybe<User>;
355
+ };
356
+ export type BranchBuildingsArgs = {
357
+ filter?: InputMaybe<Scalars['Json']>;
358
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
359
+ limit?: InputMaybe<Scalars['Int']>;
360
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
361
+ page?: InputMaybe<Scalars['Int']>;
362
+ search?: InputMaybe<Scalars['String']>;
363
+ sort?: InputMaybe<Scalars['Json']>;
364
+ };
365
+ export type BranchPlacedStaffsArgs = {
366
+ filter?: InputMaybe<Scalars['Json']>;
367
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
368
+ limit?: InputMaybe<Scalars['Int']>;
369
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
370
+ page?: InputMaybe<Scalars['Int']>;
371
+ search?: InputMaybe<Scalars['String']>;
372
+ sort?: InputMaybe<Scalars['Json']>;
373
+ };
374
+ export type BranchRoomsArgs = {
375
+ filter?: InputMaybe<Scalars['Json']>;
376
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
377
+ limit?: InputMaybe<Scalars['Int']>;
378
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
379
+ page?: InputMaybe<Scalars['Int']>;
380
+ search?: InputMaybe<Scalars['String']>;
381
+ sort?: InputMaybe<Scalars['Json']>;
382
+ };
383
+ export type BranchStaffsArgs = {
384
+ filter?: InputMaybe<Scalars['Json']>;
385
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
386
+ limit?: InputMaybe<Scalars['Int']>;
387
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
388
+ page?: InputMaybe<Scalars['Int']>;
389
+ search?: InputMaybe<Scalars['String']>;
390
+ sort?: InputMaybe<Scalars['Json']>;
391
+ };
392
+ /** neu:tempat:branch collection response. */
393
+ export type BranchCollectionResponse = {
394
+ /** Response info. */
395
+ info?: Maybe<Info>;
396
+ /** Collection of neu:tempat:branch items. */
397
+ items?: Maybe<Array<Branch>>;
398
+ };
399
+ export type BranchInput = {
400
+ /** Relation ID of Wilayah. */
401
+ areaId?: InputMaybe<Scalars['ObjectId']>;
402
+ /** Relation ID of Merek. */
403
+ brandId?: InputMaybe<Scalars['ObjectId']>;
404
+ /** Relation ID of Kota/Kabupaten. */
405
+ cityId?: InputMaybe<Scalars['ObjectId']>;
406
+ /** Kode cabang. */
407
+ code?: InputMaybe<Scalars['String']>;
408
+ /** Gambar cabang. */
409
+ cover?: InputMaybe<Scalars['Any']>;
410
+ /** When this cabang was created. */
411
+ createdAt?: InputMaybe<Scalars['Date']>;
412
+ /** Relation ID of Created By. */
413
+ createdBy?: InputMaybe<Scalars['ObjectId']>;
414
+ /** When this cabang was deleted. */
415
+ deletedAt?: InputMaybe<Scalars['Date']>;
416
+ /** Relation ID of Deleted By. */
417
+ deletedBy?: InputMaybe<Scalars['ObjectId']>;
418
+ /** Deskripsi cabang. */
419
+ description?: InputMaybe<Scalars['String']>;
420
+ /** Cabang */
421
+ display?: InputMaybe<Scalars['String']>;
422
+ /** Cabang */
423
+ flag?: InputMaybe<Scalars['String']>;
424
+ /** Lokasi cabang. */
425
+ location?: InputMaybe<Scalars['Any']>;
426
+ /** Nama cabang. */
427
+ name?: InputMaybe<Scalars['String']>;
428
+ /** Kode sandi cabang. */
429
+ passcode?: InputMaybe<Scalars['String']>;
430
+ /** Relation ID of Provinsi. */
431
+ provinceId?: InputMaybe<Scalars['ObjectId']>;
432
+ /** When this cabang was restored. */
433
+ restoredAt?: InputMaybe<Scalars['Date']>;
434
+ /** Relation ID of Restored By. */
435
+ restoredBy?: InputMaybe<Scalars['ObjectId']>;
436
+ /** Ringkasan cabang. */
437
+ summary?: InputMaybe<Scalars['String']>;
438
+ /** When this cabang was last synced. */
439
+ syncedAt?: InputMaybe<Scalars['Date']>;
440
+ /** When this cabang was last updated. */
441
+ updatedAt?: InputMaybe<Scalars['Date']>;
442
+ /** Relation ID of Updated By. */
443
+ updatedBy?: InputMaybe<Scalars['ObjectId']>;
444
+ };
445
+ /** Single neu:tempat:branch response. */
446
+ export type BranchSingleResponse = {
447
+ /** Response info. */
448
+ info?: Maybe<Info>;
449
+ /** Single neu:tempat:branch item. */
450
+ item?: Maybe<Branch>;
451
+ };
452
+ export type Brand = {
453
+ /** Inversed relation from Merek field of neu:tempat:branch model. */
454
+ branches?: Maybe<Array<Branch>>;
455
+ /** Kode */
456
+ code?: Maybe<Scalars['String']>;
457
+ /** When this merek was created. */
458
+ createdAt?: Maybe<Scalars['Date']>;
459
+ /** Relation ID of Created By. */
460
+ createdBy?: Maybe<Scalars['ObjectId']>;
461
+ /** Who created this merek. */
462
+ creator?: Maybe<User>;
463
+ /** When this merek was deleted. */
464
+ deletedAt?: Maybe<Scalars['Date']>;
465
+ /** Relation ID of Deleted By. */
466
+ deletedBy?: Maybe<Scalars['ObjectId']>;
467
+ /** Who deleted this merek. */
468
+ deleter?: Maybe<User>;
469
+ /** Merek */
470
+ display?: Maybe<Scalars['String']>;
471
+ /** Merek */
472
+ flag?: Maybe<Scalars['String']>;
473
+ /** Object ID. */
474
+ id?: Maybe<Scalars['ID']>;
475
+ /** Nama */
476
+ name?: Maybe<Scalars['String']>;
477
+ /** When this merek was restored. */
478
+ restoredAt?: Maybe<Scalars['Date']>;
479
+ /** Relation ID of Restored By. */
480
+ restoredBy?: Maybe<Scalars['ObjectId']>;
481
+ /** Who last restored this merek. */
482
+ restorer?: Maybe<User>;
483
+ /** When this merek was last synced. */
484
+ syncedAt?: Maybe<Scalars['Date']>;
485
+ /** When this merek was last updated. */
486
+ updatedAt?: Maybe<Scalars['Date']>;
487
+ /** Relation ID of Updated By. */
488
+ updatedBy?: Maybe<Scalars['ObjectId']>;
489
+ /** Who last updated this merek. */
490
+ updater?: Maybe<User>;
491
+ };
492
+ export type BrandBranchesArgs = {
493
+ filter?: InputMaybe<Scalars['Json']>;
494
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
495
+ limit?: InputMaybe<Scalars['Int']>;
496
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
497
+ page?: InputMaybe<Scalars['Int']>;
498
+ search?: InputMaybe<Scalars['String']>;
499
+ sort?: InputMaybe<Scalars['Json']>;
500
+ };
501
+ /** neu:tempat:brand collection response. */
502
+ export type BrandCollectionResponse = {
503
+ /** Response info. */
504
+ info?: Maybe<Info>;
505
+ /** Collection of neu:tempat:brand items. */
506
+ items?: Maybe<Array<Brand>>;
507
+ };
508
+ export type BrandInput = {
509
+ /** Kode */
510
+ code?: InputMaybe<Scalars['String']>;
511
+ /** When this merek was created. */
512
+ createdAt?: InputMaybe<Scalars['Date']>;
513
+ /** Relation ID of Created By. */
514
+ createdBy?: InputMaybe<Scalars['ObjectId']>;
515
+ /** When this merek was deleted. */
516
+ deletedAt?: InputMaybe<Scalars['Date']>;
517
+ /** Relation ID of Deleted By. */
518
+ deletedBy?: InputMaybe<Scalars['ObjectId']>;
519
+ /** Merek */
520
+ display?: InputMaybe<Scalars['String']>;
521
+ /** Merek */
522
+ flag?: InputMaybe<Scalars['String']>;
523
+ /** Nama */
524
+ name?: InputMaybe<Scalars['String']>;
525
+ /** When this merek was restored. */
526
+ restoredAt?: InputMaybe<Scalars['Date']>;
527
+ /** Relation ID of Restored By. */
528
+ restoredBy?: InputMaybe<Scalars['ObjectId']>;
529
+ /** When this merek was last synced. */
530
+ syncedAt?: InputMaybe<Scalars['Date']>;
531
+ /** When this merek was last updated. */
532
+ updatedAt?: InputMaybe<Scalars['Date']>;
533
+ /** Relation ID of Updated By. */
534
+ updatedBy?: InputMaybe<Scalars['ObjectId']>;
535
+ };
536
+ /** Single neu:tempat:brand response. */
537
+ export type BrandSingleResponse = {
538
+ /** Response info. */
539
+ info?: Maybe<Info>;
540
+ /** Single neu:tempat:brand item. */
541
+ item?: Maybe<Brand>;
542
+ };
543
+ export type Building = {
544
+ /** Relation IDs of Cabang. */
545
+ branchIds?: Maybe<Array<Scalars['ObjectId']>>;
546
+ /** Cabang yang menggunakan ruangan. */
547
+ branches?: Maybe<Array<Branch>>;
548
+ /** Inversed relation from Bangunan field of neu:tempat:checkIn model. */
549
+ checkIns?: Maybe<Array<CheckIn>>;
550
+ /** Kode bangunan. */
551
+ code?: Maybe<Scalars['String']>;
552
+ /** When this bangunan was created. */
553
+ createdAt?: Maybe<Scalars['Date']>;
554
+ /** Relation ID of Created By. */
555
+ createdBy?: Maybe<Scalars['ObjectId']>;
556
+ /** Who created this bangunan. */
557
+ creator?: Maybe<User>;
558
+ /** When this bangunan was deleted. */
559
+ deletedAt?: Maybe<Scalars['Date']>;
560
+ /** Relation ID of Deleted By. */
561
+ deletedBy?: Maybe<Scalars['ObjectId']>;
562
+ /** Who deleted this bangunan. */
563
+ deleter?: Maybe<User>;
564
+ /** Bangunan */
565
+ display?: Maybe<Scalars['String']>;
566
+ /** Bangunan */
567
+ flag?: Maybe<Scalars['String']>;
568
+ /** Object ID. */
569
+ id?: Maybe<Scalars['ID']>;
570
+ /** Key untuk QRCode. */
571
+ key?: Maybe<Scalars['String']>;
572
+ /** Lokasi bangunan. */
573
+ location?: Maybe<Scalars['Json']>;
574
+ /** Peta lokasi bangunan, menggunakan Google Maps. */
575
+ map?: Maybe<Scalars['String']>;
576
+ /** Nama bangunan. */
577
+ name?: Maybe<Scalars['String']>;
578
+ /** When this bangunan was restored. */
579
+ restoredAt?: Maybe<Scalars['Date']>;
580
+ /** Relation ID of Restored By. */
581
+ restoredBy?: Maybe<Scalars['ObjectId']>;
582
+ /** Who last restored this bangunan. */
583
+ restorer?: Maybe<User>;
584
+ /** When this bangunan was last synced. */
585
+ syncedAt?: Maybe<Scalars['Date']>;
586
+ /** When this bangunan was last updated. */
587
+ updatedAt?: Maybe<Scalars['Date']>;
588
+ /** Relation ID of Updated By. */
589
+ updatedBy?: Maybe<Scalars['ObjectId']>;
590
+ /** Who last updated this bangunan. */
591
+ updater?: Maybe<User>;
592
+ };
593
+ export type BuildingBranchesArgs = {
594
+ filter?: InputMaybe<Scalars['Json']>;
595
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
596
+ limit?: InputMaybe<Scalars['Int']>;
597
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
598
+ page?: InputMaybe<Scalars['Int']>;
599
+ search?: InputMaybe<Scalars['String']>;
600
+ sort?: InputMaybe<Scalars['Json']>;
601
+ };
602
+ export type BuildingCheckInsArgs = {
603
+ filter?: InputMaybe<Scalars['Json']>;
604
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
605
+ limit?: InputMaybe<Scalars['Int']>;
606
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
607
+ page?: InputMaybe<Scalars['Int']>;
608
+ search?: InputMaybe<Scalars['String']>;
609
+ sort?: InputMaybe<Scalars['Json']>;
610
+ };
611
+ /** neu:tempat:building collection response. */
612
+ export type BuildingCollectionResponse = {
613
+ /** Response info. */
614
+ info?: Maybe<Info>;
615
+ /** Collection of neu:tempat:building items. */
616
+ items?: Maybe<Array<Building>>;
617
+ };
618
+ export type BuildingInput = {
619
+ /** Relation IDs of Cabang. */
620
+ branchIds?: InputMaybe<Array<Scalars['ID']>>;
621
+ /** Kode bangunan. */
622
+ code?: InputMaybe<Scalars['String']>;
623
+ /** When this bangunan was created. */
624
+ createdAt?: InputMaybe<Scalars['Date']>;
625
+ /** Relation ID of Created By. */
626
+ createdBy?: InputMaybe<Scalars['ObjectId']>;
627
+ /** When this bangunan was deleted. */
628
+ deletedAt?: InputMaybe<Scalars['Date']>;
629
+ /** Relation ID of Deleted By. */
630
+ deletedBy?: InputMaybe<Scalars['ObjectId']>;
631
+ /** Bangunan */
632
+ display?: InputMaybe<Scalars['String']>;
633
+ /** Bangunan */
634
+ flag?: InputMaybe<Scalars['String']>;
635
+ /** Key untuk QRCode. */
636
+ key?: InputMaybe<Scalars['String']>;
637
+ /** Lokasi bangunan. */
638
+ location?: InputMaybe<Scalars['Any']>;
639
+ /** Peta lokasi bangunan, menggunakan Google Maps. */
640
+ map?: InputMaybe<Scalars['String']>;
641
+ /** Nama bangunan. */
642
+ name?: InputMaybe<Scalars['String']>;
643
+ /** When this bangunan was restored. */
644
+ restoredAt?: InputMaybe<Scalars['Date']>;
645
+ /** Relation ID of Restored By. */
646
+ restoredBy?: InputMaybe<Scalars['ObjectId']>;
647
+ /** When this bangunan was last synced. */
648
+ syncedAt?: InputMaybe<Scalars['Date']>;
649
+ /** When this bangunan was last updated. */
650
+ updatedAt?: InputMaybe<Scalars['Date']>;
651
+ /** Relation ID of Updated By. */
652
+ updatedBy?: InputMaybe<Scalars['ObjectId']>;
653
+ };
654
+ /** Single neu:tempat:building response. */
655
+ export type BuildingSingleResponse = {
656
+ /** Response info. */
657
+ info?: Maybe<Info>;
658
+ /** Single neu:tempat:building item. */
659
+ item?: Maybe<Building>;
660
+ };
661
+ export type CheckIn = {
662
+ /** Bangunan tempat presensi. */
663
+ building?: Maybe<Building>;
664
+ /** Relation ID of Bangunan. */
665
+ buildingId?: Maybe<Scalars['ObjectId']>;
666
+ /** Kapan keluar masuk terjadi. */
667
+ checkInAt?: Maybe<Scalars['Date']>;
668
+ /** When this keluar masuk was created. */
669
+ createdAt?: Maybe<Scalars['Date']>;
670
+ /** Relation ID of Created By. */
671
+ createdBy?: Maybe<Scalars['ObjectId']>;
672
+ /** Who created this keluar masuk. */
673
+ creator?: Maybe<User>;
674
+ /** When this keluar masuk was deleted. */
675
+ deletedAt?: Maybe<Scalars['Date']>;
676
+ /** Relation ID of Deleted By. */
677
+ deletedBy?: Maybe<Scalars['ObjectId']>;
678
+ /** Who deleted this keluar masuk. */
679
+ deleter?: Maybe<User>;
680
+ /** Keluar Masuk */
681
+ display?: Maybe<Scalars['String']>;
682
+ /** Keluar Masuk */
683
+ flag?: Maybe<Scalars['String']>;
684
+ /** Object ID. */
685
+ id?: Maybe<Scalars['ID']>;
686
+ /** Informasi keluar masuk. */
687
+ informationCheckIn?: Maybe<Scalars['String']>;
688
+ /** Catatan tambahan terkait presensi ini. */
689
+ note?: Maybe<Scalars['String']>;
690
+ /** When this keluar masuk was restored. */
691
+ restoredAt?: Maybe<Scalars['Date']>;
692
+ /** Relation ID of Restored By. */
693
+ restoredBy?: Maybe<Scalars['ObjectId']>;
694
+ /** Who last restored this keluar masuk. */
695
+ restorer?: Maybe<User>;
696
+ /** Karyawan yang hadir. */
697
+ staff?: Maybe<Staff>;
698
+ /** Relation ID of Karyawan. */
699
+ staffId?: Maybe<Scalars['ObjectId']>;
700
+ /** Relation ID of Siswa. */
701
+ studentId?: Maybe<Scalars['ObjectId']>;
702
+ /** When this keluar masuk was last synced. */
703
+ syncedAt?: Maybe<Scalars['Date']>;
704
+ /** Relation ID of Pengajar. */
705
+ teacherId?: Maybe<Scalars['ObjectId']>;
706
+ /** Tipe keluar masuk. */
707
+ type?: Maybe<Scalars['String']>;
708
+ /** When this keluar masuk was last updated. */
709
+ updatedAt?: Maybe<Scalars['Date']>;
710
+ /** Relation ID of Updated By. */
711
+ updatedBy?: Maybe<Scalars['ObjectId']>;
712
+ /** Who last updated this keluar masuk. */
713
+ updater?: Maybe<User>;
714
+ /** Akun Identitas pengguna. */
715
+ user?: Maybe<User>;
716
+ /** Relation ID of Pengguna. */
717
+ userId?: Maybe<Scalars['ObjectId']>;
718
+ };
719
+ /** neu:tempat:checkIn collection response. */
720
+ export type CheckInCollectionResponse = {
721
+ /** Response info. */
722
+ info?: Maybe<Info>;
723
+ /** Collection of neu:tempat:checkIn items. */
724
+ items?: Maybe<Array<CheckIn>>;
725
+ };
726
+ export type CheckInInput = {
727
+ /** Relation ID of Bangunan. */
728
+ buildingId?: InputMaybe<Scalars['ObjectId']>;
729
+ /** Kapan keluar masuk terjadi. */
730
+ checkInAt?: InputMaybe<Scalars['Date']>;
731
+ /** When this keluar masuk was created. */
732
+ createdAt?: InputMaybe<Scalars['Date']>;
733
+ /** Relation ID of Created By. */
734
+ createdBy?: InputMaybe<Scalars['ObjectId']>;
735
+ /** When this keluar masuk was deleted. */
736
+ deletedAt?: InputMaybe<Scalars['Date']>;
737
+ /** Relation ID of Deleted By. */
738
+ deletedBy?: InputMaybe<Scalars['ObjectId']>;
739
+ /** Keluar Masuk */
740
+ display?: InputMaybe<Scalars['String']>;
741
+ /** Keluar Masuk */
742
+ flag?: InputMaybe<Scalars['String']>;
743
+ /** Informasi keluar masuk. */
744
+ informationCheckIn?: InputMaybe<Scalars['String']>;
745
+ /** Catatan tambahan terkait presensi ini. */
746
+ note?: InputMaybe<Scalars['String']>;
747
+ /** When this keluar masuk was restored. */
748
+ restoredAt?: InputMaybe<Scalars['Date']>;
749
+ /** Relation ID of Restored By. */
750
+ restoredBy?: InputMaybe<Scalars['ObjectId']>;
751
+ /** Relation ID of Karyawan. */
752
+ staffId?: InputMaybe<Scalars['ObjectId']>;
753
+ /** Relation ID of Siswa. */
754
+ studentId?: InputMaybe<Scalars['ObjectId']>;
755
+ /** When this keluar masuk was last synced. */
756
+ syncedAt?: InputMaybe<Scalars['Date']>;
757
+ /** Relation ID of Pengajar. */
758
+ teacherId?: InputMaybe<Scalars['ObjectId']>;
759
+ /** Tipe keluar masuk. */
760
+ type?: InputMaybe<Scalars['String']>;
761
+ /** When this keluar masuk was last updated. */
762
+ updatedAt?: InputMaybe<Scalars['Date']>;
763
+ /** Relation ID of Updated By. */
764
+ updatedBy?: InputMaybe<Scalars['ObjectId']>;
765
+ /** Relation ID of Pengguna. */
766
+ userId?: InputMaybe<Scalars['ObjectId']>;
767
+ };
768
+ /** Single neu:tempat:checkIn response. */
769
+ export type CheckInSingleResponse = {
770
+ /** Response info. */
771
+ info?: Maybe<Info>;
772
+ /** Single neu:tempat:checkIn item. */
773
+ item?: Maybe<CheckIn>;
774
+ };
775
+ export type City = {
776
+ /** Inversed relation from Kota/Kabupaten field of neu:tempat:branch model. */
777
+ branches?: Maybe<Array<Branch>>;
778
+ /** When this city was created. */
779
+ createdAt?: Maybe<Scalars['Date']>;
780
+ /** Relation ID of Created By. */
781
+ createdBy?: Maybe<Scalars['ObjectId']>;
782
+ /** Who created this city. */
783
+ creator?: Maybe<User>;
784
+ /** When this city was deleted. */
785
+ deletedAt?: Maybe<Scalars['Date']>;
786
+ /** Relation ID of Deleted By. */
787
+ deletedBy?: Maybe<Scalars['ObjectId']>;
788
+ /** Who deleted this city. */
789
+ deleter?: Maybe<User>;
790
+ /** City */
791
+ display?: Maybe<Scalars['String']>;
792
+ /** City */
793
+ flag?: Maybe<Scalars['String']>;
794
+ /** Object ID. */
795
+ id?: Maybe<Scalars['ID']>;
796
+ /** City name. */
797
+ name?: Maybe<Scalars['String']>;
798
+ /** Province of this city. */
799
+ province?: Maybe<Province>;
800
+ /** Relation ID of Province. */
801
+ provinceId?: Maybe<Scalars['ObjectId']>;
802
+ /** Region code of this city. */
803
+ regionCode?: Maybe<Scalars['String']>;
804
+ /** When this city was restored. */
805
+ restoredAt?: Maybe<Scalars['Date']>;
806
+ /** Relation ID of Restored By. */
807
+ restoredBy?: Maybe<Scalars['ObjectId']>;
808
+ /** Who last restored this city. */
809
+ restorer?: Maybe<User>;
810
+ /** When this city was last synced. */
811
+ syncedAt?: Maybe<Scalars['Date']>;
812
+ /** When this city was last updated. */
813
+ updatedAt?: Maybe<Scalars['Date']>;
814
+ /** Relation ID of Updated By. */
815
+ updatedBy?: Maybe<Scalars['ObjectId']>;
816
+ /** Who last updated this city. */
817
+ updater?: Maybe<User>;
818
+ };
819
+ export type CityBranchesArgs = {
820
+ filter?: InputMaybe<Scalars['Json']>;
821
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
822
+ limit?: InputMaybe<Scalars['Int']>;
823
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
824
+ page?: InputMaybe<Scalars['Int']>;
825
+ search?: InputMaybe<Scalars['String']>;
826
+ sort?: InputMaybe<Scalars['Json']>;
827
+ };
828
+ /** neo:tempat:city collection response. */
829
+ export type CityCollectionResponse = {
830
+ /** Response info. */
831
+ info?: Maybe<Info>;
832
+ /** Collection of neo:tempat:city items. */
833
+ items?: Maybe<Array<City>>;
834
+ };
835
+ export type CityInput = {
836
+ /** When this city was created. */
837
+ createdAt?: InputMaybe<Scalars['Date']>;
838
+ /** Relation ID of Created By. */
839
+ createdBy?: InputMaybe<Scalars['ObjectId']>;
840
+ /** When this city was deleted. */
841
+ deletedAt?: InputMaybe<Scalars['Date']>;
842
+ /** Relation ID of Deleted By. */
843
+ deletedBy?: InputMaybe<Scalars['ObjectId']>;
844
+ /** City */
845
+ display?: InputMaybe<Scalars['String']>;
846
+ /** City */
847
+ flag?: InputMaybe<Scalars['String']>;
848
+ /** City name. */
849
+ name?: InputMaybe<Scalars['String']>;
850
+ /** Relation ID of Province. */
851
+ provinceId?: InputMaybe<Scalars['ObjectId']>;
852
+ /** Region code of this city. */
853
+ regionCode?: InputMaybe<Scalars['String']>;
854
+ /** When this city was restored. */
855
+ restoredAt?: InputMaybe<Scalars['Date']>;
856
+ /** Relation ID of Restored By. */
857
+ restoredBy?: InputMaybe<Scalars['ObjectId']>;
858
+ /** When this city was last synced. */
859
+ syncedAt?: InputMaybe<Scalars['Date']>;
860
+ /** When this city was last updated. */
861
+ updatedAt?: InputMaybe<Scalars['Date']>;
862
+ /** Relation ID of Updated By. */
863
+ updatedBy?: InputMaybe<Scalars['ObjectId']>;
864
+ };
865
+ /** Single neo:tempat:city response. */
866
+ export type CitySingleResponse = {
867
+ /** Response info. */
868
+ info?: Maybe<Info>;
869
+ /** Single neo:tempat:city item. */
870
+ item?: Maybe<City>;
871
+ };
872
+ export type Config = {
873
+ /** Related application. */
874
+ application?: Maybe<Application>;
875
+ /** Relation ID of Application. */
876
+ applicationId?: Maybe<Scalars['ObjectId']>;
877
+ /** When this config was created. */
878
+ createdAt?: Maybe<Scalars['Date']>;
879
+ /** Relation ID of Created By. */
880
+ createdBy?: Maybe<Scalars['ObjectId']>;
881
+ /** Who created this config. */
882
+ creator?: Maybe<User>;
883
+ /** Data of this configuration. */
884
+ data?: Maybe<Scalars['Json']>;
885
+ /** When this config was deleted. */
886
+ deletedAt?: Maybe<Scalars['Date']>;
887
+ /** Relation ID of Deleted By. */
888
+ deletedBy?: Maybe<Scalars['ObjectId']>;
889
+ /** Who deleted this config. */
890
+ deleter?: Maybe<User>;
891
+ /** Config description. */
892
+ description?: Maybe<Scalars['String']>;
893
+ /** Config */
894
+ display?: Maybe<Scalars['String']>;
895
+ /** Config */
896
+ flag?: Maybe<Scalars['String']>;
897
+ /** Application that hosts this config. */
898
+ host?: Maybe<Application>;
899
+ /** Relation ID of Host. */
900
+ hostId?: Maybe<Scalars['ObjectId']>;
901
+ /** Object ID. */
902
+ id?: Maybe<Scalars['ID']>;
903
+ /** Config name. */
904
+ name?: Maybe<Scalars['String']>;
905
+ /** Related organization. */
906
+ organization?: Maybe<Organization>;
907
+ /** Relation ID of Organization. */
908
+ organizationId?: Maybe<Scalars['ObjectId']>;
909
+ /** When this config was restored. */
910
+ restoredAt?: Maybe<Scalars['Date']>;
911
+ /** Relation ID of Restored By. */
912
+ restoredBy?: Maybe<Scalars['ObjectId']>;
913
+ /** Who last restored this config. */
914
+ restorer?: Maybe<User>;
915
+ /** Config scope. */
916
+ scope?: Maybe<Scalars['String']>;
917
+ /** Related service. */
918
+ service?: Maybe<Service>;
919
+ /** Relation ID of Service. */
920
+ serviceId?: Maybe<Scalars['ObjectId']>;
921
+ /** Config status. */
922
+ status?: Maybe<Scalars['String']>;
923
+ /** When this config was last synced. */
924
+ syncedAt?: Maybe<Scalars['Date']>;
925
+ /** When this config was last updated. */
926
+ updatedAt?: Maybe<Scalars['Date']>;
927
+ /** Relation ID of Updated By. */
928
+ updatedBy?: Maybe<Scalars['ObjectId']>;
929
+ /** Who last updated this config. */
930
+ updater?: Maybe<User>;
931
+ };
932
+ /** neo:kokpit:config collection response. */
933
+ export type ConfigCollectionResponse = {
934
+ /** Response info. */
935
+ info?: Maybe<Info>;
936
+ /** Collection of neo:kokpit:config items. */
937
+ items?: Maybe<Array<Config>>;
938
+ };
939
+ export type ConfigInput = {
940
+ /** Relation ID of Application. */
941
+ applicationId?: InputMaybe<Scalars['ObjectId']>;
942
+ /** When this config was created. */
943
+ createdAt?: InputMaybe<Scalars['Date']>;
944
+ /** Relation ID of Created By. */
945
+ createdBy?: InputMaybe<Scalars['ObjectId']>;
946
+ /** Data of this configuration. */
947
+ data?: InputMaybe<Scalars['Any']>;
948
+ /** When this config was deleted. */
949
+ deletedAt?: InputMaybe<Scalars['Date']>;
950
+ /** Relation ID of Deleted By. */
951
+ deletedBy?: InputMaybe<Scalars['ObjectId']>;
952
+ /** Config description. */
953
+ description?: InputMaybe<Scalars['String']>;
954
+ /** Config */
955
+ display?: InputMaybe<Scalars['String']>;
956
+ /** Config */
957
+ flag?: InputMaybe<Scalars['String']>;
958
+ /** Relation ID of Host. */
959
+ hostId?: InputMaybe<Scalars['ObjectId']>;
960
+ /** Config name. */
961
+ name?: InputMaybe<Scalars['String']>;
962
+ /** Relation ID of Organization. */
963
+ organizationId?: InputMaybe<Scalars['ObjectId']>;
964
+ /** When this config was restored. */
965
+ restoredAt?: InputMaybe<Scalars['Date']>;
966
+ /** Relation ID of Restored By. */
967
+ restoredBy?: InputMaybe<Scalars['ObjectId']>;
968
+ /** Config scope. */
969
+ scope?: InputMaybe<Scalars['String']>;
970
+ /** Relation ID of Service. */
971
+ serviceId?: InputMaybe<Scalars['ObjectId']>;
972
+ /** Config status. */
973
+ status?: InputMaybe<Scalars['String']>;
974
+ /** When this config was last synced. */
975
+ syncedAt?: InputMaybe<Scalars['Date']>;
976
+ /** When this config was last updated. */
977
+ updatedAt?: InputMaybe<Scalars['Date']>;
978
+ /** Relation ID of Updated By. */
979
+ updatedBy?: InputMaybe<Scalars['ObjectId']>;
980
+ };
981
+ /** Single neo:kokpit:config response. */
982
+ export type ConfigSingleResponse = {
983
+ /** Response info. */
984
+ info?: Maybe<Info>;
985
+ /** Single neo:kokpit:config item. */
986
+ item?: Maybe<Config>;
987
+ };
988
+ /** Response of Count operation. */
989
+ export type CountResponse = {
990
+ /** Response info. */
991
+ info?: Maybe<Info>;
992
+ /** Total count. */
993
+ total?: Maybe<Scalars['Int']>;
994
+ };
995
+ export type Country = {
996
+ /** Country code. */
997
+ code?: Maybe<Scalars['String']>;
998
+ /** When this country was created. */
999
+ createdAt?: Maybe<Scalars['Date']>;
1000
+ /** Relation ID of Created By. */
1001
+ createdBy?: Maybe<Scalars['ObjectId']>;
1002
+ /** Who created this country. */
1003
+ creator?: Maybe<User>;
1004
+ /** When this country was deleted. */
1005
+ deletedAt?: Maybe<Scalars['Date']>;
1006
+ /** Relation ID of Deleted By. */
1007
+ deletedBy?: Maybe<Scalars['ObjectId']>;
1008
+ /** Who deleted this country. */
1009
+ deleter?: Maybe<User>;
1010
+ /** Country */
1011
+ display?: Maybe<Scalars['String']>;
1012
+ /** Country */
1013
+ flag?: Maybe<Scalars['String']>;
1014
+ /** Object ID. */
1015
+ id?: Maybe<Scalars['ID']>;
1016
+ /** Country name. */
1017
+ name?: Maybe<Scalars['String']>;
1018
+ /** Inversed relation from Country field of neo:tempat:province model. */
1019
+ provinces?: Maybe<Array<Province>>;
1020
+ /** Region code of this country. */
1021
+ regionCode?: Maybe<Scalars['String']>;
1022
+ /** When this country was restored. */
1023
+ restoredAt?: Maybe<Scalars['Date']>;
1024
+ /** Relation ID of Restored By. */
1025
+ restoredBy?: Maybe<Scalars['ObjectId']>;
1026
+ /** Who last restored this country. */
1027
+ restorer?: Maybe<User>;
1028
+ /** When this country was last synced. */
1029
+ syncedAt?: Maybe<Scalars['Date']>;
1030
+ /** When this country was last updated. */
1031
+ updatedAt?: Maybe<Scalars['Date']>;
1032
+ /** Relation ID of Updated By. */
1033
+ updatedBy?: Maybe<Scalars['ObjectId']>;
1034
+ /** Who last updated this country. */
1035
+ updater?: Maybe<User>;
1036
+ };
1037
+ export type CountryProvincesArgs = {
1038
+ filter?: InputMaybe<Scalars['Json']>;
1039
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
1040
+ limit?: InputMaybe<Scalars['Int']>;
1041
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
1042
+ page?: InputMaybe<Scalars['Int']>;
1043
+ search?: InputMaybe<Scalars['String']>;
1044
+ sort?: InputMaybe<Scalars['Json']>;
1045
+ };
1046
+ /** neo:tempat:country collection response. */
1047
+ export type CountryCollectionResponse = {
1048
+ /** Response info. */
1049
+ info?: Maybe<Info>;
1050
+ /** Collection of neo:tempat:country items. */
1051
+ items?: Maybe<Array<Country>>;
1052
+ };
1053
+ export type CountryInput = {
1054
+ /** Country code. */
1055
+ code?: InputMaybe<Scalars['String']>;
1056
+ /** When this country was created. */
1057
+ createdAt?: InputMaybe<Scalars['Date']>;
1058
+ /** Relation ID of Created By. */
1059
+ createdBy?: InputMaybe<Scalars['ObjectId']>;
1060
+ /** When this country was deleted. */
1061
+ deletedAt?: InputMaybe<Scalars['Date']>;
1062
+ /** Relation ID of Deleted By. */
1063
+ deletedBy?: InputMaybe<Scalars['ObjectId']>;
1064
+ /** Country */
1065
+ display?: InputMaybe<Scalars['String']>;
1066
+ /** Country */
1067
+ flag?: InputMaybe<Scalars['String']>;
1068
+ /** Country name. */
1069
+ name?: InputMaybe<Scalars['String']>;
1070
+ /** Region code of this country. */
1071
+ regionCode?: InputMaybe<Scalars['String']>;
1072
+ /** When this country was restored. */
1073
+ restoredAt?: InputMaybe<Scalars['Date']>;
1074
+ /** Relation ID of Restored By. */
1075
+ restoredBy?: InputMaybe<Scalars['ObjectId']>;
1076
+ /** When this country was last synced. */
1077
+ syncedAt?: InputMaybe<Scalars['Date']>;
1078
+ /** When this country was last updated. */
1079
+ updatedAt?: InputMaybe<Scalars['Date']>;
1080
+ /** Relation ID of Updated By. */
1081
+ updatedBy?: InputMaybe<Scalars['ObjectId']>;
1082
+ };
1083
+ /** Single neo:tempat:country response. */
1084
+ export type CountrySingleResponse = {
1085
+ /** Response info. */
1086
+ info?: Maybe<Info>;
1087
+ /** Single neo:tempat:country item. */
1088
+ item?: Maybe<Country>;
1089
+ };
1090
+ export type Error = {
1091
+ /** Error message. */
1092
+ message?: Maybe<Scalars['String']>;
1093
+ };
1094
+ /** Response of action execution. */
1095
+ export type ExecuteResponse = {
1096
+ /** Response info. */
1097
+ info?: Maybe<Info>;
1098
+ /** Action output. */
1099
+ output?: Maybe<Scalars['Json']>;
1100
+ };
1101
+ /** File object. */
1102
+ export type File = {
1103
+ /** File ID. */
1104
+ id?: Maybe<Scalars['ObjectId']>;
1105
+ /** @deprecated Use url instead. */
1106
+ link?: Maybe<Scalars['String']>;
1107
+ /** File name. */
1108
+ name?: Maybe<Scalars['String']>;
1109
+ /** File size. */
1110
+ size?: Maybe<Scalars['Int']>;
1111
+ /** File title. */
1112
+ title?: Maybe<Scalars['String']>;
1113
+ /** File mime type. */
1114
+ type?: Maybe<Scalars['String']>;
1115
+ /** File URL. */
1116
+ url?: Maybe<Scalars['String']>;
1117
+ /** File UUID, from storage provider. */
1118
+ uuid?: Maybe<Scalars['String']>;
1119
+ };
1120
+ /** File input. */
1121
+ export type FileInput = {
1122
+ /** File ID. */
1123
+ id: Scalars['ObjectId'];
1124
+ /** File name. */
1125
+ name: Scalars['String'];
1126
+ /** File size. */
1127
+ size: Scalars['Int'];
1128
+ /** File title. */
1129
+ title: Scalars['String'];
1130
+ /** File mime type. */
1131
+ type: Scalars['String'];
1132
+ /** File URL. */
1133
+ url: Scalars['String'];
1134
+ /** File UUID, from storage provider. */
1135
+ uuid: Scalars['String'];
1136
+ };
1137
+ /** Filter item input. */
1138
+ export type FilterItem = {
1139
+ /** Field handle. */
1140
+ handle: Scalars['String'];
1141
+ /** Filter operator. */
1142
+ operator: FilterOperator;
1143
+ /** Filter value. */
1144
+ value: Scalars['Any'];
1145
+ };
1146
+ /** Filter operator. */
1147
+ export type FilterOperator = 'and' | 'between' | 'contains' | 'dafter' | 'dbefore' | 'dbetween' | 'deq' | 'dnbetween' | 'empty' | 'eq' | 'gt' | 'gte' | 'in' | 'lt' | 'lte' | 'mongo' | 'nIn' | 'nbetween' | 'ncontains' | 'ne' | 'nempty' | 'nnull' | 'or' | 'regex';
1148
+ /** Additional Information of the query. */
1149
+ export type Info = {
1150
+ /** Response status code. */
1151
+ code?: Maybe<Scalars['Int']>;
1152
+ /** Response error message. */
1153
+ error?: Maybe<Scalars['String']>;
1154
+ /** Response message. */
1155
+ message?: Maybe<Scalars['String']>;
1156
+ /** Response additional messages. */
1157
+ messages?: Maybe<Scalars['Any']>;
1158
+ /** Additional meta information. */
1159
+ meta?: Maybe<Meta>;
1160
+ /** Response state. */
1161
+ state?: Maybe<Scalars['String']>;
1162
+ /** Response status. */
1163
+ status?: Maybe<Scalars['String']>;
1164
+ };
1165
+ /** Additional meta information. */
1166
+ export type Meta = {
1167
+ /** Current cursor. */
1168
+ cursor?: Maybe<Scalars['Int']>;
1169
+ /** If there is next page. */
1170
+ hasNext?: Maybe<Scalars['Boolean']>;
1171
+ /** If there is previous page. */
1172
+ hasPrev?: Maybe<Scalars['Boolean']>;
1173
+ /** Active limit per page. */
1174
+ limit?: Maybe<Scalars['Int']>;
1175
+ maxSyncedAt?: Maybe<Scalars['Date']>;
1176
+ /** Model name. */
1177
+ model?: Maybe<Scalars['String']>;
1178
+ /** Next page number. */
1179
+ next?: Maybe<Scalars['Int']>;
1180
+ /** Current page number. */
1181
+ page?: Maybe<Scalars['Int']>;
1182
+ /** Total count of pages. */
1183
+ pages?: Maybe<Scalars['Int']>;
1184
+ /** Previous page number. */
1185
+ prev?: Maybe<Scalars['Int']>;
1186
+ /** Implemented query. */
1187
+ query?: Maybe<Scalars['Json']>;
1188
+ /** Total count of available items, affected by filters. */
1189
+ total?: Maybe<Scalars['Int']>;
1190
+ /** Whether this operation performed as a dry run. */
1191
+ useDry?: Maybe<Scalars['Boolean']>;
1192
+ };
1193
+ export type Mutation = {
1194
+ /** Create single neo:kokpit:application item. */
1195
+ createOneApplication?: Maybe<ApplicationSingleResponse>;
1196
+ /** Create single neu:tempat:area item. */
1197
+ createOneArea?: Maybe<AreaSingleResponse>;
1198
+ /** Create single neu:tempat:branch item. */
1199
+ createOneBranch?: Maybe<BranchSingleResponse>;
1200
+ /** Create single neu:tempat:brand item. */
1201
+ createOneBrand?: Maybe<BrandSingleResponse>;
1202
+ /** Create single neu:tempat:building item. */
1203
+ createOneBuilding?: Maybe<BuildingSingleResponse>;
1204
+ /** Create single neu:tempat:checkIn item. */
1205
+ createOneCheckIn?: Maybe<CheckInSingleResponse>;
1206
+ /** Create single neo:tempat:city item. */
1207
+ createOneCity?: Maybe<CitySingleResponse>;
1208
+ /** Create single neo:kokpit:config item. */
1209
+ createOneConfig?: Maybe<ConfigSingleResponse>;
1210
+ /** Create single neo:tempat:country item. */
1211
+ createOneCountry?: Maybe<CountrySingleResponse>;
1212
+ /** Create single neo:tempat:organization item. */
1213
+ createOneOrganization?: Maybe<OrganizationSingleResponse>;
1214
+ /** Create single neo:tempat:province item. */
1215
+ createOneProvince?: Maybe<ProvinceSingleResponse>;
1216
+ /** Create single neu:tempat:region item. */
1217
+ createOneRegion?: Maybe<RegionSingleResponse>;
1218
+ /** Create single neo:identitas:role item. */
1219
+ createOneRole?: Maybe<RoleSingleResponse>;
1220
+ /** Create single neu:tempat:room item. */
1221
+ createOneRoom?: Maybe<RoomSingleResponse>;
1222
+ /** Create single neo:kokpit:service item. */
1223
+ createOneService?: Maybe<ServiceSingleResponse>;
1224
+ /** Create single neu:personalia:staff item. */
1225
+ createOneStaff?: Maybe<StaffSingleResponse>;
1226
+ /** Create single neo:tempat:unit item. */
1227
+ createOneUnit?: Maybe<UnitSingleResponse>;
1228
+ /** Create single neo:identitas:user item. */
1229
+ createOneUser?: Maybe<UserSingleResponse>;
1230
+ /** Delete single neo:kokpit:application item. */
1231
+ deleteOneApplication?: Maybe<ApplicationSingleResponse>;
1232
+ /** Delete single neu:tempat:area item. */
1233
+ deleteOneArea?: Maybe<AreaSingleResponse>;
1234
+ /** Delete single neu:tempat:branch item. */
1235
+ deleteOneBranch?: Maybe<BranchSingleResponse>;
1236
+ /** Delete single neu:tempat:brand item. */
1237
+ deleteOneBrand?: Maybe<BrandSingleResponse>;
1238
+ /** Delete single neu:tempat:building item. */
1239
+ deleteOneBuilding?: Maybe<BuildingSingleResponse>;
1240
+ /** Delete single neu:tempat:checkIn item. */
1241
+ deleteOneCheckIn?: Maybe<CheckInSingleResponse>;
1242
+ /** Delete single neo:tempat:city item. */
1243
+ deleteOneCity?: Maybe<CitySingleResponse>;
1244
+ /** Delete single neo:kokpit:config item. */
1245
+ deleteOneConfig?: Maybe<ConfigSingleResponse>;
1246
+ /** Delete single neo:tempat:country item. */
1247
+ deleteOneCountry?: Maybe<CountrySingleResponse>;
1248
+ /** Delete single neo:tempat:organization item. */
1249
+ deleteOneOrganization?: Maybe<OrganizationSingleResponse>;
1250
+ /** Delete single neo:tempat:province item. */
1251
+ deleteOneProvince?: Maybe<ProvinceSingleResponse>;
1252
+ /** Delete single neu:tempat:region item. */
1253
+ deleteOneRegion?: Maybe<RegionSingleResponse>;
1254
+ /** Delete single neo:identitas:role item. */
1255
+ deleteOneRole?: Maybe<RoleSingleResponse>;
1256
+ /** Delete single neu:tempat:room item. */
1257
+ deleteOneRoom?: Maybe<RoomSingleResponse>;
1258
+ /** Delete single neo:kokpit:service item. */
1259
+ deleteOneService?: Maybe<ServiceSingleResponse>;
1260
+ /** Delete single neu:personalia:staff item. */
1261
+ deleteOneStaff?: Maybe<StaffSingleResponse>;
1262
+ /** Delete single neo:tempat:unit item. */
1263
+ deleteOneUnit?: Maybe<UnitSingleResponse>;
1264
+ /** Delete single neo:identitas:user item. */
1265
+ deleteOneUser?: Maybe<UserSingleResponse>;
1266
+ /** Duplicate single neo:kokpit:application item. */
1267
+ duplicateOneApplication?: Maybe<ApplicationSingleResponse>;
1268
+ /** Duplicate single neu:tempat:area item. */
1269
+ duplicateOneArea?: Maybe<AreaSingleResponse>;
1270
+ /** Duplicate single neu:tempat:branch item. */
1271
+ duplicateOneBranch?: Maybe<BranchSingleResponse>;
1272
+ /** Duplicate single neu:tempat:brand item. */
1273
+ duplicateOneBrand?: Maybe<BrandSingleResponse>;
1274
+ /** Duplicate single neu:tempat:building item. */
1275
+ duplicateOneBuilding?: Maybe<BuildingSingleResponse>;
1276
+ /** Duplicate single neu:tempat:checkIn item. */
1277
+ duplicateOneCheckIn?: Maybe<CheckInSingleResponse>;
1278
+ /** Duplicate single neo:tempat:city item. */
1279
+ duplicateOneCity?: Maybe<CitySingleResponse>;
1280
+ /** Duplicate single neo:kokpit:config item. */
1281
+ duplicateOneConfig?: Maybe<ConfigSingleResponse>;
1282
+ /** Duplicate single neo:tempat:country item. */
1283
+ duplicateOneCountry?: Maybe<CountrySingleResponse>;
1284
+ /** Duplicate single neo:tempat:organization item. */
1285
+ duplicateOneOrganization?: Maybe<OrganizationSingleResponse>;
1286
+ /** Duplicate single neo:tempat:province item. */
1287
+ duplicateOneProvince?: Maybe<ProvinceSingleResponse>;
1288
+ /** Duplicate single neu:tempat:region item. */
1289
+ duplicateOneRegion?: Maybe<RegionSingleResponse>;
1290
+ /** Duplicate single neo:identitas:role item. */
1291
+ duplicateOneRole?: Maybe<RoleSingleResponse>;
1292
+ /** Duplicate single neu:tempat:room item. */
1293
+ duplicateOneRoom?: Maybe<RoomSingleResponse>;
1294
+ /** Duplicate single neo:kokpit:service item. */
1295
+ duplicateOneService?: Maybe<ServiceSingleResponse>;
1296
+ /** Duplicate single neu:personalia:staff item. */
1297
+ duplicateOneStaff?: Maybe<StaffSingleResponse>;
1298
+ /** Duplicate single neo:tempat:unit item. */
1299
+ duplicateOneUnit?: Maybe<UnitSingleResponse>;
1300
+ /** Duplicate single neo:identitas:user item. */
1301
+ duplicateOneUser?: Maybe<UserSingleResponse>;
1302
+ /** Execute a custom action on neo:kokpit:application. */
1303
+ executeApplication?: Maybe<ExecuteResponse>;
1304
+ /** Execute a custom action on neu:tempat:area. */
1305
+ executeArea?: Maybe<ExecuteResponse>;
1306
+ /** Execute a custom action on neu:tempat:branch. */
1307
+ executeBranch?: Maybe<ExecuteResponse>;
1308
+ /** Execute a custom action on neu:tempat:brand. */
1309
+ executeBrand?: Maybe<ExecuteResponse>;
1310
+ /** Execute a custom action on neu:tempat:building. */
1311
+ executeBuilding?: Maybe<ExecuteResponse>;
1312
+ /** Execute a custom action on neu:tempat:checkIn. */
1313
+ executeCheckIn?: Maybe<ExecuteResponse>;
1314
+ /** Execute a custom action on neo:tempat:city. */
1315
+ executeCity?: Maybe<ExecuteResponse>;
1316
+ /** Execute a custom action on neo:kokpit:config. */
1317
+ executeConfig?: Maybe<ExecuteResponse>;
1318
+ /** Execute a custom action on neo:tempat:country. */
1319
+ executeCountry?: Maybe<ExecuteResponse>;
1320
+ /** Execute a custom action on neo:tempat:organization. */
1321
+ executeOrganization?: Maybe<ExecuteResponse>;
1322
+ /** Execute a custom action on neo:tempat:province. */
1323
+ executeProvince?: Maybe<ExecuteResponse>;
1324
+ /** Execute a custom action on neu:tempat:region. */
1325
+ executeRegion?: Maybe<ExecuteResponse>;
1326
+ /** Execute a custom action on neo:identitas:role. */
1327
+ executeRole?: Maybe<ExecuteResponse>;
1328
+ /** Execute a custom action on neu:tempat:room. */
1329
+ executeRoom?: Maybe<ExecuteResponse>;
1330
+ /** Execute a custom action on neo:kokpit:service. */
1331
+ executeService?: Maybe<ExecuteResponse>;
1332
+ /** Execute a custom action on neu:personalia:staff. */
1333
+ executeStaff?: Maybe<ExecuteResponse>;
1334
+ /** Execute a custom action on neo:tempat:unit. */
1335
+ executeUnit?: Maybe<ExecuteResponse>;
1336
+ /** Execute a custom action on neo:identitas:user. */
1337
+ executeUser?: Maybe<ExecuteResponse>;
1338
+ ping?: Maybe<Pong>;
1339
+ /** Restore single neo:kokpit:application item. */
1340
+ restoreOneApplication?: Maybe<ApplicationSingleResponse>;
1341
+ /** Restore single neu:tempat:area item. */
1342
+ restoreOneArea?: Maybe<AreaSingleResponse>;
1343
+ /** Restore single neu:tempat:branch item. */
1344
+ restoreOneBranch?: Maybe<BranchSingleResponse>;
1345
+ /** Restore single neu:tempat:brand item. */
1346
+ restoreOneBrand?: Maybe<BrandSingleResponse>;
1347
+ /** Restore single neu:tempat:building item. */
1348
+ restoreOneBuilding?: Maybe<BuildingSingleResponse>;
1349
+ /** Restore single neu:tempat:checkIn item. */
1350
+ restoreOneCheckIn?: Maybe<CheckInSingleResponse>;
1351
+ /** Restore single neo:tempat:city item. */
1352
+ restoreOneCity?: Maybe<CitySingleResponse>;
1353
+ /** Restore single neo:kokpit:config item. */
1354
+ restoreOneConfig?: Maybe<ConfigSingleResponse>;
1355
+ /** Restore single neo:tempat:country item. */
1356
+ restoreOneCountry?: Maybe<CountrySingleResponse>;
1357
+ /** Restore single neo:tempat:organization item. */
1358
+ restoreOneOrganization?: Maybe<OrganizationSingleResponse>;
1359
+ /** Restore single neo:tempat:province item. */
1360
+ restoreOneProvince?: Maybe<ProvinceSingleResponse>;
1361
+ /** Restore single neu:tempat:region item. */
1362
+ restoreOneRegion?: Maybe<RegionSingleResponse>;
1363
+ /** Restore single neo:identitas:role item. */
1364
+ restoreOneRole?: Maybe<RoleSingleResponse>;
1365
+ /** Restore single neu:tempat:room item. */
1366
+ restoreOneRoom?: Maybe<RoomSingleResponse>;
1367
+ /** Restore single neo:kokpit:service item. */
1368
+ restoreOneService?: Maybe<ServiceSingleResponse>;
1369
+ /** Restore single neu:personalia:staff item. */
1370
+ restoreOneStaff?: Maybe<StaffSingleResponse>;
1371
+ /** Restore single neo:tempat:unit item. */
1372
+ restoreOneUnit?: Maybe<UnitSingleResponse>;
1373
+ /** Restore single neo:identitas:user item. */
1374
+ restoreOneUser?: Maybe<UserSingleResponse>;
1375
+ /** Sync many neo:kokpit:application items. */
1376
+ syncManyApplications?: Maybe<SyncManyResponse>;
1377
+ /** Sync many neu:tempat:area items. */
1378
+ syncManyAreas?: Maybe<SyncManyResponse>;
1379
+ /** Sync many neu:tempat:branch items. */
1380
+ syncManyBranches?: Maybe<SyncManyResponse>;
1381
+ /** Sync many neu:tempat:brand items. */
1382
+ syncManyBrands?: Maybe<SyncManyResponse>;
1383
+ /** Sync many neu:tempat:building items. */
1384
+ syncManyBuildings?: Maybe<SyncManyResponse>;
1385
+ /** Sync many neu:tempat:checkIn items. */
1386
+ syncManyCheckIns?: Maybe<SyncManyResponse>;
1387
+ /** Sync many neo:tempat:city items. */
1388
+ syncManyCities?: Maybe<SyncManyResponse>;
1389
+ /** Sync many neo:kokpit:config items. */
1390
+ syncManyConfigs?: Maybe<SyncManyResponse>;
1391
+ /** Sync many neo:tempat:country items. */
1392
+ syncManyCountries?: Maybe<SyncManyResponse>;
1393
+ /** Sync many neo:tempat:organization items. */
1394
+ syncManyOrganizations?: Maybe<SyncManyResponse>;
1395
+ /** Sync many neo:tempat:province items. */
1396
+ syncManyProvinces?: Maybe<SyncManyResponse>;
1397
+ /** Sync many neu:tempat:region items. */
1398
+ syncManyRegions?: Maybe<SyncManyResponse>;
1399
+ /** Sync many neo:identitas:role items. */
1400
+ syncManyRoles?: Maybe<SyncManyResponse>;
1401
+ /** Sync many neu:tempat:room items. */
1402
+ syncManyRooms?: Maybe<SyncManyResponse>;
1403
+ /** Sync many neo:kokpit:service items. */
1404
+ syncManyServices?: Maybe<SyncManyResponse>;
1405
+ /** Sync many neu:personalia:staff items. */
1406
+ syncManyStaffs?: Maybe<SyncManyResponse>;
1407
+ /** Sync many neo:tempat:unit items. */
1408
+ syncManyUnits?: Maybe<SyncManyResponse>;
1409
+ /** Sync many neo:identitas:user items. */
1410
+ syncManyUsers?: Maybe<SyncManyResponse>;
1411
+ /** Sync single neo:kokpit:application item. */
1412
+ syncOneApplication?: Maybe<ApplicationSingleResponse>;
1413
+ /** Sync single neu:tempat:area item. */
1414
+ syncOneArea?: Maybe<AreaSingleResponse>;
1415
+ /** Sync single neu:tempat:branch item. */
1416
+ syncOneBranch?: Maybe<BranchSingleResponse>;
1417
+ /** Sync single neu:tempat:brand item. */
1418
+ syncOneBrand?: Maybe<BrandSingleResponse>;
1419
+ /** Sync single neu:tempat:building item. */
1420
+ syncOneBuilding?: Maybe<BuildingSingleResponse>;
1421
+ /** Sync single neu:tempat:checkIn item. */
1422
+ syncOneCheckIn?: Maybe<CheckInSingleResponse>;
1423
+ /** Sync single neo:tempat:city item. */
1424
+ syncOneCity?: Maybe<CitySingleResponse>;
1425
+ /** Sync single neo:kokpit:config item. */
1426
+ syncOneConfig?: Maybe<ConfigSingleResponse>;
1427
+ /** Sync single neo:tempat:country item. */
1428
+ syncOneCountry?: Maybe<CountrySingleResponse>;
1429
+ /** Sync single neo:tempat:organization item. */
1430
+ syncOneOrganization?: Maybe<OrganizationSingleResponse>;
1431
+ /** Sync single neo:tempat:province item. */
1432
+ syncOneProvince?: Maybe<ProvinceSingleResponse>;
1433
+ /** Sync single neu:tempat:region item. */
1434
+ syncOneRegion?: Maybe<RegionSingleResponse>;
1435
+ /** Sync single neo:identitas:role item. */
1436
+ syncOneRole?: Maybe<RoleSingleResponse>;
1437
+ /** Sync single neu:tempat:room item. */
1438
+ syncOneRoom?: Maybe<RoomSingleResponse>;
1439
+ /** Sync single neo:kokpit:service item. */
1440
+ syncOneService?: Maybe<ServiceSingleResponse>;
1441
+ /** Sync single neu:personalia:staff item. */
1442
+ syncOneStaff?: Maybe<StaffSingleResponse>;
1443
+ /** Sync single neo:tempat:unit item. */
1444
+ syncOneUnit?: Maybe<UnitSingleResponse>;
1445
+ /** Sync single neo:identitas:user item. */
1446
+ syncOneUser?: Maybe<UserSingleResponse>;
1447
+ /** Update single neo:kokpit:application item. */
1448
+ updateOneApplication?: Maybe<ApplicationSingleResponse>;
1449
+ /** Update single neu:tempat:area item. */
1450
+ updateOneArea?: Maybe<AreaSingleResponse>;
1451
+ /** Update single neu:tempat:branch item. */
1452
+ updateOneBranch?: Maybe<BranchSingleResponse>;
1453
+ /** Update single neu:tempat:brand item. */
1454
+ updateOneBrand?: Maybe<BrandSingleResponse>;
1455
+ /** Update single neu:tempat:building item. */
1456
+ updateOneBuilding?: Maybe<BuildingSingleResponse>;
1457
+ /** Update single neu:tempat:checkIn item. */
1458
+ updateOneCheckIn?: Maybe<CheckInSingleResponse>;
1459
+ /** Update single neo:tempat:city item. */
1460
+ updateOneCity?: Maybe<CitySingleResponse>;
1461
+ /** Update single neo:kokpit:config item. */
1462
+ updateOneConfig?: Maybe<ConfigSingleResponse>;
1463
+ /** Update single neo:tempat:country item. */
1464
+ updateOneCountry?: Maybe<CountrySingleResponse>;
1465
+ /** Update single neo:tempat:organization item. */
1466
+ updateOneOrganization?: Maybe<OrganizationSingleResponse>;
1467
+ /** Update single neo:tempat:province item. */
1468
+ updateOneProvince?: Maybe<ProvinceSingleResponse>;
1469
+ /** Update single neu:tempat:region item. */
1470
+ updateOneRegion?: Maybe<RegionSingleResponse>;
1471
+ /** Update single neo:identitas:role item. */
1472
+ updateOneRole?: Maybe<RoleSingleResponse>;
1473
+ /** Update single neu:tempat:room item. */
1474
+ updateOneRoom?: Maybe<RoomSingleResponse>;
1475
+ /** Update single neo:kokpit:service item. */
1476
+ updateOneService?: Maybe<ServiceSingleResponse>;
1477
+ /** Update single neu:personalia:staff item. */
1478
+ updateOneStaff?: Maybe<StaffSingleResponse>;
1479
+ /** Update single neo:tempat:unit item. */
1480
+ updateOneUnit?: Maybe<UnitSingleResponse>;
1481
+ /** Update single neo:identitas:user item. */
1482
+ updateOneUser?: Maybe<UserSingleResponse>;
1483
+ };
1484
+ export type MutationCreateOneApplicationArgs = {
1485
+ data: ApplicationInput;
1486
+ logs?: InputMaybe<Array<Scalars['String']>>;
1487
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1488
+ };
1489
+ export type MutationCreateOneAreaArgs = {
1490
+ data: AreaInput;
1491
+ logs?: InputMaybe<Array<Scalars['String']>>;
1492
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1493
+ };
1494
+ export type MutationCreateOneBranchArgs = {
1495
+ data: BranchInput;
1496
+ logs?: InputMaybe<Array<Scalars['String']>>;
1497
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1498
+ };
1499
+ export type MutationCreateOneBrandArgs = {
1500
+ data: BrandInput;
1501
+ logs?: InputMaybe<Array<Scalars['String']>>;
1502
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1503
+ };
1504
+ export type MutationCreateOneBuildingArgs = {
1505
+ data: BuildingInput;
1506
+ logs?: InputMaybe<Array<Scalars['String']>>;
1507
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1508
+ };
1509
+ export type MutationCreateOneCheckInArgs = {
1510
+ data: CheckInInput;
1511
+ logs?: InputMaybe<Array<Scalars['String']>>;
1512
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1513
+ };
1514
+ export type MutationCreateOneCityArgs = {
1515
+ data: CityInput;
1516
+ logs?: InputMaybe<Array<Scalars['String']>>;
1517
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1518
+ };
1519
+ export type MutationCreateOneConfigArgs = {
1520
+ data: ConfigInput;
1521
+ logs?: InputMaybe<Array<Scalars['String']>>;
1522
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1523
+ };
1524
+ export type MutationCreateOneCountryArgs = {
1525
+ data: CountryInput;
1526
+ logs?: InputMaybe<Array<Scalars['String']>>;
1527
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1528
+ };
1529
+ export type MutationCreateOneOrganizationArgs = {
1530
+ data: OrganizationInput;
1531
+ logs?: InputMaybe<Array<Scalars['String']>>;
1532
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1533
+ };
1534
+ export type MutationCreateOneProvinceArgs = {
1535
+ data: ProvinceInput;
1536
+ logs?: InputMaybe<Array<Scalars['String']>>;
1537
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1538
+ };
1539
+ export type MutationCreateOneRegionArgs = {
1540
+ data: RegionInput;
1541
+ logs?: InputMaybe<Array<Scalars['String']>>;
1542
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1543
+ };
1544
+ export type MutationCreateOneRoleArgs = {
1545
+ data: RoleInput;
1546
+ logs?: InputMaybe<Array<Scalars['String']>>;
1547
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1548
+ };
1549
+ export type MutationCreateOneRoomArgs = {
1550
+ data: RoomInput;
1551
+ logs?: InputMaybe<Array<Scalars['String']>>;
1552
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1553
+ };
1554
+ export type MutationCreateOneServiceArgs = {
1555
+ data: ServiceInput;
1556
+ logs?: InputMaybe<Array<Scalars['String']>>;
1557
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1558
+ };
1559
+ export type MutationCreateOneStaffArgs = {
1560
+ data: StaffInput;
1561
+ logs?: InputMaybe<Array<Scalars['String']>>;
1562
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1563
+ };
1564
+ export type MutationCreateOneUnitArgs = {
1565
+ data: UnitInput;
1566
+ logs?: InputMaybe<Array<Scalars['String']>>;
1567
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1568
+ };
1569
+ export type MutationCreateOneUserArgs = {
1570
+ data: UserInput;
1571
+ logs?: InputMaybe<Array<Scalars['String']>>;
1572
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1573
+ };
1574
+ export type MutationDeleteOneApplicationArgs = {
1575
+ id: Scalars['ObjectId'];
1576
+ logs?: InputMaybe<Array<Scalars['String']>>;
1577
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1578
+ };
1579
+ export type MutationDeleteOneAreaArgs = {
1580
+ id: Scalars['ObjectId'];
1581
+ logs?: InputMaybe<Array<Scalars['String']>>;
1582
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1583
+ };
1584
+ export type MutationDeleteOneBranchArgs = {
1585
+ id: Scalars['ObjectId'];
1586
+ logs?: InputMaybe<Array<Scalars['String']>>;
1587
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1588
+ };
1589
+ export type MutationDeleteOneBrandArgs = {
1590
+ id: Scalars['ObjectId'];
1591
+ logs?: InputMaybe<Array<Scalars['String']>>;
1592
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1593
+ };
1594
+ export type MutationDeleteOneBuildingArgs = {
1595
+ id: Scalars['ObjectId'];
1596
+ logs?: InputMaybe<Array<Scalars['String']>>;
1597
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1598
+ };
1599
+ export type MutationDeleteOneCheckInArgs = {
1600
+ id: Scalars['ObjectId'];
1601
+ logs?: InputMaybe<Array<Scalars['String']>>;
1602
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1603
+ };
1604
+ export type MutationDeleteOneCityArgs = {
1605
+ id: Scalars['ObjectId'];
1606
+ logs?: InputMaybe<Array<Scalars['String']>>;
1607
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1608
+ };
1609
+ export type MutationDeleteOneConfigArgs = {
1610
+ id: Scalars['ObjectId'];
1611
+ logs?: InputMaybe<Array<Scalars['String']>>;
1612
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1613
+ };
1614
+ export type MutationDeleteOneCountryArgs = {
1615
+ id: Scalars['ObjectId'];
1616
+ logs?: InputMaybe<Array<Scalars['String']>>;
1617
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1618
+ };
1619
+ export type MutationDeleteOneOrganizationArgs = {
1620
+ id: Scalars['ObjectId'];
1621
+ logs?: InputMaybe<Array<Scalars['String']>>;
1622
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1623
+ };
1624
+ export type MutationDeleteOneProvinceArgs = {
1625
+ id: Scalars['ObjectId'];
1626
+ logs?: InputMaybe<Array<Scalars['String']>>;
1627
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1628
+ };
1629
+ export type MutationDeleteOneRegionArgs = {
1630
+ id: Scalars['ObjectId'];
1631
+ logs?: InputMaybe<Array<Scalars['String']>>;
1632
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1633
+ };
1634
+ export type MutationDeleteOneRoleArgs = {
1635
+ id: Scalars['ObjectId'];
1636
+ logs?: InputMaybe<Array<Scalars['String']>>;
1637
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1638
+ };
1639
+ export type MutationDeleteOneRoomArgs = {
1640
+ id: Scalars['ObjectId'];
1641
+ logs?: InputMaybe<Array<Scalars['String']>>;
1642
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1643
+ };
1644
+ export type MutationDeleteOneServiceArgs = {
1645
+ id: Scalars['ObjectId'];
1646
+ logs?: InputMaybe<Array<Scalars['String']>>;
1647
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1648
+ };
1649
+ export type MutationDeleteOneStaffArgs = {
1650
+ id: Scalars['ObjectId'];
1651
+ logs?: InputMaybe<Array<Scalars['String']>>;
1652
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1653
+ };
1654
+ export type MutationDeleteOneUnitArgs = {
1655
+ id: Scalars['ObjectId'];
1656
+ logs?: InputMaybe<Array<Scalars['String']>>;
1657
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1658
+ };
1659
+ export type MutationDeleteOneUserArgs = {
1660
+ id: Scalars['ObjectId'];
1661
+ logs?: InputMaybe<Array<Scalars['String']>>;
1662
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1663
+ };
1664
+ export type MutationDuplicateOneApplicationArgs = {
1665
+ id: Scalars['ObjectId'];
1666
+ logs?: InputMaybe<Array<Scalars['String']>>;
1667
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1668
+ };
1669
+ export type MutationDuplicateOneAreaArgs = {
1670
+ id: Scalars['ObjectId'];
1671
+ logs?: InputMaybe<Array<Scalars['String']>>;
1672
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1673
+ };
1674
+ export type MutationDuplicateOneBranchArgs = {
1675
+ id: Scalars['ObjectId'];
1676
+ logs?: InputMaybe<Array<Scalars['String']>>;
1677
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1678
+ };
1679
+ export type MutationDuplicateOneBrandArgs = {
1680
+ id: Scalars['ObjectId'];
1681
+ logs?: InputMaybe<Array<Scalars['String']>>;
1682
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1683
+ };
1684
+ export type MutationDuplicateOneBuildingArgs = {
1685
+ id: Scalars['ObjectId'];
1686
+ logs?: InputMaybe<Array<Scalars['String']>>;
1687
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1688
+ };
1689
+ export type MutationDuplicateOneCheckInArgs = {
1690
+ id: Scalars['ObjectId'];
1691
+ logs?: InputMaybe<Array<Scalars['String']>>;
1692
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1693
+ };
1694
+ export type MutationDuplicateOneCityArgs = {
1695
+ id: Scalars['ObjectId'];
1696
+ logs?: InputMaybe<Array<Scalars['String']>>;
1697
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1698
+ };
1699
+ export type MutationDuplicateOneConfigArgs = {
1700
+ id: Scalars['ObjectId'];
1701
+ logs?: InputMaybe<Array<Scalars['String']>>;
1702
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1703
+ };
1704
+ export type MutationDuplicateOneCountryArgs = {
1705
+ id: Scalars['ObjectId'];
1706
+ logs?: InputMaybe<Array<Scalars['String']>>;
1707
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1708
+ };
1709
+ export type MutationDuplicateOneOrganizationArgs = {
1710
+ id: Scalars['ObjectId'];
1711
+ logs?: InputMaybe<Array<Scalars['String']>>;
1712
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1713
+ };
1714
+ export type MutationDuplicateOneProvinceArgs = {
1715
+ id: Scalars['ObjectId'];
1716
+ logs?: InputMaybe<Array<Scalars['String']>>;
1717
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1718
+ };
1719
+ export type MutationDuplicateOneRegionArgs = {
1720
+ id: Scalars['ObjectId'];
1721
+ logs?: InputMaybe<Array<Scalars['String']>>;
1722
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1723
+ };
1724
+ export type MutationDuplicateOneRoleArgs = {
1725
+ id: Scalars['ObjectId'];
1726
+ logs?: InputMaybe<Array<Scalars['String']>>;
1727
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1728
+ };
1729
+ export type MutationDuplicateOneRoomArgs = {
1730
+ id: Scalars['ObjectId'];
1731
+ logs?: InputMaybe<Array<Scalars['String']>>;
1732
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1733
+ };
1734
+ export type MutationDuplicateOneServiceArgs = {
1735
+ id: Scalars['ObjectId'];
1736
+ logs?: InputMaybe<Array<Scalars['String']>>;
1737
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1738
+ };
1739
+ export type MutationDuplicateOneStaffArgs = {
1740
+ id: Scalars['ObjectId'];
1741
+ logs?: InputMaybe<Array<Scalars['String']>>;
1742
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1743
+ };
1744
+ export type MutationDuplicateOneUnitArgs = {
1745
+ id: Scalars['ObjectId'];
1746
+ logs?: InputMaybe<Array<Scalars['String']>>;
1747
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1748
+ };
1749
+ export type MutationDuplicateOneUserArgs = {
1750
+ id: Scalars['ObjectId'];
1751
+ logs?: InputMaybe<Array<Scalars['String']>>;
1752
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1753
+ };
1754
+ export type MutationExecuteApplicationArgs = {
1755
+ action?: InputMaybe<Scalars['String']>;
1756
+ input?: InputMaybe<Scalars['Json']>;
1757
+ logs?: InputMaybe<Array<Scalars['String']>>;
1758
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1759
+ };
1760
+ export type MutationExecuteAreaArgs = {
1761
+ action?: InputMaybe<Scalars['String']>;
1762
+ input?: InputMaybe<Scalars['Json']>;
1763
+ logs?: InputMaybe<Array<Scalars['String']>>;
1764
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1765
+ };
1766
+ export type MutationExecuteBranchArgs = {
1767
+ action?: InputMaybe<Scalars['String']>;
1768
+ input?: InputMaybe<Scalars['Json']>;
1769
+ logs?: InputMaybe<Array<Scalars['String']>>;
1770
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1771
+ };
1772
+ export type MutationExecuteBrandArgs = {
1773
+ action?: InputMaybe<Scalars['String']>;
1774
+ input?: InputMaybe<Scalars['Json']>;
1775
+ logs?: InputMaybe<Array<Scalars['String']>>;
1776
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1777
+ };
1778
+ export type MutationExecuteBuildingArgs = {
1779
+ action?: InputMaybe<Scalars['String']>;
1780
+ input?: InputMaybe<Scalars['Json']>;
1781
+ logs?: InputMaybe<Array<Scalars['String']>>;
1782
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1783
+ };
1784
+ export type MutationExecuteCheckInArgs = {
1785
+ action?: InputMaybe<Scalars['String']>;
1786
+ input?: InputMaybe<Scalars['Json']>;
1787
+ logs?: InputMaybe<Array<Scalars['String']>>;
1788
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1789
+ };
1790
+ export type MutationExecuteCityArgs = {
1791
+ action?: InputMaybe<Scalars['String']>;
1792
+ input?: InputMaybe<Scalars['Json']>;
1793
+ logs?: InputMaybe<Array<Scalars['String']>>;
1794
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1795
+ };
1796
+ export type MutationExecuteConfigArgs = {
1797
+ action?: InputMaybe<Scalars['String']>;
1798
+ input?: InputMaybe<Scalars['Json']>;
1799
+ logs?: InputMaybe<Array<Scalars['String']>>;
1800
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1801
+ };
1802
+ export type MutationExecuteCountryArgs = {
1803
+ action?: InputMaybe<Scalars['String']>;
1804
+ input?: InputMaybe<Scalars['Json']>;
1805
+ logs?: InputMaybe<Array<Scalars['String']>>;
1806
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1807
+ };
1808
+ export type MutationExecuteOrganizationArgs = {
1809
+ action?: InputMaybe<Scalars['String']>;
1810
+ input?: InputMaybe<Scalars['Json']>;
1811
+ logs?: InputMaybe<Array<Scalars['String']>>;
1812
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1813
+ };
1814
+ export type MutationExecuteProvinceArgs = {
1815
+ action?: InputMaybe<Scalars['String']>;
1816
+ input?: InputMaybe<Scalars['Json']>;
1817
+ logs?: InputMaybe<Array<Scalars['String']>>;
1818
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1819
+ };
1820
+ export type MutationExecuteRegionArgs = {
1821
+ action?: InputMaybe<Scalars['String']>;
1822
+ input?: InputMaybe<Scalars['Json']>;
1823
+ logs?: InputMaybe<Array<Scalars['String']>>;
1824
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1825
+ };
1826
+ export type MutationExecuteRoleArgs = {
1827
+ action?: InputMaybe<Scalars['String']>;
1828
+ input?: InputMaybe<Scalars['Json']>;
1829
+ logs?: InputMaybe<Array<Scalars['String']>>;
1830
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1831
+ };
1832
+ export type MutationExecuteRoomArgs = {
1833
+ action?: InputMaybe<Scalars['String']>;
1834
+ input?: InputMaybe<Scalars['Json']>;
1835
+ logs?: InputMaybe<Array<Scalars['String']>>;
1836
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1837
+ };
1838
+ export type MutationExecuteServiceArgs = {
1839
+ action?: InputMaybe<Scalars['String']>;
1840
+ input?: InputMaybe<Scalars['Json']>;
1841
+ logs?: InputMaybe<Array<Scalars['String']>>;
1842
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1843
+ };
1844
+ export type MutationExecuteStaffArgs = {
1845
+ action?: InputMaybe<Scalars['String']>;
1846
+ input?: InputMaybe<Scalars['Json']>;
1847
+ logs?: InputMaybe<Array<Scalars['String']>>;
1848
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1849
+ };
1850
+ export type MutationExecuteUnitArgs = {
1851
+ action?: InputMaybe<Scalars['String']>;
1852
+ input?: InputMaybe<Scalars['Json']>;
1853
+ logs?: InputMaybe<Array<Scalars['String']>>;
1854
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1855
+ };
1856
+ export type MutationExecuteUserArgs = {
1857
+ action?: InputMaybe<Scalars['String']>;
1858
+ input?: InputMaybe<Scalars['Json']>;
1859
+ logs?: InputMaybe<Array<Scalars['String']>>;
1860
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1861
+ };
1862
+ export type MutationRestoreOneApplicationArgs = {
1863
+ id: Scalars['ObjectId'];
1864
+ logs?: InputMaybe<Array<Scalars['String']>>;
1865
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1866
+ };
1867
+ export type MutationRestoreOneAreaArgs = {
1868
+ id: Scalars['ObjectId'];
1869
+ logs?: InputMaybe<Array<Scalars['String']>>;
1870
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1871
+ };
1872
+ export type MutationRestoreOneBranchArgs = {
1873
+ id: Scalars['ObjectId'];
1874
+ logs?: InputMaybe<Array<Scalars['String']>>;
1875
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1876
+ };
1877
+ export type MutationRestoreOneBrandArgs = {
1878
+ id: Scalars['ObjectId'];
1879
+ logs?: InputMaybe<Array<Scalars['String']>>;
1880
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1881
+ };
1882
+ export type MutationRestoreOneBuildingArgs = {
1883
+ id: Scalars['ObjectId'];
1884
+ logs?: InputMaybe<Array<Scalars['String']>>;
1885
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1886
+ };
1887
+ export type MutationRestoreOneCheckInArgs = {
1888
+ id: Scalars['ObjectId'];
1889
+ logs?: InputMaybe<Array<Scalars['String']>>;
1890
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1891
+ };
1892
+ export type MutationRestoreOneCityArgs = {
1893
+ id: Scalars['ObjectId'];
1894
+ logs?: InputMaybe<Array<Scalars['String']>>;
1895
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1896
+ };
1897
+ export type MutationRestoreOneConfigArgs = {
1898
+ id: Scalars['ObjectId'];
1899
+ logs?: InputMaybe<Array<Scalars['String']>>;
1900
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1901
+ };
1902
+ export type MutationRestoreOneCountryArgs = {
1903
+ id: Scalars['ObjectId'];
1904
+ logs?: InputMaybe<Array<Scalars['String']>>;
1905
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1906
+ };
1907
+ export type MutationRestoreOneOrganizationArgs = {
1908
+ id: Scalars['ObjectId'];
1909
+ logs?: InputMaybe<Array<Scalars['String']>>;
1910
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1911
+ };
1912
+ export type MutationRestoreOneProvinceArgs = {
1913
+ id: Scalars['ObjectId'];
1914
+ logs?: InputMaybe<Array<Scalars['String']>>;
1915
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1916
+ };
1917
+ export type MutationRestoreOneRegionArgs = {
1918
+ id: Scalars['ObjectId'];
1919
+ logs?: InputMaybe<Array<Scalars['String']>>;
1920
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1921
+ };
1922
+ export type MutationRestoreOneRoleArgs = {
1923
+ id: Scalars['ObjectId'];
1924
+ logs?: InputMaybe<Array<Scalars['String']>>;
1925
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1926
+ };
1927
+ export type MutationRestoreOneRoomArgs = {
1928
+ id: Scalars['ObjectId'];
1929
+ logs?: InputMaybe<Array<Scalars['String']>>;
1930
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1931
+ };
1932
+ export type MutationRestoreOneServiceArgs = {
1933
+ id: Scalars['ObjectId'];
1934
+ logs?: InputMaybe<Array<Scalars['String']>>;
1935
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1936
+ };
1937
+ export type MutationRestoreOneStaffArgs = {
1938
+ id: Scalars['ObjectId'];
1939
+ logs?: InputMaybe<Array<Scalars['String']>>;
1940
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1941
+ };
1942
+ export type MutationRestoreOneUnitArgs = {
1943
+ id: Scalars['ObjectId'];
1944
+ logs?: InputMaybe<Array<Scalars['String']>>;
1945
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1946
+ };
1947
+ export type MutationRestoreOneUserArgs = {
1948
+ id: Scalars['ObjectId'];
1949
+ logs?: InputMaybe<Array<Scalars['String']>>;
1950
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1951
+ };
1952
+ export type MutationSyncManyApplicationsArgs = {
1953
+ filter?: InputMaybe<Scalars['Json']>;
1954
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
1955
+ limit?: InputMaybe<Scalars['Int']>;
1956
+ logs?: InputMaybe<Array<Scalars['String']>>;
1957
+ maxSyncedAt?: InputMaybe<Scalars['Date']>;
1958
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
1959
+ page?: InputMaybe<Scalars['Int']>;
1960
+ search?: InputMaybe<Scalars['String']>;
1961
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1962
+ sort?: InputMaybe<Scalars['Json']>;
1963
+ useDry?: InputMaybe<Scalars['Boolean']>;
1964
+ };
1965
+ export type MutationSyncManyAreasArgs = {
1966
+ filter?: InputMaybe<Scalars['Json']>;
1967
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
1968
+ limit?: InputMaybe<Scalars['Int']>;
1969
+ logs?: InputMaybe<Array<Scalars['String']>>;
1970
+ maxSyncedAt?: InputMaybe<Scalars['Date']>;
1971
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
1972
+ page?: InputMaybe<Scalars['Int']>;
1973
+ search?: InputMaybe<Scalars['String']>;
1974
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1975
+ sort?: InputMaybe<Scalars['Json']>;
1976
+ useDry?: InputMaybe<Scalars['Boolean']>;
1977
+ };
1978
+ export type MutationSyncManyBranchesArgs = {
1979
+ filter?: InputMaybe<Scalars['Json']>;
1980
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
1981
+ limit?: InputMaybe<Scalars['Int']>;
1982
+ logs?: InputMaybe<Array<Scalars['String']>>;
1983
+ maxSyncedAt?: InputMaybe<Scalars['Date']>;
1984
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
1985
+ page?: InputMaybe<Scalars['Int']>;
1986
+ search?: InputMaybe<Scalars['String']>;
1987
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
1988
+ sort?: InputMaybe<Scalars['Json']>;
1989
+ useDry?: InputMaybe<Scalars['Boolean']>;
1990
+ };
1991
+ export type MutationSyncManyBrandsArgs = {
1992
+ filter?: InputMaybe<Scalars['Json']>;
1993
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
1994
+ limit?: InputMaybe<Scalars['Int']>;
1995
+ logs?: InputMaybe<Array<Scalars['String']>>;
1996
+ maxSyncedAt?: InputMaybe<Scalars['Date']>;
1997
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
1998
+ page?: InputMaybe<Scalars['Int']>;
1999
+ search?: InputMaybe<Scalars['String']>;
2000
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2001
+ sort?: InputMaybe<Scalars['Json']>;
2002
+ useDry?: InputMaybe<Scalars['Boolean']>;
2003
+ };
2004
+ export type MutationSyncManyBuildingsArgs = {
2005
+ filter?: InputMaybe<Scalars['Json']>;
2006
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2007
+ limit?: InputMaybe<Scalars['Int']>;
2008
+ logs?: InputMaybe<Array<Scalars['String']>>;
2009
+ maxSyncedAt?: InputMaybe<Scalars['Date']>;
2010
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2011
+ page?: InputMaybe<Scalars['Int']>;
2012
+ search?: InputMaybe<Scalars['String']>;
2013
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2014
+ sort?: InputMaybe<Scalars['Json']>;
2015
+ useDry?: InputMaybe<Scalars['Boolean']>;
2016
+ };
2017
+ export type MutationSyncManyCheckInsArgs = {
2018
+ filter?: InputMaybe<Scalars['Json']>;
2019
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2020
+ limit?: InputMaybe<Scalars['Int']>;
2021
+ logs?: InputMaybe<Array<Scalars['String']>>;
2022
+ maxSyncedAt?: InputMaybe<Scalars['Date']>;
2023
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2024
+ page?: InputMaybe<Scalars['Int']>;
2025
+ search?: InputMaybe<Scalars['String']>;
2026
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2027
+ sort?: InputMaybe<Scalars['Json']>;
2028
+ useDry?: InputMaybe<Scalars['Boolean']>;
2029
+ };
2030
+ export type MutationSyncManyCitiesArgs = {
2031
+ filter?: InputMaybe<Scalars['Json']>;
2032
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2033
+ limit?: InputMaybe<Scalars['Int']>;
2034
+ logs?: InputMaybe<Array<Scalars['String']>>;
2035
+ maxSyncedAt?: InputMaybe<Scalars['Date']>;
2036
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2037
+ page?: InputMaybe<Scalars['Int']>;
2038
+ search?: InputMaybe<Scalars['String']>;
2039
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2040
+ sort?: InputMaybe<Scalars['Json']>;
2041
+ useDry?: InputMaybe<Scalars['Boolean']>;
2042
+ };
2043
+ export type MutationSyncManyConfigsArgs = {
2044
+ filter?: InputMaybe<Scalars['Json']>;
2045
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2046
+ limit?: InputMaybe<Scalars['Int']>;
2047
+ logs?: InputMaybe<Array<Scalars['String']>>;
2048
+ maxSyncedAt?: InputMaybe<Scalars['Date']>;
2049
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2050
+ page?: InputMaybe<Scalars['Int']>;
2051
+ search?: InputMaybe<Scalars['String']>;
2052
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2053
+ sort?: InputMaybe<Scalars['Json']>;
2054
+ useDry?: InputMaybe<Scalars['Boolean']>;
2055
+ };
2056
+ export type MutationSyncManyCountriesArgs = {
2057
+ filter?: InputMaybe<Scalars['Json']>;
2058
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2059
+ limit?: InputMaybe<Scalars['Int']>;
2060
+ logs?: InputMaybe<Array<Scalars['String']>>;
2061
+ maxSyncedAt?: InputMaybe<Scalars['Date']>;
2062
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2063
+ page?: InputMaybe<Scalars['Int']>;
2064
+ search?: InputMaybe<Scalars['String']>;
2065
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2066
+ sort?: InputMaybe<Scalars['Json']>;
2067
+ useDry?: InputMaybe<Scalars['Boolean']>;
2068
+ };
2069
+ export type MutationSyncManyOrganizationsArgs = {
2070
+ filter?: InputMaybe<Scalars['Json']>;
2071
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2072
+ limit?: InputMaybe<Scalars['Int']>;
2073
+ logs?: InputMaybe<Array<Scalars['String']>>;
2074
+ maxSyncedAt?: InputMaybe<Scalars['Date']>;
2075
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2076
+ page?: InputMaybe<Scalars['Int']>;
2077
+ search?: InputMaybe<Scalars['String']>;
2078
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2079
+ sort?: InputMaybe<Scalars['Json']>;
2080
+ useDry?: InputMaybe<Scalars['Boolean']>;
2081
+ };
2082
+ export type MutationSyncManyProvincesArgs = {
2083
+ filter?: InputMaybe<Scalars['Json']>;
2084
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2085
+ limit?: InputMaybe<Scalars['Int']>;
2086
+ logs?: InputMaybe<Array<Scalars['String']>>;
2087
+ maxSyncedAt?: InputMaybe<Scalars['Date']>;
2088
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2089
+ page?: InputMaybe<Scalars['Int']>;
2090
+ search?: InputMaybe<Scalars['String']>;
2091
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2092
+ sort?: InputMaybe<Scalars['Json']>;
2093
+ useDry?: InputMaybe<Scalars['Boolean']>;
2094
+ };
2095
+ export type MutationSyncManyRegionsArgs = {
2096
+ filter?: InputMaybe<Scalars['Json']>;
2097
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2098
+ limit?: InputMaybe<Scalars['Int']>;
2099
+ logs?: InputMaybe<Array<Scalars['String']>>;
2100
+ maxSyncedAt?: InputMaybe<Scalars['Date']>;
2101
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2102
+ page?: InputMaybe<Scalars['Int']>;
2103
+ search?: InputMaybe<Scalars['String']>;
2104
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2105
+ sort?: InputMaybe<Scalars['Json']>;
2106
+ useDry?: InputMaybe<Scalars['Boolean']>;
2107
+ };
2108
+ export type MutationSyncManyRolesArgs = {
2109
+ filter?: InputMaybe<Scalars['Json']>;
2110
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2111
+ limit?: InputMaybe<Scalars['Int']>;
2112
+ logs?: InputMaybe<Array<Scalars['String']>>;
2113
+ maxSyncedAt?: InputMaybe<Scalars['Date']>;
2114
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2115
+ page?: InputMaybe<Scalars['Int']>;
2116
+ search?: InputMaybe<Scalars['String']>;
2117
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2118
+ sort?: InputMaybe<Scalars['Json']>;
2119
+ useDry?: InputMaybe<Scalars['Boolean']>;
2120
+ };
2121
+ export type MutationSyncManyRoomsArgs = {
2122
+ filter?: InputMaybe<Scalars['Json']>;
2123
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2124
+ limit?: InputMaybe<Scalars['Int']>;
2125
+ logs?: InputMaybe<Array<Scalars['String']>>;
2126
+ maxSyncedAt?: InputMaybe<Scalars['Date']>;
2127
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2128
+ page?: InputMaybe<Scalars['Int']>;
2129
+ search?: InputMaybe<Scalars['String']>;
2130
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2131
+ sort?: InputMaybe<Scalars['Json']>;
2132
+ useDry?: InputMaybe<Scalars['Boolean']>;
2133
+ };
2134
+ export type MutationSyncManyServicesArgs = {
2135
+ filter?: InputMaybe<Scalars['Json']>;
2136
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2137
+ limit?: InputMaybe<Scalars['Int']>;
2138
+ logs?: InputMaybe<Array<Scalars['String']>>;
2139
+ maxSyncedAt?: InputMaybe<Scalars['Date']>;
2140
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2141
+ page?: InputMaybe<Scalars['Int']>;
2142
+ search?: InputMaybe<Scalars['String']>;
2143
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2144
+ sort?: InputMaybe<Scalars['Json']>;
2145
+ useDry?: InputMaybe<Scalars['Boolean']>;
2146
+ };
2147
+ export type MutationSyncManyStaffsArgs = {
2148
+ filter?: InputMaybe<Scalars['Json']>;
2149
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2150
+ limit?: InputMaybe<Scalars['Int']>;
2151
+ logs?: InputMaybe<Array<Scalars['String']>>;
2152
+ maxSyncedAt?: InputMaybe<Scalars['Date']>;
2153
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2154
+ page?: InputMaybe<Scalars['Int']>;
2155
+ search?: InputMaybe<Scalars['String']>;
2156
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2157
+ sort?: InputMaybe<Scalars['Json']>;
2158
+ useDry?: InputMaybe<Scalars['Boolean']>;
2159
+ };
2160
+ export type MutationSyncManyUnitsArgs = {
2161
+ filter?: InputMaybe<Scalars['Json']>;
2162
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2163
+ limit?: InputMaybe<Scalars['Int']>;
2164
+ logs?: InputMaybe<Array<Scalars['String']>>;
2165
+ maxSyncedAt?: InputMaybe<Scalars['Date']>;
2166
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2167
+ page?: InputMaybe<Scalars['Int']>;
2168
+ search?: InputMaybe<Scalars['String']>;
2169
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2170
+ sort?: InputMaybe<Scalars['Json']>;
2171
+ useDry?: InputMaybe<Scalars['Boolean']>;
2172
+ };
2173
+ export type MutationSyncManyUsersArgs = {
2174
+ filter?: InputMaybe<Scalars['Json']>;
2175
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2176
+ limit?: InputMaybe<Scalars['Int']>;
2177
+ logs?: InputMaybe<Array<Scalars['String']>>;
2178
+ maxSyncedAt?: InputMaybe<Scalars['Date']>;
2179
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2180
+ page?: InputMaybe<Scalars['Int']>;
2181
+ search?: InputMaybe<Scalars['String']>;
2182
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2183
+ sort?: InputMaybe<Scalars['Json']>;
2184
+ useDry?: InputMaybe<Scalars['Boolean']>;
2185
+ };
2186
+ export type MutationSyncOneApplicationArgs = {
2187
+ id: Scalars['ObjectId'];
2188
+ logs?: InputMaybe<Array<Scalars['String']>>;
2189
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2190
+ };
2191
+ export type MutationSyncOneAreaArgs = {
2192
+ id: Scalars['ObjectId'];
2193
+ logs?: InputMaybe<Array<Scalars['String']>>;
2194
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2195
+ };
2196
+ export type MutationSyncOneBranchArgs = {
2197
+ id: Scalars['ObjectId'];
2198
+ logs?: InputMaybe<Array<Scalars['String']>>;
2199
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2200
+ };
2201
+ export type MutationSyncOneBrandArgs = {
2202
+ id: Scalars['ObjectId'];
2203
+ logs?: InputMaybe<Array<Scalars['String']>>;
2204
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2205
+ };
2206
+ export type MutationSyncOneBuildingArgs = {
2207
+ id: Scalars['ObjectId'];
2208
+ logs?: InputMaybe<Array<Scalars['String']>>;
2209
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2210
+ };
2211
+ export type MutationSyncOneCheckInArgs = {
2212
+ id: Scalars['ObjectId'];
2213
+ logs?: InputMaybe<Array<Scalars['String']>>;
2214
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2215
+ };
2216
+ export type MutationSyncOneCityArgs = {
2217
+ id: Scalars['ObjectId'];
2218
+ logs?: InputMaybe<Array<Scalars['String']>>;
2219
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2220
+ };
2221
+ export type MutationSyncOneConfigArgs = {
2222
+ id: Scalars['ObjectId'];
2223
+ logs?: InputMaybe<Array<Scalars['String']>>;
2224
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2225
+ };
2226
+ export type MutationSyncOneCountryArgs = {
2227
+ id: Scalars['ObjectId'];
2228
+ logs?: InputMaybe<Array<Scalars['String']>>;
2229
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2230
+ };
2231
+ export type MutationSyncOneOrganizationArgs = {
2232
+ id: Scalars['ObjectId'];
2233
+ logs?: InputMaybe<Array<Scalars['String']>>;
2234
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2235
+ };
2236
+ export type MutationSyncOneProvinceArgs = {
2237
+ id: Scalars['ObjectId'];
2238
+ logs?: InputMaybe<Array<Scalars['String']>>;
2239
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2240
+ };
2241
+ export type MutationSyncOneRegionArgs = {
2242
+ id: Scalars['ObjectId'];
2243
+ logs?: InputMaybe<Array<Scalars['String']>>;
2244
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2245
+ };
2246
+ export type MutationSyncOneRoleArgs = {
2247
+ id: Scalars['ObjectId'];
2248
+ logs?: InputMaybe<Array<Scalars['String']>>;
2249
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2250
+ };
2251
+ export type MutationSyncOneRoomArgs = {
2252
+ id: Scalars['ObjectId'];
2253
+ logs?: InputMaybe<Array<Scalars['String']>>;
2254
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2255
+ };
2256
+ export type MutationSyncOneServiceArgs = {
2257
+ id: Scalars['ObjectId'];
2258
+ logs?: InputMaybe<Array<Scalars['String']>>;
2259
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2260
+ };
2261
+ export type MutationSyncOneStaffArgs = {
2262
+ id: Scalars['ObjectId'];
2263
+ logs?: InputMaybe<Array<Scalars['String']>>;
2264
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2265
+ };
2266
+ export type MutationSyncOneUnitArgs = {
2267
+ id: Scalars['ObjectId'];
2268
+ logs?: InputMaybe<Array<Scalars['String']>>;
2269
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2270
+ };
2271
+ export type MutationSyncOneUserArgs = {
2272
+ id: Scalars['ObjectId'];
2273
+ logs?: InputMaybe<Array<Scalars['String']>>;
2274
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2275
+ };
2276
+ export type MutationUpdateOneApplicationArgs = {
2277
+ data: ApplicationInput;
2278
+ id: Scalars['ObjectId'];
2279
+ logs?: InputMaybe<Array<Scalars['String']>>;
2280
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2281
+ };
2282
+ export type MutationUpdateOneAreaArgs = {
2283
+ data: AreaInput;
2284
+ id: Scalars['ObjectId'];
2285
+ logs?: InputMaybe<Array<Scalars['String']>>;
2286
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2287
+ };
2288
+ export type MutationUpdateOneBranchArgs = {
2289
+ data: BranchInput;
2290
+ id: Scalars['ObjectId'];
2291
+ logs?: InputMaybe<Array<Scalars['String']>>;
2292
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2293
+ };
2294
+ export type MutationUpdateOneBrandArgs = {
2295
+ data: BrandInput;
2296
+ id: Scalars['ObjectId'];
2297
+ logs?: InputMaybe<Array<Scalars['String']>>;
2298
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2299
+ };
2300
+ export type MutationUpdateOneBuildingArgs = {
2301
+ data: BuildingInput;
2302
+ id: Scalars['ObjectId'];
2303
+ logs?: InputMaybe<Array<Scalars['String']>>;
2304
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2305
+ };
2306
+ export type MutationUpdateOneCheckInArgs = {
2307
+ data: CheckInInput;
2308
+ id: Scalars['ObjectId'];
2309
+ logs?: InputMaybe<Array<Scalars['String']>>;
2310
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2311
+ };
2312
+ export type MutationUpdateOneCityArgs = {
2313
+ data: CityInput;
2314
+ id: Scalars['ObjectId'];
2315
+ logs?: InputMaybe<Array<Scalars['String']>>;
2316
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2317
+ };
2318
+ export type MutationUpdateOneConfigArgs = {
2319
+ data: ConfigInput;
2320
+ id: Scalars['ObjectId'];
2321
+ logs?: InputMaybe<Array<Scalars['String']>>;
2322
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2323
+ };
2324
+ export type MutationUpdateOneCountryArgs = {
2325
+ data: CountryInput;
2326
+ id: Scalars['ObjectId'];
2327
+ logs?: InputMaybe<Array<Scalars['String']>>;
2328
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2329
+ };
2330
+ export type MutationUpdateOneOrganizationArgs = {
2331
+ data: OrganizationInput;
2332
+ id: Scalars['ObjectId'];
2333
+ logs?: InputMaybe<Array<Scalars['String']>>;
2334
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2335
+ };
2336
+ export type MutationUpdateOneProvinceArgs = {
2337
+ data: ProvinceInput;
2338
+ id: Scalars['ObjectId'];
2339
+ logs?: InputMaybe<Array<Scalars['String']>>;
2340
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2341
+ };
2342
+ export type MutationUpdateOneRegionArgs = {
2343
+ data: RegionInput;
2344
+ id: Scalars['ObjectId'];
2345
+ logs?: InputMaybe<Array<Scalars['String']>>;
2346
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2347
+ };
2348
+ export type MutationUpdateOneRoleArgs = {
2349
+ data: RoleInput;
2350
+ id: Scalars['ObjectId'];
2351
+ logs?: InputMaybe<Array<Scalars['String']>>;
2352
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2353
+ };
2354
+ export type MutationUpdateOneRoomArgs = {
2355
+ data: RoomInput;
2356
+ id: Scalars['ObjectId'];
2357
+ logs?: InputMaybe<Array<Scalars['String']>>;
2358
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2359
+ };
2360
+ export type MutationUpdateOneServiceArgs = {
2361
+ data: ServiceInput;
2362
+ id: Scalars['ObjectId'];
2363
+ logs?: InputMaybe<Array<Scalars['String']>>;
2364
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2365
+ };
2366
+ export type MutationUpdateOneStaffArgs = {
2367
+ data: StaffInput;
2368
+ id: Scalars['ObjectId'];
2369
+ logs?: InputMaybe<Array<Scalars['String']>>;
2370
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2371
+ };
2372
+ export type MutationUpdateOneUnitArgs = {
2373
+ data: UnitInput;
2374
+ id: Scalars['ObjectId'];
2375
+ logs?: InputMaybe<Array<Scalars['String']>>;
2376
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2377
+ };
2378
+ export type MutationUpdateOneUserArgs = {
2379
+ data: UserInput;
2380
+ id: Scalars['ObjectId'];
2381
+ logs?: InputMaybe<Array<Scalars['String']>>;
2382
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2383
+ };
2384
+ export type Organization = {
2385
+ /** Inversed relation from Organization field of neo:kokpit:application model. */
2386
+ applications?: Maybe<Array<Application>>;
2387
+ /** Organization code. */
2388
+ code?: Maybe<Scalars['String']>;
2389
+ /** Inversed relation from Organization field of neo:kokpit:config model. */
2390
+ configs?: Maybe<Array<Config>>;
2391
+ /** When this organization was created. */
2392
+ createdAt?: Maybe<Scalars['Date']>;
2393
+ /** Relation ID of Created By. */
2394
+ createdBy?: Maybe<Scalars['ObjectId']>;
2395
+ /** Who created this organization. */
2396
+ creator?: Maybe<User>;
2397
+ /** When this organization was deleted. */
2398
+ deletedAt?: Maybe<Scalars['Date']>;
2399
+ /** Relation ID of Deleted By. */
2400
+ deletedBy?: Maybe<Scalars['ObjectId']>;
2401
+ /** Who deleted this organization. */
2402
+ deleter?: Maybe<User>;
2403
+ /** Organization */
2404
+ display?: Maybe<Scalars['String']>;
2405
+ /** Organization */
2406
+ flag?: Maybe<Scalars['String']>;
2407
+ /** Object ID. */
2408
+ id?: Maybe<Scalars['ID']>;
2409
+ /** Organization name. */
2410
+ name?: Maybe<Scalars['String']>;
2411
+ /** When this organization was restored. */
2412
+ restoredAt?: Maybe<Scalars['Date']>;
2413
+ /** Relation ID of Restored By. */
2414
+ restoredBy?: Maybe<Scalars['ObjectId']>;
2415
+ /** Who last restored this organization. */
2416
+ restorer?: Maybe<User>;
2417
+ /** Inversed relation from Organization field of neo:identitas:role model. */
2418
+ roles?: Maybe<Array<Role>>;
2419
+ /** Organization status. */
2420
+ status?: Maybe<Scalars['String']>;
2421
+ /** When this organization was last synced. */
2422
+ syncedAt?: Maybe<Scalars['Date']>;
2423
+ /** Inversed relation from Organization field of neo:tempat:unit model. */
2424
+ units?: Maybe<Array<Unit>>;
2425
+ /** When this organization was last updated. */
2426
+ updatedAt?: Maybe<Scalars['Date']>;
2427
+ /** Relation ID of Updated By. */
2428
+ updatedBy?: Maybe<Scalars['ObjectId']>;
2429
+ /** Who last updated this organization. */
2430
+ updater?: Maybe<User>;
2431
+ /** Inversed relation from Organizations field of neo:identitas:user model. */
2432
+ users?: Maybe<Array<User>>;
2433
+ };
2434
+ export type OrganizationApplicationsArgs = {
2435
+ filter?: InputMaybe<Scalars['Json']>;
2436
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2437
+ limit?: InputMaybe<Scalars['Int']>;
2438
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2439
+ page?: InputMaybe<Scalars['Int']>;
2440
+ search?: InputMaybe<Scalars['String']>;
2441
+ sort?: InputMaybe<Scalars['Json']>;
2442
+ };
2443
+ export type OrganizationConfigsArgs = {
2444
+ filter?: InputMaybe<Scalars['Json']>;
2445
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2446
+ limit?: InputMaybe<Scalars['Int']>;
2447
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2448
+ page?: InputMaybe<Scalars['Int']>;
2449
+ search?: InputMaybe<Scalars['String']>;
2450
+ sort?: InputMaybe<Scalars['Json']>;
2451
+ };
2452
+ export type OrganizationRolesArgs = {
2453
+ filter?: InputMaybe<Scalars['Json']>;
2454
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2455
+ limit?: InputMaybe<Scalars['Int']>;
2456
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2457
+ page?: InputMaybe<Scalars['Int']>;
2458
+ search?: InputMaybe<Scalars['String']>;
2459
+ sort?: InputMaybe<Scalars['Json']>;
2460
+ };
2461
+ export type OrganizationUnitsArgs = {
2462
+ filter?: InputMaybe<Scalars['Json']>;
2463
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2464
+ limit?: InputMaybe<Scalars['Int']>;
2465
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2466
+ page?: InputMaybe<Scalars['Int']>;
2467
+ search?: InputMaybe<Scalars['String']>;
2468
+ sort?: InputMaybe<Scalars['Json']>;
2469
+ };
2470
+ export type OrganizationUsersArgs = {
2471
+ filter?: InputMaybe<Scalars['Json']>;
2472
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2473
+ limit?: InputMaybe<Scalars['Int']>;
2474
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2475
+ page?: InputMaybe<Scalars['Int']>;
2476
+ search?: InputMaybe<Scalars['String']>;
2477
+ sort?: InputMaybe<Scalars['Json']>;
2478
+ };
2479
+ /** neo:tempat:organization collection response. */
2480
+ export type OrganizationCollectionResponse = {
2481
+ /** Response info. */
2482
+ info?: Maybe<Info>;
2483
+ /** Collection of neo:tempat:organization items. */
2484
+ items?: Maybe<Array<Organization>>;
2485
+ };
2486
+ export type OrganizationInput = {
2487
+ /** Organization code. */
2488
+ code?: InputMaybe<Scalars['String']>;
2489
+ /** When this organization was created. */
2490
+ createdAt?: InputMaybe<Scalars['Date']>;
2491
+ /** Relation ID of Created By. */
2492
+ createdBy?: InputMaybe<Scalars['ObjectId']>;
2493
+ /** When this organization was deleted. */
2494
+ deletedAt?: InputMaybe<Scalars['Date']>;
2495
+ /** Relation ID of Deleted By. */
2496
+ deletedBy?: InputMaybe<Scalars['ObjectId']>;
2497
+ /** Organization */
2498
+ display?: InputMaybe<Scalars['String']>;
2499
+ /** Organization */
2500
+ flag?: InputMaybe<Scalars['String']>;
2501
+ /** Organization name. */
2502
+ name?: InputMaybe<Scalars['String']>;
2503
+ /** When this organization was restored. */
2504
+ restoredAt?: InputMaybe<Scalars['Date']>;
2505
+ /** Relation ID of Restored By. */
2506
+ restoredBy?: InputMaybe<Scalars['ObjectId']>;
2507
+ /** Organization status. */
2508
+ status?: InputMaybe<Scalars['String']>;
2509
+ /** When this organization was last synced. */
2510
+ syncedAt?: InputMaybe<Scalars['Date']>;
2511
+ /** When this organization was last updated. */
2512
+ updatedAt?: InputMaybe<Scalars['Date']>;
2513
+ /** Relation ID of Updated By. */
2514
+ updatedBy?: InputMaybe<Scalars['ObjectId']>;
2515
+ };
2516
+ /** Single neo:tempat:organization response. */
2517
+ export type OrganizationSingleResponse = {
2518
+ /** Response info. */
2519
+ info?: Maybe<Info>;
2520
+ /** Single neo:tempat:organization item. */
2521
+ item?: Maybe<Organization>;
2522
+ };
2523
+ /** A pong for the ping. */
2524
+ export type Pong = {
2525
+ /** Response message. */
2526
+ message?: Maybe<Scalars['String']>;
2527
+ /** Response state. */
2528
+ state?: Maybe<Scalars['String']>;
2529
+ };
2530
+ export type Province = {
2531
+ /** Inversed relation from Provinsi field of neu:tempat:branch model. */
2532
+ branches?: Maybe<Array<Branch>>;
2533
+ /** Inversed relation from Province field of neo:tempat:city model. */
2534
+ cities?: Maybe<Array<City>>;
2535
+ /** Country of this province. */
2536
+ country?: Maybe<Country>;
2537
+ /** Relation ID of Country. */
2538
+ countryId?: Maybe<Scalars['ObjectId']>;
2539
+ /** When this province was created. */
2540
+ createdAt?: Maybe<Scalars['Date']>;
2541
+ /** Relation ID of Created By. */
2542
+ createdBy?: Maybe<Scalars['ObjectId']>;
2543
+ /** Who created this province. */
2544
+ creator?: Maybe<User>;
2545
+ /** When this province was deleted. */
2546
+ deletedAt?: Maybe<Scalars['Date']>;
2547
+ /** Relation ID of Deleted By. */
2548
+ deletedBy?: Maybe<Scalars['ObjectId']>;
2549
+ /** Who deleted this province. */
2550
+ deleter?: Maybe<User>;
2551
+ /** Province */
2552
+ display?: Maybe<Scalars['String']>;
2553
+ /** Province */
2554
+ flag?: Maybe<Scalars['String']>;
2555
+ /** Object ID. */
2556
+ id?: Maybe<Scalars['ID']>;
2557
+ /** Province name. */
2558
+ name?: Maybe<Scalars['String']>;
2559
+ /** Region code of this province. */
2560
+ regionCode?: Maybe<Scalars['String']>;
2561
+ /** When this province was restored. */
2562
+ restoredAt?: Maybe<Scalars['Date']>;
2563
+ /** Relation ID of Restored By. */
2564
+ restoredBy?: Maybe<Scalars['ObjectId']>;
2565
+ /** Who last restored this province. */
2566
+ restorer?: Maybe<User>;
2567
+ /** When this province was last synced. */
2568
+ syncedAt?: Maybe<Scalars['Date']>;
2569
+ /** When this province was last updated. */
2570
+ updatedAt?: Maybe<Scalars['Date']>;
2571
+ /** Relation ID of Updated By. */
2572
+ updatedBy?: Maybe<Scalars['ObjectId']>;
2573
+ /** Who last updated this province. */
2574
+ updater?: Maybe<User>;
2575
+ };
2576
+ export type ProvinceBranchesArgs = {
2577
+ filter?: InputMaybe<Scalars['Json']>;
2578
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2579
+ limit?: InputMaybe<Scalars['Int']>;
2580
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2581
+ page?: InputMaybe<Scalars['Int']>;
2582
+ search?: InputMaybe<Scalars['String']>;
2583
+ sort?: InputMaybe<Scalars['Json']>;
2584
+ };
2585
+ export type ProvinceCitiesArgs = {
2586
+ filter?: InputMaybe<Scalars['Json']>;
2587
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2588
+ limit?: InputMaybe<Scalars['Int']>;
2589
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2590
+ page?: InputMaybe<Scalars['Int']>;
2591
+ search?: InputMaybe<Scalars['String']>;
2592
+ sort?: InputMaybe<Scalars['Json']>;
2593
+ };
2594
+ /** neo:tempat:province collection response. */
2595
+ export type ProvinceCollectionResponse = {
2596
+ /** Response info. */
2597
+ info?: Maybe<Info>;
2598
+ /** Collection of neo:tempat:province items. */
2599
+ items?: Maybe<Array<Province>>;
2600
+ };
2601
+ export type ProvinceInput = {
2602
+ /** Relation ID of Country. */
2603
+ countryId?: InputMaybe<Scalars['ObjectId']>;
2604
+ /** When this province was created. */
2605
+ createdAt?: InputMaybe<Scalars['Date']>;
2606
+ /** Relation ID of Created By. */
2607
+ createdBy?: InputMaybe<Scalars['ObjectId']>;
2608
+ /** When this province was deleted. */
2609
+ deletedAt?: InputMaybe<Scalars['Date']>;
2610
+ /** Relation ID of Deleted By. */
2611
+ deletedBy?: InputMaybe<Scalars['ObjectId']>;
2612
+ /** Province */
2613
+ display?: InputMaybe<Scalars['String']>;
2614
+ /** Province */
2615
+ flag?: InputMaybe<Scalars['String']>;
2616
+ /** Province name. */
2617
+ name?: InputMaybe<Scalars['String']>;
2618
+ /** Region code of this province. */
2619
+ regionCode?: InputMaybe<Scalars['String']>;
2620
+ /** When this province was restored. */
2621
+ restoredAt?: InputMaybe<Scalars['Date']>;
2622
+ /** Relation ID of Restored By. */
2623
+ restoredBy?: InputMaybe<Scalars['ObjectId']>;
2624
+ /** When this province was last synced. */
2625
+ syncedAt?: InputMaybe<Scalars['Date']>;
2626
+ /** When this province was last updated. */
2627
+ updatedAt?: InputMaybe<Scalars['Date']>;
2628
+ /** Relation ID of Updated By. */
2629
+ updatedBy?: InputMaybe<Scalars['ObjectId']>;
2630
+ };
2631
+ /** Single neo:tempat:province response. */
2632
+ export type ProvinceSingleResponse = {
2633
+ /** Response info. */
2634
+ info?: Maybe<Info>;
2635
+ /** Single neo:tempat:province item. */
2636
+ item?: Maybe<Province>;
2637
+ };
2638
+ export type Query = {
2639
+ application?: Maybe<ApplicationSingleResponse>;
2640
+ applications?: Maybe<ApplicationCollectionResponse>;
2641
+ area?: Maybe<AreaSingleResponse>;
2642
+ areas?: Maybe<AreaCollectionResponse>;
2643
+ branch?: Maybe<BranchSingleResponse>;
2644
+ branches?: Maybe<BranchCollectionResponse>;
2645
+ brand?: Maybe<BrandSingleResponse>;
2646
+ brands?: Maybe<BrandCollectionResponse>;
2647
+ building?: Maybe<BuildingSingleResponse>;
2648
+ buildings?: Maybe<BuildingCollectionResponse>;
2649
+ checkIn?: Maybe<CheckInSingleResponse>;
2650
+ checkIns?: Maybe<CheckInCollectionResponse>;
2651
+ cities?: Maybe<CityCollectionResponse>;
2652
+ city?: Maybe<CitySingleResponse>;
2653
+ config?: Maybe<ConfigSingleResponse>;
2654
+ configs?: Maybe<ConfigCollectionResponse>;
2655
+ /** Count neo:kokpit:application items. */
2656
+ countApplications?: Maybe<CountResponse>;
2657
+ /** Count neu:tempat:area items. */
2658
+ countAreas?: Maybe<CountResponse>;
2659
+ /** Count neu:tempat:branch items. */
2660
+ countBranches?: Maybe<CountResponse>;
2661
+ /** Count neu:tempat:brand items. */
2662
+ countBrands?: Maybe<CountResponse>;
2663
+ /** Count neu:tempat:building items. */
2664
+ countBuildings?: Maybe<CountResponse>;
2665
+ /** Count neu:tempat:checkIn items. */
2666
+ countCheckIns?: Maybe<CountResponse>;
2667
+ /** Count neo:tempat:city items. */
2668
+ countCities?: Maybe<CountResponse>;
2669
+ /** Count neo:kokpit:config items. */
2670
+ countConfigs?: Maybe<CountResponse>;
2671
+ /** Count neo:tempat:country items. */
2672
+ countCountries?: Maybe<CountResponse>;
2673
+ /** Count neo:tempat:organization items. */
2674
+ countOrganizations?: Maybe<CountResponse>;
2675
+ /** Count neo:tempat:province items. */
2676
+ countProvinces?: Maybe<CountResponse>;
2677
+ /** Count neu:tempat:region items. */
2678
+ countRegions?: Maybe<CountResponse>;
2679
+ /** Count neo:identitas:role items. */
2680
+ countRoles?: Maybe<CountResponse>;
2681
+ /** Count neu:tempat:room items. */
2682
+ countRooms?: Maybe<CountResponse>;
2683
+ /** Count neo:kokpit:service items. */
2684
+ countServices?: Maybe<CountResponse>;
2685
+ /** Count neu:personalia:staff items. */
2686
+ countStaffs?: Maybe<CountResponse>;
2687
+ /** Count neo:tempat:unit items. */
2688
+ countUnits?: Maybe<CountResponse>;
2689
+ /** Count neo:identitas:user items. */
2690
+ countUsers?: Maybe<CountResponse>;
2691
+ countries?: Maybe<CountryCollectionResponse>;
2692
+ country?: Maybe<CountrySingleResponse>;
2693
+ organization?: Maybe<OrganizationSingleResponse>;
2694
+ organizations?: Maybe<OrganizationCollectionResponse>;
2695
+ ping?: Maybe<Pong>;
2696
+ province?: Maybe<ProvinceSingleResponse>;
2697
+ provinces?: Maybe<ProvinceCollectionResponse>;
2698
+ region?: Maybe<RegionSingleResponse>;
2699
+ regions?: Maybe<RegionCollectionResponse>;
2700
+ role?: Maybe<RoleSingleResponse>;
2701
+ roles?: Maybe<RoleCollectionResponse>;
2702
+ room?: Maybe<RoomSingleResponse>;
2703
+ rooms?: Maybe<RoomCollectionResponse>;
2704
+ service?: Maybe<ServiceSingleResponse>;
2705
+ services?: Maybe<ServiceCollectionResponse>;
2706
+ staff?: Maybe<StaffSingleResponse>;
2707
+ staffs?: Maybe<StaffCollectionResponse>;
2708
+ unit?: Maybe<UnitSingleResponse>;
2709
+ units?: Maybe<UnitCollectionResponse>;
2710
+ user?: Maybe<UserSingleResponse>;
2711
+ users?: Maybe<UserCollectionResponse>;
2712
+ };
2713
+ export type QueryApplicationArgs = {
2714
+ id: Scalars['ObjectId'];
2715
+ logs?: InputMaybe<Array<Scalars['String']>>;
2716
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2717
+ };
2718
+ export type QueryApplicationsArgs = {
2719
+ filter?: InputMaybe<Scalars['Json']>;
2720
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2721
+ limit?: InputMaybe<Scalars['Int']>;
2722
+ logs?: InputMaybe<Array<Scalars['String']>>;
2723
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2724
+ page?: InputMaybe<Scalars['Int']>;
2725
+ search?: InputMaybe<Scalars['String']>;
2726
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2727
+ sort?: InputMaybe<Scalars['Json']>;
2728
+ };
2729
+ export type QueryAreaArgs = {
2730
+ id: Scalars['ObjectId'];
2731
+ logs?: InputMaybe<Array<Scalars['String']>>;
2732
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2733
+ };
2734
+ export type QueryAreasArgs = {
2735
+ filter?: InputMaybe<Scalars['Json']>;
2736
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2737
+ limit?: InputMaybe<Scalars['Int']>;
2738
+ logs?: InputMaybe<Array<Scalars['String']>>;
2739
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2740
+ page?: InputMaybe<Scalars['Int']>;
2741
+ search?: InputMaybe<Scalars['String']>;
2742
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2743
+ sort?: InputMaybe<Scalars['Json']>;
2744
+ };
2745
+ export type QueryBranchArgs = {
2746
+ id: Scalars['ObjectId'];
2747
+ logs?: InputMaybe<Array<Scalars['String']>>;
2748
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2749
+ };
2750
+ export type QueryBranchesArgs = {
2751
+ filter?: InputMaybe<Scalars['Json']>;
2752
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2753
+ limit?: InputMaybe<Scalars['Int']>;
2754
+ logs?: InputMaybe<Array<Scalars['String']>>;
2755
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2756
+ page?: InputMaybe<Scalars['Int']>;
2757
+ search?: InputMaybe<Scalars['String']>;
2758
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2759
+ sort?: InputMaybe<Scalars['Json']>;
2760
+ };
2761
+ export type QueryBrandArgs = {
2762
+ id: Scalars['ObjectId'];
2763
+ logs?: InputMaybe<Array<Scalars['String']>>;
2764
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2765
+ };
2766
+ export type QueryBrandsArgs = {
2767
+ filter?: InputMaybe<Scalars['Json']>;
2768
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2769
+ limit?: InputMaybe<Scalars['Int']>;
2770
+ logs?: InputMaybe<Array<Scalars['String']>>;
2771
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2772
+ page?: InputMaybe<Scalars['Int']>;
2773
+ search?: InputMaybe<Scalars['String']>;
2774
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2775
+ sort?: InputMaybe<Scalars['Json']>;
2776
+ };
2777
+ export type QueryBuildingArgs = {
2778
+ id: Scalars['ObjectId'];
2779
+ logs?: InputMaybe<Array<Scalars['String']>>;
2780
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2781
+ };
2782
+ export type QueryBuildingsArgs = {
2783
+ filter?: InputMaybe<Scalars['Json']>;
2784
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2785
+ limit?: InputMaybe<Scalars['Int']>;
2786
+ logs?: InputMaybe<Array<Scalars['String']>>;
2787
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2788
+ page?: InputMaybe<Scalars['Int']>;
2789
+ search?: InputMaybe<Scalars['String']>;
2790
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2791
+ sort?: InputMaybe<Scalars['Json']>;
2792
+ };
2793
+ export type QueryCheckInArgs = {
2794
+ id: Scalars['ObjectId'];
2795
+ logs?: InputMaybe<Array<Scalars['String']>>;
2796
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2797
+ };
2798
+ export type QueryCheckInsArgs = {
2799
+ filter?: InputMaybe<Scalars['Json']>;
2800
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2801
+ limit?: InputMaybe<Scalars['Int']>;
2802
+ logs?: InputMaybe<Array<Scalars['String']>>;
2803
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2804
+ page?: InputMaybe<Scalars['Int']>;
2805
+ search?: InputMaybe<Scalars['String']>;
2806
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2807
+ sort?: InputMaybe<Scalars['Json']>;
2808
+ };
2809
+ export type QueryCitiesArgs = {
2810
+ filter?: InputMaybe<Scalars['Json']>;
2811
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2812
+ limit?: InputMaybe<Scalars['Int']>;
2813
+ logs?: InputMaybe<Array<Scalars['String']>>;
2814
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2815
+ page?: InputMaybe<Scalars['Int']>;
2816
+ search?: InputMaybe<Scalars['String']>;
2817
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2818
+ sort?: InputMaybe<Scalars['Json']>;
2819
+ };
2820
+ export type QueryCityArgs = {
2821
+ id: Scalars['ObjectId'];
2822
+ logs?: InputMaybe<Array<Scalars['String']>>;
2823
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2824
+ };
2825
+ export type QueryConfigArgs = {
2826
+ id: Scalars['ObjectId'];
2827
+ logs?: InputMaybe<Array<Scalars['String']>>;
2828
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2829
+ };
2830
+ export type QueryConfigsArgs = {
2831
+ filter?: InputMaybe<Scalars['Json']>;
2832
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2833
+ limit?: InputMaybe<Scalars['Int']>;
2834
+ logs?: InputMaybe<Array<Scalars['String']>>;
2835
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2836
+ page?: InputMaybe<Scalars['Int']>;
2837
+ search?: InputMaybe<Scalars['String']>;
2838
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2839
+ sort?: InputMaybe<Scalars['Json']>;
2840
+ };
2841
+ export type QueryCountApplicationsArgs = {
2842
+ filter?: InputMaybe<Scalars['Json']>;
2843
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2844
+ limit?: InputMaybe<Scalars['Int']>;
2845
+ logs?: InputMaybe<Array<Scalars['String']>>;
2846
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2847
+ page?: InputMaybe<Scalars['Int']>;
2848
+ search?: InputMaybe<Scalars['String']>;
2849
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2850
+ sort?: InputMaybe<Scalars['Json']>;
2851
+ };
2852
+ export type QueryCountAreasArgs = {
2853
+ filter?: InputMaybe<Scalars['Json']>;
2854
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2855
+ limit?: InputMaybe<Scalars['Int']>;
2856
+ logs?: InputMaybe<Array<Scalars['String']>>;
2857
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2858
+ page?: InputMaybe<Scalars['Int']>;
2859
+ search?: InputMaybe<Scalars['String']>;
2860
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2861
+ sort?: InputMaybe<Scalars['Json']>;
2862
+ };
2863
+ export type QueryCountBranchesArgs = {
2864
+ filter?: InputMaybe<Scalars['Json']>;
2865
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2866
+ limit?: InputMaybe<Scalars['Int']>;
2867
+ logs?: InputMaybe<Array<Scalars['String']>>;
2868
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2869
+ page?: InputMaybe<Scalars['Int']>;
2870
+ search?: InputMaybe<Scalars['String']>;
2871
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2872
+ sort?: InputMaybe<Scalars['Json']>;
2873
+ };
2874
+ export type QueryCountBrandsArgs = {
2875
+ filter?: InputMaybe<Scalars['Json']>;
2876
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2877
+ limit?: InputMaybe<Scalars['Int']>;
2878
+ logs?: InputMaybe<Array<Scalars['String']>>;
2879
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2880
+ page?: InputMaybe<Scalars['Int']>;
2881
+ search?: InputMaybe<Scalars['String']>;
2882
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2883
+ sort?: InputMaybe<Scalars['Json']>;
2884
+ };
2885
+ export type QueryCountBuildingsArgs = {
2886
+ filter?: InputMaybe<Scalars['Json']>;
2887
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2888
+ limit?: InputMaybe<Scalars['Int']>;
2889
+ logs?: InputMaybe<Array<Scalars['String']>>;
2890
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2891
+ page?: InputMaybe<Scalars['Int']>;
2892
+ search?: InputMaybe<Scalars['String']>;
2893
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2894
+ sort?: InputMaybe<Scalars['Json']>;
2895
+ };
2896
+ export type QueryCountCheckInsArgs = {
2897
+ filter?: InputMaybe<Scalars['Json']>;
2898
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2899
+ limit?: InputMaybe<Scalars['Int']>;
2900
+ logs?: InputMaybe<Array<Scalars['String']>>;
2901
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2902
+ page?: InputMaybe<Scalars['Int']>;
2903
+ search?: InputMaybe<Scalars['String']>;
2904
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2905
+ sort?: InputMaybe<Scalars['Json']>;
2906
+ };
2907
+ export type QueryCountCitiesArgs = {
2908
+ filter?: InputMaybe<Scalars['Json']>;
2909
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2910
+ limit?: InputMaybe<Scalars['Int']>;
2911
+ logs?: InputMaybe<Array<Scalars['String']>>;
2912
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2913
+ page?: InputMaybe<Scalars['Int']>;
2914
+ search?: InputMaybe<Scalars['String']>;
2915
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2916
+ sort?: InputMaybe<Scalars['Json']>;
2917
+ };
2918
+ export type QueryCountConfigsArgs = {
2919
+ filter?: InputMaybe<Scalars['Json']>;
2920
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2921
+ limit?: InputMaybe<Scalars['Int']>;
2922
+ logs?: InputMaybe<Array<Scalars['String']>>;
2923
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2924
+ page?: InputMaybe<Scalars['Int']>;
2925
+ search?: InputMaybe<Scalars['String']>;
2926
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2927
+ sort?: InputMaybe<Scalars['Json']>;
2928
+ };
2929
+ export type QueryCountCountriesArgs = {
2930
+ filter?: InputMaybe<Scalars['Json']>;
2931
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2932
+ limit?: InputMaybe<Scalars['Int']>;
2933
+ logs?: InputMaybe<Array<Scalars['String']>>;
2934
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2935
+ page?: InputMaybe<Scalars['Int']>;
2936
+ search?: InputMaybe<Scalars['String']>;
2937
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2938
+ sort?: InputMaybe<Scalars['Json']>;
2939
+ };
2940
+ export type QueryCountOrganizationsArgs = {
2941
+ filter?: InputMaybe<Scalars['Json']>;
2942
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2943
+ limit?: InputMaybe<Scalars['Int']>;
2944
+ logs?: InputMaybe<Array<Scalars['String']>>;
2945
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2946
+ page?: InputMaybe<Scalars['Int']>;
2947
+ search?: InputMaybe<Scalars['String']>;
2948
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2949
+ sort?: InputMaybe<Scalars['Json']>;
2950
+ };
2951
+ export type QueryCountProvincesArgs = {
2952
+ filter?: InputMaybe<Scalars['Json']>;
2953
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2954
+ limit?: InputMaybe<Scalars['Int']>;
2955
+ logs?: InputMaybe<Array<Scalars['String']>>;
2956
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2957
+ page?: InputMaybe<Scalars['Int']>;
2958
+ search?: InputMaybe<Scalars['String']>;
2959
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2960
+ sort?: InputMaybe<Scalars['Json']>;
2961
+ };
2962
+ export type QueryCountRegionsArgs = {
2963
+ filter?: InputMaybe<Scalars['Json']>;
2964
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2965
+ limit?: InputMaybe<Scalars['Int']>;
2966
+ logs?: InputMaybe<Array<Scalars['String']>>;
2967
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2968
+ page?: InputMaybe<Scalars['Int']>;
2969
+ search?: InputMaybe<Scalars['String']>;
2970
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2971
+ sort?: InputMaybe<Scalars['Json']>;
2972
+ };
2973
+ export type QueryCountRolesArgs = {
2974
+ filter?: InputMaybe<Scalars['Json']>;
2975
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2976
+ limit?: InputMaybe<Scalars['Int']>;
2977
+ logs?: InputMaybe<Array<Scalars['String']>>;
2978
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2979
+ page?: InputMaybe<Scalars['Int']>;
2980
+ search?: InputMaybe<Scalars['String']>;
2981
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2982
+ sort?: InputMaybe<Scalars['Json']>;
2983
+ };
2984
+ export type QueryCountRoomsArgs = {
2985
+ filter?: InputMaybe<Scalars['Json']>;
2986
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2987
+ limit?: InputMaybe<Scalars['Int']>;
2988
+ logs?: InputMaybe<Array<Scalars['String']>>;
2989
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
2990
+ page?: InputMaybe<Scalars['Int']>;
2991
+ search?: InputMaybe<Scalars['String']>;
2992
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
2993
+ sort?: InputMaybe<Scalars['Json']>;
2994
+ };
2995
+ export type QueryCountServicesArgs = {
2996
+ filter?: InputMaybe<Scalars['Json']>;
2997
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
2998
+ limit?: InputMaybe<Scalars['Int']>;
2999
+ logs?: InputMaybe<Array<Scalars['String']>>;
3000
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
3001
+ page?: InputMaybe<Scalars['Int']>;
3002
+ search?: InputMaybe<Scalars['String']>;
3003
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3004
+ sort?: InputMaybe<Scalars['Json']>;
3005
+ };
3006
+ export type QueryCountStaffsArgs = {
3007
+ filter?: InputMaybe<Scalars['Json']>;
3008
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
3009
+ limit?: InputMaybe<Scalars['Int']>;
3010
+ logs?: InputMaybe<Array<Scalars['String']>>;
3011
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
3012
+ page?: InputMaybe<Scalars['Int']>;
3013
+ search?: InputMaybe<Scalars['String']>;
3014
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3015
+ sort?: InputMaybe<Scalars['Json']>;
3016
+ };
3017
+ export type QueryCountUnitsArgs = {
3018
+ filter?: InputMaybe<Scalars['Json']>;
3019
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
3020
+ limit?: InputMaybe<Scalars['Int']>;
3021
+ logs?: InputMaybe<Array<Scalars['String']>>;
3022
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
3023
+ page?: InputMaybe<Scalars['Int']>;
3024
+ search?: InputMaybe<Scalars['String']>;
3025
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3026
+ sort?: InputMaybe<Scalars['Json']>;
3027
+ };
3028
+ export type QueryCountUsersArgs = {
3029
+ filter?: InputMaybe<Scalars['Json']>;
3030
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
3031
+ limit?: InputMaybe<Scalars['Int']>;
3032
+ logs?: InputMaybe<Array<Scalars['String']>>;
3033
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
3034
+ page?: InputMaybe<Scalars['Int']>;
3035
+ search?: InputMaybe<Scalars['String']>;
3036
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3037
+ sort?: InputMaybe<Scalars['Json']>;
3038
+ };
3039
+ export type QueryCountriesArgs = {
3040
+ filter?: InputMaybe<Scalars['Json']>;
3041
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
3042
+ limit?: InputMaybe<Scalars['Int']>;
3043
+ logs?: InputMaybe<Array<Scalars['String']>>;
3044
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
3045
+ page?: InputMaybe<Scalars['Int']>;
3046
+ search?: InputMaybe<Scalars['String']>;
3047
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3048
+ sort?: InputMaybe<Scalars['Json']>;
3049
+ };
3050
+ export type QueryCountryArgs = {
3051
+ id: Scalars['ObjectId'];
3052
+ logs?: InputMaybe<Array<Scalars['String']>>;
3053
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3054
+ };
3055
+ export type QueryOrganizationArgs = {
3056
+ id: Scalars['ObjectId'];
3057
+ logs?: InputMaybe<Array<Scalars['String']>>;
3058
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3059
+ };
3060
+ export type QueryOrganizationsArgs = {
3061
+ filter?: InputMaybe<Scalars['Json']>;
3062
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
3063
+ limit?: InputMaybe<Scalars['Int']>;
3064
+ logs?: InputMaybe<Array<Scalars['String']>>;
3065
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
3066
+ page?: InputMaybe<Scalars['Int']>;
3067
+ search?: InputMaybe<Scalars['String']>;
3068
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3069
+ sort?: InputMaybe<Scalars['Json']>;
3070
+ };
3071
+ export type QueryProvinceArgs = {
3072
+ id: Scalars['ObjectId'];
3073
+ logs?: InputMaybe<Array<Scalars['String']>>;
3074
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3075
+ };
3076
+ export type QueryProvincesArgs = {
3077
+ filter?: InputMaybe<Scalars['Json']>;
3078
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
3079
+ limit?: InputMaybe<Scalars['Int']>;
3080
+ logs?: InputMaybe<Array<Scalars['String']>>;
3081
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
3082
+ page?: InputMaybe<Scalars['Int']>;
3083
+ search?: InputMaybe<Scalars['String']>;
3084
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3085
+ sort?: InputMaybe<Scalars['Json']>;
3086
+ };
3087
+ export type QueryRegionArgs = {
3088
+ id: Scalars['ObjectId'];
3089
+ logs?: InputMaybe<Array<Scalars['String']>>;
3090
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3091
+ };
3092
+ export type QueryRegionsArgs = {
3093
+ filter?: InputMaybe<Scalars['Json']>;
3094
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
3095
+ limit?: InputMaybe<Scalars['Int']>;
3096
+ logs?: InputMaybe<Array<Scalars['String']>>;
3097
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
3098
+ page?: InputMaybe<Scalars['Int']>;
3099
+ search?: InputMaybe<Scalars['String']>;
3100
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3101
+ sort?: InputMaybe<Scalars['Json']>;
3102
+ };
3103
+ export type QueryRoleArgs = {
3104
+ id: Scalars['ObjectId'];
3105
+ logs?: InputMaybe<Array<Scalars['String']>>;
3106
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3107
+ };
3108
+ export type QueryRolesArgs = {
3109
+ filter?: InputMaybe<Scalars['Json']>;
3110
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
3111
+ limit?: InputMaybe<Scalars['Int']>;
3112
+ logs?: InputMaybe<Array<Scalars['String']>>;
3113
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
3114
+ page?: InputMaybe<Scalars['Int']>;
3115
+ search?: InputMaybe<Scalars['String']>;
3116
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3117
+ sort?: InputMaybe<Scalars['Json']>;
3118
+ };
3119
+ export type QueryRoomArgs = {
3120
+ id: Scalars['ObjectId'];
3121
+ logs?: InputMaybe<Array<Scalars['String']>>;
3122
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3123
+ };
3124
+ export type QueryRoomsArgs = {
3125
+ filter?: InputMaybe<Scalars['Json']>;
3126
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
3127
+ limit?: InputMaybe<Scalars['Int']>;
3128
+ logs?: InputMaybe<Array<Scalars['String']>>;
3129
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
3130
+ page?: InputMaybe<Scalars['Int']>;
3131
+ search?: InputMaybe<Scalars['String']>;
3132
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3133
+ sort?: InputMaybe<Scalars['Json']>;
3134
+ };
3135
+ export type QueryServiceArgs = {
3136
+ id: Scalars['ObjectId'];
3137
+ logs?: InputMaybe<Array<Scalars['String']>>;
3138
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3139
+ };
3140
+ export type QueryServicesArgs = {
3141
+ filter?: InputMaybe<Scalars['Json']>;
3142
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
3143
+ limit?: InputMaybe<Scalars['Int']>;
3144
+ logs?: InputMaybe<Array<Scalars['String']>>;
3145
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
3146
+ page?: InputMaybe<Scalars['Int']>;
3147
+ search?: InputMaybe<Scalars['String']>;
3148
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3149
+ sort?: InputMaybe<Scalars['Json']>;
3150
+ };
3151
+ export type QueryStaffArgs = {
3152
+ id: Scalars['ObjectId'];
3153
+ logs?: InputMaybe<Array<Scalars['String']>>;
3154
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3155
+ };
3156
+ export type QueryStaffsArgs = {
3157
+ filter?: InputMaybe<Scalars['Json']>;
3158
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
3159
+ limit?: InputMaybe<Scalars['Int']>;
3160
+ logs?: InputMaybe<Array<Scalars['String']>>;
3161
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
3162
+ page?: InputMaybe<Scalars['Int']>;
3163
+ search?: InputMaybe<Scalars['String']>;
3164
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3165
+ sort?: InputMaybe<Scalars['Json']>;
3166
+ };
3167
+ export type QueryUnitArgs = {
3168
+ id: Scalars['ObjectId'];
3169
+ logs?: InputMaybe<Array<Scalars['String']>>;
3170
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3171
+ };
3172
+ export type QueryUnitsArgs = {
3173
+ filter?: InputMaybe<Scalars['Json']>;
3174
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
3175
+ limit?: InputMaybe<Scalars['Int']>;
3176
+ logs?: InputMaybe<Array<Scalars['String']>>;
3177
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
3178
+ page?: InputMaybe<Scalars['Int']>;
3179
+ search?: InputMaybe<Scalars['String']>;
3180
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3181
+ sort?: InputMaybe<Scalars['Json']>;
3182
+ };
3183
+ export type QueryUserArgs = {
3184
+ id: Scalars['ObjectId'];
3185
+ logs?: InputMaybe<Array<Scalars['String']>>;
3186
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3187
+ };
3188
+ export type QueryUsersArgs = {
3189
+ filter?: InputMaybe<Scalars['Json']>;
3190
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
3191
+ limit?: InputMaybe<Scalars['Int']>;
3192
+ logs?: InputMaybe<Array<Scalars['String']>>;
3193
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
3194
+ page?: InputMaybe<Scalars['Int']>;
3195
+ search?: InputMaybe<Scalars['String']>;
3196
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3197
+ sort?: InputMaybe<Scalars['Json']>;
3198
+ };
3199
+ export type Region = {
3200
+ /** Kode */
3201
+ code?: Maybe<Scalars['String']>;
3202
+ /** When this daerah was created. */
3203
+ createdAt?: Maybe<Scalars['Date']>;
3204
+ /** Relation ID of Created By. */
3205
+ createdBy?: Maybe<Scalars['ObjectId']>;
3206
+ /** Who created this daerah. */
3207
+ creator?: Maybe<User>;
3208
+ /** When this daerah was deleted. */
3209
+ deletedAt?: Maybe<Scalars['Date']>;
3210
+ /** Relation ID of Deleted By. */
3211
+ deletedBy?: Maybe<Scalars['ObjectId']>;
3212
+ /** Who deleted this daerah. */
3213
+ deleter?: Maybe<User>;
3214
+ /** Daerah */
3215
+ display?: Maybe<Scalars['String']>;
3216
+ /** Daerah */
3217
+ flag?: Maybe<Scalars['String']>;
3218
+ /** Object ID. */
3219
+ id?: Maybe<Scalars['ID']>;
3220
+ /** Nama */
3221
+ name?: Maybe<Scalars['String']>;
3222
+ /** When this daerah was restored. */
3223
+ restoredAt?: Maybe<Scalars['Date']>;
3224
+ /** Relation ID of Restored By. */
3225
+ restoredBy?: Maybe<Scalars['ObjectId']>;
3226
+ /** Who last restored this daerah. */
3227
+ restorer?: Maybe<User>;
3228
+ /** When this daerah was last synced. */
3229
+ syncedAt?: Maybe<Scalars['Date']>;
3230
+ /** When this daerah was last updated. */
3231
+ updatedAt?: Maybe<Scalars['Date']>;
3232
+ /** Relation ID of Updated By. */
3233
+ updatedBy?: Maybe<Scalars['ObjectId']>;
3234
+ /** Who last updated this daerah. */
3235
+ updater?: Maybe<User>;
3236
+ };
3237
+ /** neu:tempat:region collection response. */
3238
+ export type RegionCollectionResponse = {
3239
+ /** Response info. */
3240
+ info?: Maybe<Info>;
3241
+ /** Collection of neu:tempat:region items. */
3242
+ items?: Maybe<Array<Region>>;
3243
+ };
3244
+ export type RegionInput = {
3245
+ /** Kode */
3246
+ code?: InputMaybe<Scalars['String']>;
3247
+ /** When this daerah was created. */
3248
+ createdAt?: InputMaybe<Scalars['Date']>;
3249
+ /** Relation ID of Created By. */
3250
+ createdBy?: InputMaybe<Scalars['ObjectId']>;
3251
+ /** When this daerah was deleted. */
3252
+ deletedAt?: InputMaybe<Scalars['Date']>;
3253
+ /** Relation ID of Deleted By. */
3254
+ deletedBy?: InputMaybe<Scalars['ObjectId']>;
3255
+ /** Daerah */
3256
+ display?: InputMaybe<Scalars['String']>;
3257
+ /** Daerah */
3258
+ flag?: InputMaybe<Scalars['String']>;
3259
+ /** Nama */
3260
+ name?: InputMaybe<Scalars['String']>;
3261
+ /** When this daerah was restored. */
3262
+ restoredAt?: InputMaybe<Scalars['Date']>;
3263
+ /** Relation ID of Restored By. */
3264
+ restoredBy?: InputMaybe<Scalars['ObjectId']>;
3265
+ /** When this daerah was last synced. */
3266
+ syncedAt?: InputMaybe<Scalars['Date']>;
3267
+ /** When this daerah was last updated. */
3268
+ updatedAt?: InputMaybe<Scalars['Date']>;
3269
+ /** Relation ID of Updated By. */
3270
+ updatedBy?: InputMaybe<Scalars['ObjectId']>;
3271
+ };
3272
+ /** Single neu:tempat:region response. */
3273
+ export type RegionSingleResponse = {
3274
+ /** Response info. */
3275
+ info?: Maybe<Info>;
3276
+ /** Single neu:tempat:region item. */
3277
+ item?: Maybe<Region>;
3278
+ };
3279
+ export type Role = {
3280
+ /** When this role was created. */
3281
+ createdAt?: Maybe<Scalars['Date']>;
3282
+ /** Relation ID of Created By. */
3283
+ createdBy?: Maybe<Scalars['ObjectId']>;
3284
+ /** Who created this role. */
3285
+ creator?: Maybe<User>;
3286
+ /** When this role was deleted. */
3287
+ deletedAt?: Maybe<Scalars['Date']>;
3288
+ /** Relation ID of Deleted By. */
3289
+ deletedBy?: Maybe<Scalars['ObjectId']>;
3290
+ /** Who deleted this role. */
3291
+ deleter?: Maybe<User>;
3292
+ /** Role description. */
3293
+ description?: Maybe<Scalars['String']>;
3294
+ /** Role */
3295
+ display?: Maybe<Scalars['String']>;
3296
+ /** Role */
3297
+ flag?: Maybe<Scalars['String']>;
3298
+ /** Role handle, for system. */
3299
+ handle?: Maybe<Scalars['String']>;
3300
+ /** Object ID. */
3301
+ id?: Maybe<Scalars['ID']>;
3302
+ /** Role name. */
3303
+ name?: Maybe<Scalars['String']>;
3304
+ /** Organization of this role. */
3305
+ organization?: Maybe<Organization>;
3306
+ /** Relation ID of Organization. */
3307
+ organizationId?: Maybe<Scalars['ObjectId']>;
3308
+ /** Relation IDs of Policies. */
3309
+ policyIds?: Maybe<Array<Scalars['ObjectId']>>;
3310
+ /** When this role was restored. */
3311
+ restoredAt?: Maybe<Scalars['Date']>;
3312
+ /** Relation ID of Restored By. */
3313
+ restoredBy?: Maybe<Scalars['ObjectId']>;
3314
+ /** Who last restored this role. */
3315
+ restorer?: Maybe<User>;
3316
+ /** When this role was last synced. */
3317
+ syncedAt?: Maybe<Scalars['Date']>;
3318
+ /** When this role was last updated. */
3319
+ updatedAt?: Maybe<Scalars['Date']>;
3320
+ /** Relation ID of Updated By. */
3321
+ updatedBy?: Maybe<Scalars['ObjectId']>;
3322
+ /** Who last updated this role. */
3323
+ updater?: Maybe<User>;
3324
+ /** Inversed relation from Roles field of neo:identitas:user model. */
3325
+ users?: Maybe<Array<User>>;
3326
+ };
3327
+ export type RoleUsersArgs = {
3328
+ filter?: InputMaybe<Scalars['Json']>;
3329
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
3330
+ limit?: InputMaybe<Scalars['Int']>;
3331
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
3332
+ page?: InputMaybe<Scalars['Int']>;
3333
+ search?: InputMaybe<Scalars['String']>;
3334
+ sort?: InputMaybe<Scalars['Json']>;
3335
+ };
3336
+ /** neo:identitas:role collection response. */
3337
+ export type RoleCollectionResponse = {
3338
+ /** Response info. */
3339
+ info?: Maybe<Info>;
3340
+ /** Collection of neo:identitas:role items. */
3341
+ items?: Maybe<Array<Role>>;
3342
+ };
3343
+ export type RoleInput = {
3344
+ /** When this role was created. */
3345
+ createdAt?: InputMaybe<Scalars['Date']>;
3346
+ /** Relation ID of Created By. */
3347
+ createdBy?: InputMaybe<Scalars['ObjectId']>;
3348
+ /** When this role was deleted. */
3349
+ deletedAt?: InputMaybe<Scalars['Date']>;
3350
+ /** Relation ID of Deleted By. */
3351
+ deletedBy?: InputMaybe<Scalars['ObjectId']>;
3352
+ /** Role description. */
3353
+ description?: InputMaybe<Scalars['String']>;
3354
+ /** Role */
3355
+ display?: InputMaybe<Scalars['String']>;
3356
+ /** Role */
3357
+ flag?: InputMaybe<Scalars['String']>;
3358
+ /** Role handle, for system. */
3359
+ handle?: InputMaybe<Scalars['String']>;
3360
+ /** Role name. */
3361
+ name?: InputMaybe<Scalars['String']>;
3362
+ /** Relation ID of Organization. */
3363
+ organizationId?: InputMaybe<Scalars['ObjectId']>;
3364
+ /** Relation IDs of Policies. */
3365
+ policyIds?: InputMaybe<Array<Scalars['ID']>>;
3366
+ /** When this role was restored. */
3367
+ restoredAt?: InputMaybe<Scalars['Date']>;
3368
+ /** Relation ID of Restored By. */
3369
+ restoredBy?: InputMaybe<Scalars['ObjectId']>;
3370
+ /** When this role was last synced. */
3371
+ syncedAt?: InputMaybe<Scalars['Date']>;
3372
+ /** When this role was last updated. */
3373
+ updatedAt?: InputMaybe<Scalars['Date']>;
3374
+ /** Relation ID of Updated By. */
3375
+ updatedBy?: InputMaybe<Scalars['ObjectId']>;
3376
+ };
3377
+ /** Single neo:identitas:role response. */
3378
+ export type RoleSingleResponse = {
3379
+ /** Response info. */
3380
+ info?: Maybe<Info>;
3381
+ /** Single neo:identitas:role item. */
3382
+ item?: Maybe<Role>;
3383
+ };
3384
+ export type Room = {
3385
+ /** Relation IDs of Cabang. */
3386
+ branchIds?: Maybe<Array<Scalars['ObjectId']>>;
3387
+ /** Cabang yang menggunakan ruangan. */
3388
+ branches?: Maybe<Array<Branch>>;
3389
+ /** Bangunan dimana ruangan berada. */
3390
+ building?: Maybe<Building>;
3391
+ /** Relation ID of Bangunan. */
3392
+ buildingId?: Maybe<Scalars['ObjectId']>;
3393
+ /** Kapasitas ruangan. */
3394
+ capacity?: Maybe<Scalars['Int']>;
3395
+ /** Kode ruangan. */
3396
+ code?: Maybe<Scalars['String']>;
3397
+ /** When this ruangan was created. */
3398
+ createdAt?: Maybe<Scalars['Date']>;
3399
+ /** Relation ID of Created By. */
3400
+ createdBy?: Maybe<Scalars['ObjectId']>;
3401
+ /** Who created this ruangan. */
3402
+ creator?: Maybe<User>;
3403
+ /** When this ruangan was deleted. */
3404
+ deletedAt?: Maybe<Scalars['Date']>;
3405
+ /** Relation ID of Deleted By. */
3406
+ deletedBy?: Maybe<Scalars['ObjectId']>;
3407
+ /** Who deleted this ruangan. */
3408
+ deleter?: Maybe<User>;
3409
+ /** Ruangan */
3410
+ display?: Maybe<Scalars['String']>;
3411
+ /** Ruangan */
3412
+ flag?: Maybe<Scalars['String']>;
3413
+ /** Object ID. */
3414
+ id?: Maybe<Scalars['ID']>;
3415
+ /** Nama ruangan. */
3416
+ name?: Maybe<Scalars['String']>;
3417
+ /** When this ruangan was restored. */
3418
+ restoredAt?: Maybe<Scalars['Date']>;
3419
+ /** Relation ID of Restored By. */
3420
+ restoredBy?: Maybe<Scalars['ObjectId']>;
3421
+ /** Who last restored this ruangan. */
3422
+ restorer?: Maybe<User>;
3423
+ /** When this ruangan was last synced. */
3424
+ syncedAt?: Maybe<Scalars['Date']>;
3425
+ /** When this ruangan was last updated. */
3426
+ updatedAt?: Maybe<Scalars['Date']>;
3427
+ /** Relation ID of Updated By. */
3428
+ updatedBy?: Maybe<Scalars['ObjectId']>;
3429
+ /** Who last updated this ruangan. */
3430
+ updater?: Maybe<User>;
3431
+ };
3432
+ export type RoomBranchesArgs = {
3433
+ filter?: InputMaybe<Scalars['Json']>;
3434
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
3435
+ limit?: InputMaybe<Scalars['Int']>;
3436
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
3437
+ page?: InputMaybe<Scalars['Int']>;
3438
+ search?: InputMaybe<Scalars['String']>;
3439
+ sort?: InputMaybe<Scalars['Json']>;
3440
+ };
3441
+ /** neu:tempat:room collection response. */
3442
+ export type RoomCollectionResponse = {
3443
+ /** Response info. */
3444
+ info?: Maybe<Info>;
3445
+ /** Collection of neu:tempat:room items. */
3446
+ items?: Maybe<Array<Room>>;
3447
+ };
3448
+ export type RoomInput = {
3449
+ /** Relation IDs of Cabang. */
3450
+ branchIds?: InputMaybe<Array<Scalars['ID']>>;
3451
+ /** Relation ID of Bangunan. */
3452
+ buildingId?: InputMaybe<Scalars['ObjectId']>;
3453
+ /** Kapasitas ruangan. */
3454
+ capacity?: InputMaybe<Scalars['Int']>;
3455
+ /** Kode ruangan. */
3456
+ code?: InputMaybe<Scalars['String']>;
3457
+ /** When this ruangan was created. */
3458
+ createdAt?: InputMaybe<Scalars['Date']>;
3459
+ /** Relation ID of Created By. */
3460
+ createdBy?: InputMaybe<Scalars['ObjectId']>;
3461
+ /** When this ruangan was deleted. */
3462
+ deletedAt?: InputMaybe<Scalars['Date']>;
3463
+ /** Relation ID of Deleted By. */
3464
+ deletedBy?: InputMaybe<Scalars['ObjectId']>;
3465
+ /** Ruangan */
3466
+ display?: InputMaybe<Scalars['String']>;
3467
+ /** Ruangan */
3468
+ flag?: InputMaybe<Scalars['String']>;
3469
+ /** Nama ruangan. */
3470
+ name?: InputMaybe<Scalars['String']>;
3471
+ /** When this ruangan was restored. */
3472
+ restoredAt?: InputMaybe<Scalars['Date']>;
3473
+ /** Relation ID of Restored By. */
3474
+ restoredBy?: InputMaybe<Scalars['ObjectId']>;
3475
+ /** When this ruangan was last synced. */
3476
+ syncedAt?: InputMaybe<Scalars['Date']>;
3477
+ /** When this ruangan was last updated. */
3478
+ updatedAt?: InputMaybe<Scalars['Date']>;
3479
+ /** Relation ID of Updated By. */
3480
+ updatedBy?: InputMaybe<Scalars['ObjectId']>;
3481
+ };
3482
+ /** Single neu:tempat:room response. */
3483
+ export type RoomSingleResponse = {
3484
+ /** Response info. */
3485
+ info?: Maybe<Info>;
3486
+ /** Single neu:tempat:room item. */
3487
+ item?: Maybe<Room>;
3488
+ };
3489
+ export type Service = {
3490
+ /** Parent application. */
3491
+ application?: Maybe<Application>;
3492
+ /** Relation ID of Application. */
3493
+ applicationId?: Maybe<Scalars['ObjectId']>;
3494
+ /** Service code. */
3495
+ code?: Maybe<Scalars['String']>;
3496
+ /** Inversed relation from Service field of neo:kokpit:config model. */
3497
+ configs?: Maybe<Array<Config>>;
3498
+ /** When this service was created. */
3499
+ createdAt?: Maybe<Scalars['Date']>;
3500
+ /** Relation ID of Created By. */
3501
+ createdBy?: Maybe<Scalars['ObjectId']>;
3502
+ /** Who created this service. */
3503
+ creator?: Maybe<User>;
3504
+ /** When this service was deleted. */
3505
+ deletedAt?: Maybe<Scalars['Date']>;
3506
+ /** Relation ID of Deleted By. */
3507
+ deletedBy?: Maybe<Scalars['ObjectId']>;
3508
+ /** Who deleted this service. */
3509
+ deleter?: Maybe<User>;
3510
+ /** Service description. */
3511
+ description?: Maybe<Scalars['String']>;
3512
+ /** Service detail. */
3513
+ detail?: Maybe<Scalars['String']>;
3514
+ /** Service */
3515
+ display?: Maybe<Scalars['String']>;
3516
+ /** Service */
3517
+ flag?: Maybe<Scalars['String']>;
3518
+ /** Object ID. */
3519
+ id?: Maybe<Scalars['ID']>;
3520
+ /** Service name. */
3521
+ name?: Maybe<Scalars['String']>;
3522
+ /** When this service was restored. */
3523
+ restoredAt?: Maybe<Scalars['Date']>;
3524
+ /** Relation ID of Restored By. */
3525
+ restoredBy?: Maybe<Scalars['ObjectId']>;
3526
+ /** Who last restored this service. */
3527
+ restorer?: Maybe<User>;
3528
+ /** Service status. */
3529
+ status?: Maybe<Scalars['String']>;
3530
+ /** When this service was last synced. */
3531
+ syncedAt?: Maybe<Scalars['Date']>;
3532
+ /** Service type. */
3533
+ type?: Maybe<Scalars['String']>;
3534
+ /** When this service was last updated. */
3535
+ updatedAt?: Maybe<Scalars['Date']>;
3536
+ /** Relation ID of Updated By. */
3537
+ updatedBy?: Maybe<Scalars['ObjectId']>;
3538
+ /** Who last updated this service. */
3539
+ updater?: Maybe<User>;
3540
+ };
3541
+ export type ServiceConfigsArgs = {
3542
+ filter?: InputMaybe<Scalars['Json']>;
3543
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
3544
+ limit?: InputMaybe<Scalars['Int']>;
3545
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
3546
+ page?: InputMaybe<Scalars['Int']>;
3547
+ search?: InputMaybe<Scalars['String']>;
3548
+ sort?: InputMaybe<Scalars['Json']>;
3549
+ };
3550
+ /** neo:kokpit:service collection response. */
3551
+ export type ServiceCollectionResponse = {
3552
+ /** Response info. */
3553
+ info?: Maybe<Info>;
3554
+ /** Collection of neo:kokpit:service items. */
3555
+ items?: Maybe<Array<Service>>;
3556
+ };
3557
+ export type ServiceInput = {
3558
+ /** Relation ID of Application. */
3559
+ applicationId?: InputMaybe<Scalars['ObjectId']>;
3560
+ /** Service code. */
3561
+ code?: InputMaybe<Scalars['String']>;
3562
+ /** When this service was created. */
3563
+ createdAt?: InputMaybe<Scalars['Date']>;
3564
+ /** Relation ID of Created By. */
3565
+ createdBy?: InputMaybe<Scalars['ObjectId']>;
3566
+ /** When this service was deleted. */
3567
+ deletedAt?: InputMaybe<Scalars['Date']>;
3568
+ /** Relation ID of Deleted By. */
3569
+ deletedBy?: InputMaybe<Scalars['ObjectId']>;
3570
+ /** Service description. */
3571
+ description?: InputMaybe<Scalars['String']>;
3572
+ /** Service detail. */
3573
+ detail?: InputMaybe<Scalars['String']>;
3574
+ /** Service */
3575
+ display?: InputMaybe<Scalars['String']>;
3576
+ /** Service */
3577
+ flag?: InputMaybe<Scalars['String']>;
3578
+ /** Service name. */
3579
+ name?: InputMaybe<Scalars['String']>;
3580
+ /** When this service was restored. */
3581
+ restoredAt?: InputMaybe<Scalars['Date']>;
3582
+ /** Relation ID of Restored By. */
3583
+ restoredBy?: InputMaybe<Scalars['ObjectId']>;
3584
+ /** Service status. */
3585
+ status?: InputMaybe<Scalars['String']>;
3586
+ /** When this service was last synced. */
3587
+ syncedAt?: InputMaybe<Scalars['Date']>;
3588
+ /** Service type. */
3589
+ type?: InputMaybe<Scalars['String']>;
3590
+ /** When this service was last updated. */
3591
+ updatedAt?: InputMaybe<Scalars['Date']>;
3592
+ /** Relation ID of Updated By. */
3593
+ updatedBy?: InputMaybe<Scalars['ObjectId']>;
3594
+ };
3595
+ /** Single neo:kokpit:service response. */
3596
+ export type ServiceSingleResponse = {
3597
+ /** Response info. */
3598
+ info?: Maybe<Info>;
3599
+ /** Single neo:kokpit:service item. */
3600
+ item?: Maybe<Service>;
3601
+ };
3602
+ /** Sort direction. */
3603
+ export type SortDirection =
3604
+ /** Alias for ascending sort direction. */
3605
+ 'asc'
3606
+ /** Ascending sort direction. */
3607
+ | 'ascending'
3608
+ /** Alias for descending sort direction. */
3609
+ | 'desc'
3610
+ /** Descending sort direction. */
3611
+ | 'descending';
3612
+ /** Sort item input. */
3613
+ export type SortItem = {
3614
+ /** Sort direction. */
3615
+ direction?: SortDirection;
3616
+ /** Field handle. */
3617
+ handle: Scalars['String'];
3618
+ };
3619
+ export type Staff = {
3620
+ /** Tanggal lahir karyawan. */
3621
+ birthDate?: Maybe<Scalars['Date']>;
3622
+ /** Tempat lahir karyawan. */
3623
+ birthPlace?: Maybe<Scalars['String']>;
3624
+ /** Cabang utama karyawan. */
3625
+ branch?: Maybe<Branch>;
3626
+ /** Relation ID of Cabang Utama. */
3627
+ branchId?: Maybe<Scalars['ObjectId']>;
3628
+ /** Relation IDs of Cabang Penempatan. */
3629
+ branchIds?: Maybe<Array<Scalars['ObjectId']>>;
3630
+ /** Cabang penempatan karyawan. */
3631
+ branches?: Maybe<Array<Branch>>;
3632
+ /** Inversed relation from Karyawan field of neu:tempat:checkIn model. */
3633
+ checkIns?: Maybe<Array<CheckIn>>;
3634
+ /** When this karyawan was created. */
3635
+ createdAt?: Maybe<Scalars['Date']>;
3636
+ /** Relation ID of Created By. */
3637
+ createdBy?: Maybe<Scalars['ObjectId']>;
3638
+ /** Who created this karyawan. */
3639
+ creator?: Maybe<User>;
3640
+ /** When this karyawan was deleted. */
3641
+ deletedAt?: Maybe<Scalars['Date']>;
3642
+ /** Relation ID of Deleted By. */
3643
+ deletedBy?: Maybe<Scalars['ObjectId']>;
3644
+ /** Who deleted this karyawan. */
3645
+ deleter?: Maybe<User>;
3646
+ /** Karyawan */
3647
+ display?: Maybe<Scalars['String']>;
3648
+ /** Karyawan */
3649
+ flag?: Maybe<Scalars['String']>;
3650
+ /** Object ID. */
3651
+ id?: Maybe<Scalars['ID']>;
3652
+ /** Foto karyawan. */
3653
+ image?: Maybe<Scalars['Json']>;
3654
+ /** Nama karyawan. */
3655
+ name?: Maybe<Scalars['String']>;
3656
+ /** Nomor induk karyawan. */
3657
+ nik?: Maybe<Scalars['String']>;
3658
+ /** Catatan terkait karyawan. */
3659
+ note?: Maybe<Scalars['String']>;
3660
+ /** When this karyawan was restored. */
3661
+ restoredAt?: Maybe<Scalars['Date']>;
3662
+ /** Relation ID of Restored By. */
3663
+ restoredBy?: Maybe<Scalars['ObjectId']>;
3664
+ /** Who last restored this karyawan. */
3665
+ restorer?: Maybe<User>;
3666
+ /** When this karyawan was last synced. */
3667
+ syncedAt?: Maybe<Scalars['Date']>;
3668
+ /** When this karyawan was last updated. */
3669
+ updatedAt?: Maybe<Scalars['Date']>;
3670
+ /** Relation ID of Updated By. */
3671
+ updatedBy?: Maybe<Scalars['ObjectId']>;
3672
+ /** Who last updated this karyawan. */
3673
+ updater?: Maybe<User>;
3674
+ /** Akun Identitas karyawan. */
3675
+ user?: Maybe<User>;
3676
+ /** Relation ID of Pengguna. */
3677
+ userId?: Maybe<Scalars['ObjectId']>;
3678
+ };
3679
+ export type StaffBranchesArgs = {
3680
+ filter?: InputMaybe<Scalars['Json']>;
3681
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
3682
+ limit?: InputMaybe<Scalars['Int']>;
3683
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
3684
+ page?: InputMaybe<Scalars['Int']>;
3685
+ search?: InputMaybe<Scalars['String']>;
3686
+ sort?: InputMaybe<Scalars['Json']>;
3687
+ };
3688
+ export type StaffCheckInsArgs = {
3689
+ filter?: InputMaybe<Scalars['Json']>;
3690
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
3691
+ limit?: InputMaybe<Scalars['Int']>;
3692
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
3693
+ page?: InputMaybe<Scalars['Int']>;
3694
+ search?: InputMaybe<Scalars['String']>;
3695
+ sort?: InputMaybe<Scalars['Json']>;
3696
+ };
3697
+ /** neu:personalia:staff collection response. */
3698
+ export type StaffCollectionResponse = {
3699
+ /** Response info. */
3700
+ info?: Maybe<Info>;
3701
+ /** Collection of neu:personalia:staff items. */
3702
+ items?: Maybe<Array<Staff>>;
3703
+ };
3704
+ export type StaffInput = {
3705
+ /** Tanggal lahir karyawan. */
3706
+ birthDate?: InputMaybe<Scalars['Date']>;
3707
+ /** Tempat lahir karyawan. */
3708
+ birthPlace?: InputMaybe<Scalars['String']>;
3709
+ /** Relation ID of Cabang Utama. */
3710
+ branchId?: InputMaybe<Scalars['ObjectId']>;
3711
+ /** Relation IDs of Cabang Penempatan. */
3712
+ branchIds?: InputMaybe<Array<Scalars['ID']>>;
3713
+ /** When this karyawan was created. */
3714
+ createdAt?: InputMaybe<Scalars['Date']>;
3715
+ /** Relation ID of Created By. */
3716
+ createdBy?: InputMaybe<Scalars['ObjectId']>;
3717
+ /** When this karyawan was deleted. */
3718
+ deletedAt?: InputMaybe<Scalars['Date']>;
3719
+ /** Relation ID of Deleted By. */
3720
+ deletedBy?: InputMaybe<Scalars['ObjectId']>;
3721
+ /** Karyawan */
3722
+ display?: InputMaybe<Scalars['String']>;
3723
+ /** Karyawan */
3724
+ flag?: InputMaybe<Scalars['String']>;
3725
+ /** Foto karyawan. */
3726
+ image?: InputMaybe<Scalars['Any']>;
3727
+ /** Nama karyawan. */
3728
+ name?: InputMaybe<Scalars['String']>;
3729
+ /** Nomor induk karyawan. */
3730
+ nik?: InputMaybe<Scalars['String']>;
3731
+ /** Catatan terkait karyawan. */
3732
+ note?: InputMaybe<Scalars['String']>;
3733
+ /** When this karyawan was restored. */
3734
+ restoredAt?: InputMaybe<Scalars['Date']>;
3735
+ /** Relation ID of Restored By. */
3736
+ restoredBy?: InputMaybe<Scalars['ObjectId']>;
3737
+ /** When this karyawan was last synced. */
3738
+ syncedAt?: InputMaybe<Scalars['Date']>;
3739
+ /** When this karyawan was last updated. */
3740
+ updatedAt?: InputMaybe<Scalars['Date']>;
3741
+ /** Relation ID of Updated By. */
3742
+ updatedBy?: InputMaybe<Scalars['ObjectId']>;
3743
+ /** Relation ID of Pengguna. */
3744
+ userId?: InputMaybe<Scalars['ObjectId']>;
3745
+ };
3746
+ /** Single neu:personalia:staff response. */
3747
+ export type StaffSingleResponse = {
3748
+ /** Response info. */
3749
+ info?: Maybe<Info>;
3750
+ /** Single neu:personalia:staff item. */
3751
+ item?: Maybe<Staff>;
3752
+ };
3753
+ export type Subscription = {
3754
+ /** One neo:kokpit:application item created. */
3755
+ applicationCreated?: Maybe<Application>;
3756
+ /** One neo:kokpit:application item deleted. */
3757
+ applicationDeleted?: Maybe<Application>;
3758
+ /** One neo:kokpit:application item updated. */
3759
+ applicationUpdated?: Maybe<Application>;
3760
+ /** One neu:tempat:area item created. */
3761
+ areaCreated?: Maybe<Area>;
3762
+ /** One neu:tempat:area item deleted. */
3763
+ areaDeleted?: Maybe<Area>;
3764
+ /** One neu:tempat:area item updated. */
3765
+ areaUpdated?: Maybe<Area>;
3766
+ /** One neu:tempat:branch item created. */
3767
+ branchCreated?: Maybe<Branch>;
3768
+ /** One neu:tempat:branch item deleted. */
3769
+ branchDeleted?: Maybe<Branch>;
3770
+ /** One neu:tempat:branch item updated. */
3771
+ branchUpdated?: Maybe<Branch>;
3772
+ /** One neu:tempat:brand item created. */
3773
+ brandCreated?: Maybe<Brand>;
3774
+ /** One neu:tempat:brand item deleted. */
3775
+ brandDeleted?: Maybe<Brand>;
3776
+ /** One neu:tempat:brand item updated. */
3777
+ brandUpdated?: Maybe<Brand>;
3778
+ /** One neu:tempat:building item created. */
3779
+ buildingCreated?: Maybe<Building>;
3780
+ /** One neu:tempat:building item deleted. */
3781
+ buildingDeleted?: Maybe<Building>;
3782
+ /** One neu:tempat:building item updated. */
3783
+ buildingUpdated?: Maybe<Building>;
3784
+ /** One neu:tempat:checkIn item created. */
3785
+ checkInCreated?: Maybe<CheckIn>;
3786
+ /** One neu:tempat:checkIn item deleted. */
3787
+ checkInDeleted?: Maybe<CheckIn>;
3788
+ /** One neu:tempat:checkIn item updated. */
3789
+ checkInUpdated?: Maybe<CheckIn>;
3790
+ /** One neo:tempat:city item created. */
3791
+ cityCreated?: Maybe<City>;
3792
+ /** One neo:tempat:city item deleted. */
3793
+ cityDeleted?: Maybe<City>;
3794
+ /** One neo:tempat:city item updated. */
3795
+ cityUpdated?: Maybe<City>;
3796
+ /** One neo:kokpit:config item created. */
3797
+ configCreated?: Maybe<Config>;
3798
+ /** One neo:kokpit:config item deleted. */
3799
+ configDeleted?: Maybe<Config>;
3800
+ /** One neo:kokpit:config item updated. */
3801
+ configUpdated?: Maybe<Config>;
3802
+ /** One neo:tempat:country item created. */
3803
+ countryCreated?: Maybe<Country>;
3804
+ /** One neo:tempat:country item deleted. */
3805
+ countryDeleted?: Maybe<Country>;
3806
+ /** One neo:tempat:country item updated. */
3807
+ countryUpdated?: Maybe<Country>;
3808
+ /** One neo:tempat:organization item created. */
3809
+ organizationCreated?: Maybe<Organization>;
3810
+ /** One neo:tempat:organization item deleted. */
3811
+ organizationDeleted?: Maybe<Organization>;
3812
+ /** One neo:tempat:organization item updated. */
3813
+ organizationUpdated?: Maybe<Organization>;
3814
+ /** One neo:tempat:province item created. */
3815
+ provinceCreated?: Maybe<Province>;
3816
+ /** One neo:tempat:province item deleted. */
3817
+ provinceDeleted?: Maybe<Province>;
3818
+ /** One neo:tempat:province item updated. */
3819
+ provinceUpdated?: Maybe<Province>;
3820
+ /** One neu:tempat:region item created. */
3821
+ regionCreated?: Maybe<Region>;
3822
+ /** One neu:tempat:region item deleted. */
3823
+ regionDeleted?: Maybe<Region>;
3824
+ /** One neu:tempat:region item updated. */
3825
+ regionUpdated?: Maybe<Region>;
3826
+ /** One neo:identitas:role item created. */
3827
+ roleCreated?: Maybe<Role>;
3828
+ /** One neo:identitas:role item deleted. */
3829
+ roleDeleted?: Maybe<Role>;
3830
+ /** One neo:identitas:role item updated. */
3831
+ roleUpdated?: Maybe<Role>;
3832
+ /** One neu:tempat:room item created. */
3833
+ roomCreated?: Maybe<Room>;
3834
+ /** One neu:tempat:room item deleted. */
3835
+ roomDeleted?: Maybe<Room>;
3836
+ /** One neu:tempat:room item updated. */
3837
+ roomUpdated?: Maybe<Room>;
3838
+ /** One neo:kokpit:service item created. */
3839
+ serviceCreated?: Maybe<Service>;
3840
+ /** One neo:kokpit:service item deleted. */
3841
+ serviceDeleted?: Maybe<Service>;
3842
+ /** One neo:kokpit:service item updated. */
3843
+ serviceUpdated?: Maybe<Service>;
3844
+ /** One neu:personalia:staff item created. */
3845
+ staffCreated?: Maybe<Staff>;
3846
+ /** One neu:personalia:staff item deleted. */
3847
+ staffDeleted?: Maybe<Staff>;
3848
+ /** One neu:personalia:staff item updated. */
3849
+ staffUpdated?: Maybe<Staff>;
3850
+ /** One neo:tempat:unit item created. */
3851
+ unitCreated?: Maybe<Unit>;
3852
+ /** One neo:tempat:unit item deleted. */
3853
+ unitDeleted?: Maybe<Unit>;
3854
+ /** One neo:tempat:unit item updated. */
3855
+ unitUpdated?: Maybe<Unit>;
3856
+ /** One neo:identitas:user item created. */
3857
+ userCreated?: Maybe<User>;
3858
+ /** One neo:identitas:user item deleted. */
3859
+ userDeleted?: Maybe<User>;
3860
+ /** One neo:identitas:user item updated. */
3861
+ userUpdated?: Maybe<User>;
3862
+ };
3863
+ export type SubscriptionApplicationCreatedArgs = {
3864
+ filter?: InputMaybe<Scalars['Json']>;
3865
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
3866
+ limit?: InputMaybe<Scalars['Int']>;
3867
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
3868
+ page?: InputMaybe<Scalars['Int']>;
3869
+ search?: InputMaybe<Scalars['String']>;
3870
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3871
+ sort?: InputMaybe<Scalars['Json']>;
3872
+ };
3873
+ export type SubscriptionApplicationDeletedArgs = {
3874
+ filter?: InputMaybe<Scalars['Json']>;
3875
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
3876
+ limit?: InputMaybe<Scalars['Int']>;
3877
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
3878
+ page?: InputMaybe<Scalars['Int']>;
3879
+ search?: InputMaybe<Scalars['String']>;
3880
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3881
+ sort?: InputMaybe<Scalars['Json']>;
3882
+ };
3883
+ export type SubscriptionApplicationUpdatedArgs = {
3884
+ filter?: InputMaybe<Scalars['Json']>;
3885
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
3886
+ limit?: InputMaybe<Scalars['Int']>;
3887
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
3888
+ page?: InputMaybe<Scalars['Int']>;
3889
+ search?: InputMaybe<Scalars['String']>;
3890
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3891
+ sort?: InputMaybe<Scalars['Json']>;
3892
+ };
3893
+ export type SubscriptionAreaCreatedArgs = {
3894
+ filter?: InputMaybe<Scalars['Json']>;
3895
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
3896
+ limit?: InputMaybe<Scalars['Int']>;
3897
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
3898
+ page?: InputMaybe<Scalars['Int']>;
3899
+ search?: InputMaybe<Scalars['String']>;
3900
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3901
+ sort?: InputMaybe<Scalars['Json']>;
3902
+ };
3903
+ export type SubscriptionAreaDeletedArgs = {
3904
+ filter?: InputMaybe<Scalars['Json']>;
3905
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
3906
+ limit?: InputMaybe<Scalars['Int']>;
3907
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
3908
+ page?: InputMaybe<Scalars['Int']>;
3909
+ search?: InputMaybe<Scalars['String']>;
3910
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3911
+ sort?: InputMaybe<Scalars['Json']>;
3912
+ };
3913
+ export type SubscriptionAreaUpdatedArgs = {
3914
+ filter?: InputMaybe<Scalars['Json']>;
3915
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
3916
+ limit?: InputMaybe<Scalars['Int']>;
3917
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
3918
+ page?: InputMaybe<Scalars['Int']>;
3919
+ search?: InputMaybe<Scalars['String']>;
3920
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3921
+ sort?: InputMaybe<Scalars['Json']>;
3922
+ };
3923
+ export type SubscriptionBranchCreatedArgs = {
3924
+ filter?: InputMaybe<Scalars['Json']>;
3925
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
3926
+ limit?: InputMaybe<Scalars['Int']>;
3927
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
3928
+ page?: InputMaybe<Scalars['Int']>;
3929
+ search?: InputMaybe<Scalars['String']>;
3930
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3931
+ sort?: InputMaybe<Scalars['Json']>;
3932
+ };
3933
+ export type SubscriptionBranchDeletedArgs = {
3934
+ filter?: InputMaybe<Scalars['Json']>;
3935
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
3936
+ limit?: InputMaybe<Scalars['Int']>;
3937
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
3938
+ page?: InputMaybe<Scalars['Int']>;
3939
+ search?: InputMaybe<Scalars['String']>;
3940
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3941
+ sort?: InputMaybe<Scalars['Json']>;
3942
+ };
3943
+ export type SubscriptionBranchUpdatedArgs = {
3944
+ filter?: InputMaybe<Scalars['Json']>;
3945
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
3946
+ limit?: InputMaybe<Scalars['Int']>;
3947
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
3948
+ page?: InputMaybe<Scalars['Int']>;
3949
+ search?: InputMaybe<Scalars['String']>;
3950
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3951
+ sort?: InputMaybe<Scalars['Json']>;
3952
+ };
3953
+ export type SubscriptionBrandCreatedArgs = {
3954
+ filter?: InputMaybe<Scalars['Json']>;
3955
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
3956
+ limit?: InputMaybe<Scalars['Int']>;
3957
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
3958
+ page?: InputMaybe<Scalars['Int']>;
3959
+ search?: InputMaybe<Scalars['String']>;
3960
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3961
+ sort?: InputMaybe<Scalars['Json']>;
3962
+ };
3963
+ export type SubscriptionBrandDeletedArgs = {
3964
+ filter?: InputMaybe<Scalars['Json']>;
3965
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
3966
+ limit?: InputMaybe<Scalars['Int']>;
3967
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
3968
+ page?: InputMaybe<Scalars['Int']>;
3969
+ search?: InputMaybe<Scalars['String']>;
3970
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3971
+ sort?: InputMaybe<Scalars['Json']>;
3972
+ };
3973
+ export type SubscriptionBrandUpdatedArgs = {
3974
+ filter?: InputMaybe<Scalars['Json']>;
3975
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
3976
+ limit?: InputMaybe<Scalars['Int']>;
3977
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
3978
+ page?: InputMaybe<Scalars['Int']>;
3979
+ search?: InputMaybe<Scalars['String']>;
3980
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3981
+ sort?: InputMaybe<Scalars['Json']>;
3982
+ };
3983
+ export type SubscriptionBuildingCreatedArgs = {
3984
+ filter?: InputMaybe<Scalars['Json']>;
3985
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
3986
+ limit?: InputMaybe<Scalars['Int']>;
3987
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
3988
+ page?: InputMaybe<Scalars['Int']>;
3989
+ search?: InputMaybe<Scalars['String']>;
3990
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
3991
+ sort?: InputMaybe<Scalars['Json']>;
3992
+ };
3993
+ export type SubscriptionBuildingDeletedArgs = {
3994
+ filter?: InputMaybe<Scalars['Json']>;
3995
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
3996
+ limit?: InputMaybe<Scalars['Int']>;
3997
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
3998
+ page?: InputMaybe<Scalars['Int']>;
3999
+ search?: InputMaybe<Scalars['String']>;
4000
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4001
+ sort?: InputMaybe<Scalars['Json']>;
4002
+ };
4003
+ export type SubscriptionBuildingUpdatedArgs = {
4004
+ filter?: InputMaybe<Scalars['Json']>;
4005
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4006
+ limit?: InputMaybe<Scalars['Int']>;
4007
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4008
+ page?: InputMaybe<Scalars['Int']>;
4009
+ search?: InputMaybe<Scalars['String']>;
4010
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4011
+ sort?: InputMaybe<Scalars['Json']>;
4012
+ };
4013
+ export type SubscriptionCheckInCreatedArgs = {
4014
+ filter?: InputMaybe<Scalars['Json']>;
4015
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4016
+ limit?: InputMaybe<Scalars['Int']>;
4017
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4018
+ page?: InputMaybe<Scalars['Int']>;
4019
+ search?: InputMaybe<Scalars['String']>;
4020
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4021
+ sort?: InputMaybe<Scalars['Json']>;
4022
+ };
4023
+ export type SubscriptionCheckInDeletedArgs = {
4024
+ filter?: InputMaybe<Scalars['Json']>;
4025
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4026
+ limit?: InputMaybe<Scalars['Int']>;
4027
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4028
+ page?: InputMaybe<Scalars['Int']>;
4029
+ search?: InputMaybe<Scalars['String']>;
4030
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4031
+ sort?: InputMaybe<Scalars['Json']>;
4032
+ };
4033
+ export type SubscriptionCheckInUpdatedArgs = {
4034
+ filter?: InputMaybe<Scalars['Json']>;
4035
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4036
+ limit?: InputMaybe<Scalars['Int']>;
4037
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4038
+ page?: InputMaybe<Scalars['Int']>;
4039
+ search?: InputMaybe<Scalars['String']>;
4040
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4041
+ sort?: InputMaybe<Scalars['Json']>;
4042
+ };
4043
+ export type SubscriptionCityCreatedArgs = {
4044
+ filter?: InputMaybe<Scalars['Json']>;
4045
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4046
+ limit?: InputMaybe<Scalars['Int']>;
4047
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4048
+ page?: InputMaybe<Scalars['Int']>;
4049
+ search?: InputMaybe<Scalars['String']>;
4050
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4051
+ sort?: InputMaybe<Scalars['Json']>;
4052
+ };
4053
+ export type SubscriptionCityDeletedArgs = {
4054
+ filter?: InputMaybe<Scalars['Json']>;
4055
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4056
+ limit?: InputMaybe<Scalars['Int']>;
4057
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4058
+ page?: InputMaybe<Scalars['Int']>;
4059
+ search?: InputMaybe<Scalars['String']>;
4060
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4061
+ sort?: InputMaybe<Scalars['Json']>;
4062
+ };
4063
+ export type SubscriptionCityUpdatedArgs = {
4064
+ filter?: InputMaybe<Scalars['Json']>;
4065
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4066
+ limit?: InputMaybe<Scalars['Int']>;
4067
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4068
+ page?: InputMaybe<Scalars['Int']>;
4069
+ search?: InputMaybe<Scalars['String']>;
4070
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4071
+ sort?: InputMaybe<Scalars['Json']>;
4072
+ };
4073
+ export type SubscriptionConfigCreatedArgs = {
4074
+ filter?: InputMaybe<Scalars['Json']>;
4075
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4076
+ limit?: InputMaybe<Scalars['Int']>;
4077
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4078
+ page?: InputMaybe<Scalars['Int']>;
4079
+ search?: InputMaybe<Scalars['String']>;
4080
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4081
+ sort?: InputMaybe<Scalars['Json']>;
4082
+ };
4083
+ export type SubscriptionConfigDeletedArgs = {
4084
+ filter?: InputMaybe<Scalars['Json']>;
4085
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4086
+ limit?: InputMaybe<Scalars['Int']>;
4087
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4088
+ page?: InputMaybe<Scalars['Int']>;
4089
+ search?: InputMaybe<Scalars['String']>;
4090
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4091
+ sort?: InputMaybe<Scalars['Json']>;
4092
+ };
4093
+ export type SubscriptionConfigUpdatedArgs = {
4094
+ filter?: InputMaybe<Scalars['Json']>;
4095
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4096
+ limit?: InputMaybe<Scalars['Int']>;
4097
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4098
+ page?: InputMaybe<Scalars['Int']>;
4099
+ search?: InputMaybe<Scalars['String']>;
4100
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4101
+ sort?: InputMaybe<Scalars['Json']>;
4102
+ };
4103
+ export type SubscriptionCountryCreatedArgs = {
4104
+ filter?: InputMaybe<Scalars['Json']>;
4105
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4106
+ limit?: InputMaybe<Scalars['Int']>;
4107
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4108
+ page?: InputMaybe<Scalars['Int']>;
4109
+ search?: InputMaybe<Scalars['String']>;
4110
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4111
+ sort?: InputMaybe<Scalars['Json']>;
4112
+ };
4113
+ export type SubscriptionCountryDeletedArgs = {
4114
+ filter?: InputMaybe<Scalars['Json']>;
4115
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4116
+ limit?: InputMaybe<Scalars['Int']>;
4117
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4118
+ page?: InputMaybe<Scalars['Int']>;
4119
+ search?: InputMaybe<Scalars['String']>;
4120
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4121
+ sort?: InputMaybe<Scalars['Json']>;
4122
+ };
4123
+ export type SubscriptionCountryUpdatedArgs = {
4124
+ filter?: InputMaybe<Scalars['Json']>;
4125
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4126
+ limit?: InputMaybe<Scalars['Int']>;
4127
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4128
+ page?: InputMaybe<Scalars['Int']>;
4129
+ search?: InputMaybe<Scalars['String']>;
4130
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4131
+ sort?: InputMaybe<Scalars['Json']>;
4132
+ };
4133
+ export type SubscriptionOrganizationCreatedArgs = {
4134
+ filter?: InputMaybe<Scalars['Json']>;
4135
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4136
+ limit?: InputMaybe<Scalars['Int']>;
4137
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4138
+ page?: InputMaybe<Scalars['Int']>;
4139
+ search?: InputMaybe<Scalars['String']>;
4140
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4141
+ sort?: InputMaybe<Scalars['Json']>;
4142
+ };
4143
+ export type SubscriptionOrganizationDeletedArgs = {
4144
+ filter?: InputMaybe<Scalars['Json']>;
4145
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4146
+ limit?: InputMaybe<Scalars['Int']>;
4147
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4148
+ page?: InputMaybe<Scalars['Int']>;
4149
+ search?: InputMaybe<Scalars['String']>;
4150
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4151
+ sort?: InputMaybe<Scalars['Json']>;
4152
+ };
4153
+ export type SubscriptionOrganizationUpdatedArgs = {
4154
+ filter?: InputMaybe<Scalars['Json']>;
4155
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4156
+ limit?: InputMaybe<Scalars['Int']>;
4157
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4158
+ page?: InputMaybe<Scalars['Int']>;
4159
+ search?: InputMaybe<Scalars['String']>;
4160
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4161
+ sort?: InputMaybe<Scalars['Json']>;
4162
+ };
4163
+ export type SubscriptionProvinceCreatedArgs = {
4164
+ filter?: InputMaybe<Scalars['Json']>;
4165
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4166
+ limit?: InputMaybe<Scalars['Int']>;
4167
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4168
+ page?: InputMaybe<Scalars['Int']>;
4169
+ search?: InputMaybe<Scalars['String']>;
4170
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4171
+ sort?: InputMaybe<Scalars['Json']>;
4172
+ };
4173
+ export type SubscriptionProvinceDeletedArgs = {
4174
+ filter?: InputMaybe<Scalars['Json']>;
4175
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4176
+ limit?: InputMaybe<Scalars['Int']>;
4177
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4178
+ page?: InputMaybe<Scalars['Int']>;
4179
+ search?: InputMaybe<Scalars['String']>;
4180
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4181
+ sort?: InputMaybe<Scalars['Json']>;
4182
+ };
4183
+ export type SubscriptionProvinceUpdatedArgs = {
4184
+ filter?: InputMaybe<Scalars['Json']>;
4185
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4186
+ limit?: InputMaybe<Scalars['Int']>;
4187
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4188
+ page?: InputMaybe<Scalars['Int']>;
4189
+ search?: InputMaybe<Scalars['String']>;
4190
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4191
+ sort?: InputMaybe<Scalars['Json']>;
4192
+ };
4193
+ export type SubscriptionRegionCreatedArgs = {
4194
+ filter?: InputMaybe<Scalars['Json']>;
4195
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4196
+ limit?: InputMaybe<Scalars['Int']>;
4197
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4198
+ page?: InputMaybe<Scalars['Int']>;
4199
+ search?: InputMaybe<Scalars['String']>;
4200
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4201
+ sort?: InputMaybe<Scalars['Json']>;
4202
+ };
4203
+ export type SubscriptionRegionDeletedArgs = {
4204
+ filter?: InputMaybe<Scalars['Json']>;
4205
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4206
+ limit?: InputMaybe<Scalars['Int']>;
4207
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4208
+ page?: InputMaybe<Scalars['Int']>;
4209
+ search?: InputMaybe<Scalars['String']>;
4210
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4211
+ sort?: InputMaybe<Scalars['Json']>;
4212
+ };
4213
+ export type SubscriptionRegionUpdatedArgs = {
4214
+ filter?: InputMaybe<Scalars['Json']>;
4215
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4216
+ limit?: InputMaybe<Scalars['Int']>;
4217
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4218
+ page?: InputMaybe<Scalars['Int']>;
4219
+ search?: InputMaybe<Scalars['String']>;
4220
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4221
+ sort?: InputMaybe<Scalars['Json']>;
4222
+ };
4223
+ export type SubscriptionRoleCreatedArgs = {
4224
+ filter?: InputMaybe<Scalars['Json']>;
4225
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4226
+ limit?: InputMaybe<Scalars['Int']>;
4227
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4228
+ page?: InputMaybe<Scalars['Int']>;
4229
+ search?: InputMaybe<Scalars['String']>;
4230
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4231
+ sort?: InputMaybe<Scalars['Json']>;
4232
+ };
4233
+ export type SubscriptionRoleDeletedArgs = {
4234
+ filter?: InputMaybe<Scalars['Json']>;
4235
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4236
+ limit?: InputMaybe<Scalars['Int']>;
4237
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4238
+ page?: InputMaybe<Scalars['Int']>;
4239
+ search?: InputMaybe<Scalars['String']>;
4240
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4241
+ sort?: InputMaybe<Scalars['Json']>;
4242
+ };
4243
+ export type SubscriptionRoleUpdatedArgs = {
4244
+ filter?: InputMaybe<Scalars['Json']>;
4245
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4246
+ limit?: InputMaybe<Scalars['Int']>;
4247
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4248
+ page?: InputMaybe<Scalars['Int']>;
4249
+ search?: InputMaybe<Scalars['String']>;
4250
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4251
+ sort?: InputMaybe<Scalars['Json']>;
4252
+ };
4253
+ export type SubscriptionRoomCreatedArgs = {
4254
+ filter?: InputMaybe<Scalars['Json']>;
4255
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4256
+ limit?: InputMaybe<Scalars['Int']>;
4257
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4258
+ page?: InputMaybe<Scalars['Int']>;
4259
+ search?: InputMaybe<Scalars['String']>;
4260
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4261
+ sort?: InputMaybe<Scalars['Json']>;
4262
+ };
4263
+ export type SubscriptionRoomDeletedArgs = {
4264
+ filter?: InputMaybe<Scalars['Json']>;
4265
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4266
+ limit?: InputMaybe<Scalars['Int']>;
4267
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4268
+ page?: InputMaybe<Scalars['Int']>;
4269
+ search?: InputMaybe<Scalars['String']>;
4270
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4271
+ sort?: InputMaybe<Scalars['Json']>;
4272
+ };
4273
+ export type SubscriptionRoomUpdatedArgs = {
4274
+ filter?: InputMaybe<Scalars['Json']>;
4275
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4276
+ limit?: InputMaybe<Scalars['Int']>;
4277
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4278
+ page?: InputMaybe<Scalars['Int']>;
4279
+ search?: InputMaybe<Scalars['String']>;
4280
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4281
+ sort?: InputMaybe<Scalars['Json']>;
4282
+ };
4283
+ export type SubscriptionServiceCreatedArgs = {
4284
+ filter?: InputMaybe<Scalars['Json']>;
4285
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4286
+ limit?: InputMaybe<Scalars['Int']>;
4287
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4288
+ page?: InputMaybe<Scalars['Int']>;
4289
+ search?: InputMaybe<Scalars['String']>;
4290
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4291
+ sort?: InputMaybe<Scalars['Json']>;
4292
+ };
4293
+ export type SubscriptionServiceDeletedArgs = {
4294
+ filter?: InputMaybe<Scalars['Json']>;
4295
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4296
+ limit?: InputMaybe<Scalars['Int']>;
4297
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4298
+ page?: InputMaybe<Scalars['Int']>;
4299
+ search?: InputMaybe<Scalars['String']>;
4300
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4301
+ sort?: InputMaybe<Scalars['Json']>;
4302
+ };
4303
+ export type SubscriptionServiceUpdatedArgs = {
4304
+ filter?: InputMaybe<Scalars['Json']>;
4305
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4306
+ limit?: InputMaybe<Scalars['Int']>;
4307
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4308
+ page?: InputMaybe<Scalars['Int']>;
4309
+ search?: InputMaybe<Scalars['String']>;
4310
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4311
+ sort?: InputMaybe<Scalars['Json']>;
4312
+ };
4313
+ export type SubscriptionStaffCreatedArgs = {
4314
+ filter?: InputMaybe<Scalars['Json']>;
4315
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4316
+ limit?: InputMaybe<Scalars['Int']>;
4317
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4318
+ page?: InputMaybe<Scalars['Int']>;
4319
+ search?: InputMaybe<Scalars['String']>;
4320
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4321
+ sort?: InputMaybe<Scalars['Json']>;
4322
+ };
4323
+ export type SubscriptionStaffDeletedArgs = {
4324
+ filter?: InputMaybe<Scalars['Json']>;
4325
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4326
+ limit?: InputMaybe<Scalars['Int']>;
4327
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4328
+ page?: InputMaybe<Scalars['Int']>;
4329
+ search?: InputMaybe<Scalars['String']>;
4330
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4331
+ sort?: InputMaybe<Scalars['Json']>;
4332
+ };
4333
+ export type SubscriptionStaffUpdatedArgs = {
4334
+ filter?: InputMaybe<Scalars['Json']>;
4335
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4336
+ limit?: InputMaybe<Scalars['Int']>;
4337
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4338
+ page?: InputMaybe<Scalars['Int']>;
4339
+ search?: InputMaybe<Scalars['String']>;
4340
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4341
+ sort?: InputMaybe<Scalars['Json']>;
4342
+ };
4343
+ export type SubscriptionUnitCreatedArgs = {
4344
+ filter?: InputMaybe<Scalars['Json']>;
4345
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4346
+ limit?: InputMaybe<Scalars['Int']>;
4347
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4348
+ page?: InputMaybe<Scalars['Int']>;
4349
+ search?: InputMaybe<Scalars['String']>;
4350
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4351
+ sort?: InputMaybe<Scalars['Json']>;
4352
+ };
4353
+ export type SubscriptionUnitDeletedArgs = {
4354
+ filter?: InputMaybe<Scalars['Json']>;
4355
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4356
+ limit?: InputMaybe<Scalars['Int']>;
4357
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4358
+ page?: InputMaybe<Scalars['Int']>;
4359
+ search?: InputMaybe<Scalars['String']>;
4360
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4361
+ sort?: InputMaybe<Scalars['Json']>;
4362
+ };
4363
+ export type SubscriptionUnitUpdatedArgs = {
4364
+ filter?: InputMaybe<Scalars['Json']>;
4365
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4366
+ limit?: InputMaybe<Scalars['Int']>;
4367
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4368
+ page?: InputMaybe<Scalars['Int']>;
4369
+ search?: InputMaybe<Scalars['String']>;
4370
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4371
+ sort?: InputMaybe<Scalars['Json']>;
4372
+ };
4373
+ export type SubscriptionUserCreatedArgs = {
4374
+ filter?: InputMaybe<Scalars['Json']>;
4375
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4376
+ limit?: InputMaybe<Scalars['Int']>;
4377
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4378
+ page?: InputMaybe<Scalars['Int']>;
4379
+ search?: InputMaybe<Scalars['String']>;
4380
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4381
+ sort?: InputMaybe<Scalars['Json']>;
4382
+ };
4383
+ export type SubscriptionUserDeletedArgs = {
4384
+ filter?: InputMaybe<Scalars['Json']>;
4385
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4386
+ limit?: InputMaybe<Scalars['Int']>;
4387
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4388
+ page?: InputMaybe<Scalars['Int']>;
4389
+ search?: InputMaybe<Scalars['String']>;
4390
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4391
+ sort?: InputMaybe<Scalars['Json']>;
4392
+ };
4393
+ export type SubscriptionUserUpdatedArgs = {
4394
+ filter?: InputMaybe<Scalars['Json']>;
4395
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4396
+ limit?: InputMaybe<Scalars['Int']>;
4397
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4398
+ page?: InputMaybe<Scalars['Int']>;
4399
+ search?: InputMaybe<Scalars['String']>;
4400
+ shortcuts?: InputMaybe<Array<Scalars['String']>>;
4401
+ sort?: InputMaybe<Scalars['Json']>;
4402
+ };
4403
+ /** Response of SyncMany operation. */
4404
+ export type SyncManyResponse = {
4405
+ /** List of synced IDs. */
4406
+ ids?: Maybe<Array<Scalars['ID']>>;
4407
+ /** Response info. */
4408
+ info?: Maybe<Info>;
4409
+ };
4410
+ export type Unit = {
4411
+ /** Unit code. */
4412
+ code?: Maybe<Scalars['String']>;
4413
+ /** When this unit was created. */
4414
+ createdAt?: Maybe<Scalars['Date']>;
4415
+ /** Relation ID of Created By. */
4416
+ createdBy?: Maybe<Scalars['ObjectId']>;
4417
+ /** Who created this unit. */
4418
+ creator?: Maybe<User>;
4419
+ /** When this unit was deleted. */
4420
+ deletedAt?: Maybe<Scalars['Date']>;
4421
+ /** Relation ID of Deleted By. */
4422
+ deletedBy?: Maybe<Scalars['ObjectId']>;
4423
+ /** Who deleted this unit. */
4424
+ deleter?: Maybe<User>;
4425
+ /** Unit */
4426
+ display?: Maybe<Scalars['String']>;
4427
+ /** Unit */
4428
+ flag?: Maybe<Scalars['String']>;
4429
+ /** Object ID. */
4430
+ id?: Maybe<Scalars['ID']>;
4431
+ /** Unit name. */
4432
+ name?: Maybe<Scalars['String']>;
4433
+ /** Organization of this unit. */
4434
+ organization?: Maybe<Organization>;
4435
+ /** Relation ID of Organization. */
4436
+ organizationId?: Maybe<Scalars['ObjectId']>;
4437
+ /** When this unit was restored. */
4438
+ restoredAt?: Maybe<Scalars['Date']>;
4439
+ /** Relation ID of Restored By. */
4440
+ restoredBy?: Maybe<Scalars['ObjectId']>;
4441
+ /** Who last restored this unit. */
4442
+ restorer?: Maybe<User>;
4443
+ /** Unit status. */
4444
+ status?: Maybe<Scalars['String']>;
4445
+ /** When this unit was last synced. */
4446
+ syncedAt?: Maybe<Scalars['Date']>;
4447
+ /** When this unit was last updated. */
4448
+ updatedAt?: Maybe<Scalars['Date']>;
4449
+ /** Relation ID of Updated By. */
4450
+ updatedBy?: Maybe<Scalars['ObjectId']>;
4451
+ /** Who last updated this unit. */
4452
+ updater?: Maybe<User>;
4453
+ /** Inversed relation from Units field of neo:identitas:user model. */
4454
+ users?: Maybe<Array<User>>;
4455
+ };
4456
+ export type UnitUsersArgs = {
4457
+ filter?: InputMaybe<Scalars['Json']>;
4458
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4459
+ limit?: InputMaybe<Scalars['Int']>;
4460
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4461
+ page?: InputMaybe<Scalars['Int']>;
4462
+ search?: InputMaybe<Scalars['String']>;
4463
+ sort?: InputMaybe<Scalars['Json']>;
4464
+ };
4465
+ /** neo:tempat:unit collection response. */
4466
+ export type UnitCollectionResponse = {
4467
+ /** Response info. */
4468
+ info?: Maybe<Info>;
4469
+ /** Collection of neo:tempat:unit items. */
4470
+ items?: Maybe<Array<Unit>>;
4471
+ };
4472
+ export type UnitInput = {
4473
+ /** Unit code. */
4474
+ code?: InputMaybe<Scalars['String']>;
4475
+ /** When this unit was created. */
4476
+ createdAt?: InputMaybe<Scalars['Date']>;
4477
+ /** Relation ID of Created By. */
4478
+ createdBy?: InputMaybe<Scalars['ObjectId']>;
4479
+ /** When this unit was deleted. */
4480
+ deletedAt?: InputMaybe<Scalars['Date']>;
4481
+ /** Relation ID of Deleted By. */
4482
+ deletedBy?: InputMaybe<Scalars['ObjectId']>;
4483
+ /** Unit */
4484
+ display?: InputMaybe<Scalars['String']>;
4485
+ /** Unit */
4486
+ flag?: InputMaybe<Scalars['String']>;
4487
+ /** Unit name. */
4488
+ name?: InputMaybe<Scalars['String']>;
4489
+ /** Relation ID of Organization. */
4490
+ organizationId?: InputMaybe<Scalars['ObjectId']>;
4491
+ /** When this unit was restored. */
4492
+ restoredAt?: InputMaybe<Scalars['Date']>;
4493
+ /** Relation ID of Restored By. */
4494
+ restoredBy?: InputMaybe<Scalars['ObjectId']>;
4495
+ /** Unit status. */
4496
+ status?: InputMaybe<Scalars['String']>;
4497
+ /** When this unit was last synced. */
4498
+ syncedAt?: InputMaybe<Scalars['Date']>;
4499
+ /** When this unit was last updated. */
4500
+ updatedAt?: InputMaybe<Scalars['Date']>;
4501
+ /** Relation ID of Updated By. */
4502
+ updatedBy?: InputMaybe<Scalars['ObjectId']>;
4503
+ };
4504
+ /** Single neo:tempat:unit response. */
4505
+ export type UnitSingleResponse = {
4506
+ /** Response info. */
4507
+ info?: Maybe<Info>;
4508
+ /** Single neo:tempat:unit item. */
4509
+ item?: Maybe<Unit>;
4510
+ };
4511
+ export type User = {
4512
+ /** User age. */
4513
+ age?: Maybe<Scalars['String']>;
4514
+ /** Birth date of user. */
4515
+ birthDate?: Maybe<Scalars['Date']>;
4516
+ /** Birth place of user. */
4517
+ birthPlace?: Maybe<Scalars['String']>;
4518
+ /** Inversed relation from Pengguna field of neu:tempat:checkIn model. */
4519
+ checkIns?: Maybe<CheckIn>;
4520
+ /** When this user was created. */
4521
+ createdAt?: Maybe<Scalars['Date']>;
4522
+ /** Relation ID of Created By. */
4523
+ createdBy?: Maybe<Scalars['ObjectId']>;
4524
+ /** Who created this user. */
4525
+ creator?: Maybe<User>;
4526
+ /** Default password of this user, mostly used if user was generated. */
4527
+ defaultPassword?: Maybe<Scalars['String']>;
4528
+ /** When this user was deleted. */
4529
+ deletedAt?: Maybe<Scalars['Date']>;
4530
+ /** Relation ID of Deleted By. */
4531
+ deletedBy?: Maybe<Scalars['ObjectId']>;
4532
+ /** Who deleted this user. */
4533
+ deleter?: Maybe<User>;
4534
+ /** User */
4535
+ display?: Maybe<Scalars['String']>;
4536
+ /** Email address of this user. */
4537
+ email?: Maybe<Scalars['String']>;
4538
+ /** First name of this user. */
4539
+ firstName?: Maybe<Scalars['String']>;
4540
+ /** User */
4541
+ flag?: Maybe<Scalars['String']>;
4542
+ /** Object ID. */
4543
+ id?: Maybe<Scalars['ID']>;
4544
+ /** Other identities of this user, might be Facebook, Google, or other platform. */
4545
+ identities?: Maybe<Array<Scalars['Json']>>;
4546
+ /** Profile image of this user. */
4547
+ image?: Maybe<Scalars['Json']>;
4548
+ /** Is email address has been verified. */
4549
+ isEmailVerified?: Maybe<Scalars['Boolean']>;
4550
+ /** Is phone number has been verified. */
4551
+ isPhoneVerified?: Maybe<Scalars['Boolean']>;
4552
+ /** When this user last logged-in at */
4553
+ lastLoggedInAt?: Maybe<Scalars['Date']>;
4554
+ /** Last name of this user. */
4555
+ lastName?: Maybe<Scalars['String']>;
4556
+ /** Meta data of this user. */
4557
+ meta?: Maybe<Scalars['Json']>;
4558
+ /** Full name of this user. */
4559
+ name?: Maybe<Scalars['String']>;
4560
+ /** Nick name of this user. */
4561
+ nickName?: Maybe<Scalars['String']>;
4562
+ /** Relation IDs of Organizations. */
4563
+ organizationIds?: Maybe<Array<Scalars['ObjectId']>>;
4564
+ /** Organizations of this user. */
4565
+ organizations?: Maybe<Array<Organization>>;
4566
+ /** User password */
4567
+ password?: Maybe<Scalars['String']>;
4568
+ /** Phone number of this user, must be handphone number. */
4569
+ phone?: Maybe<Scalars['String']>;
4570
+ /** Relation IDs of Policies. */
4571
+ policyIds?: Maybe<Array<Scalars['ObjectId']>>;
4572
+ /** Inversed relation from Registered By field of neo:identitas:user model. */
4573
+ registrants?: Maybe<Array<User>>;
4574
+ /** Internal team member who registered this user. */
4575
+ registrar?: Maybe<User>;
4576
+ /** Relation ID of Registered By. */
4577
+ registrarId?: Maybe<Scalars['ObjectId']>;
4578
+ /** When this user was restored. */
4579
+ restoredAt?: Maybe<Scalars['Date']>;
4580
+ /** Relation ID of Restored By. */
4581
+ restoredBy?: Maybe<Scalars['ObjectId']>;
4582
+ /** Who last restored this user. */
4583
+ restorer?: Maybe<User>;
4584
+ /** Relation IDs of Roles. */
4585
+ roleIds?: Maybe<Array<Scalars['ObjectId']>>;
4586
+ /** Roles of this user. */
4587
+ roles?: Maybe<Array<Role>>;
4588
+ /** User password salt. */
4589
+ salt?: Maybe<Scalars['String']>;
4590
+ /** Inversed relation from Pengguna field of neu:personalia:staff model. */
4591
+ staffs?: Maybe<Array<Staff>>;
4592
+ /** User status. */
4593
+ status?: Maybe<Scalars['String']>;
4594
+ /** When this user was last synced. */
4595
+ syncedAt?: Maybe<Scalars['Date']>;
4596
+ /** User registration type. */
4597
+ type?: Maybe<Scalars['String']>;
4598
+ /** Relation IDs of Units. */
4599
+ unitIds?: Maybe<Array<Scalars['ObjectId']>>;
4600
+ /** Units of this user. */
4601
+ units?: Maybe<Array<Unit>>;
4602
+ /** When this user was last updated. */
4603
+ updatedAt?: Maybe<Scalars['Date']>;
4604
+ /** Relation ID of Updated By. */
4605
+ updatedBy?: Maybe<Scalars['ObjectId']>;
4606
+ /** Who last updated this user. */
4607
+ updater?: Maybe<User>;
4608
+ /** Username of this user. */
4609
+ username?: Maybe<Scalars['String']>;
4610
+ };
4611
+ export type UserCheckInsArgs = {
4612
+ filter?: InputMaybe<Scalars['Json']>;
4613
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4614
+ limit?: InputMaybe<Scalars['Int']>;
4615
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4616
+ page?: InputMaybe<Scalars['Int']>;
4617
+ search?: InputMaybe<Scalars['String']>;
4618
+ sort?: InputMaybe<Scalars['Json']>;
4619
+ };
4620
+ export type UserOrganizationsArgs = {
4621
+ filter?: InputMaybe<Scalars['Json']>;
4622
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4623
+ limit?: InputMaybe<Scalars['Int']>;
4624
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4625
+ page?: InputMaybe<Scalars['Int']>;
4626
+ search?: InputMaybe<Scalars['String']>;
4627
+ sort?: InputMaybe<Scalars['Json']>;
4628
+ };
4629
+ export type UserRegistrantsArgs = {
4630
+ filter?: InputMaybe<Scalars['Json']>;
4631
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4632
+ limit?: InputMaybe<Scalars['Int']>;
4633
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4634
+ page?: InputMaybe<Scalars['Int']>;
4635
+ search?: InputMaybe<Scalars['String']>;
4636
+ sort?: InputMaybe<Scalars['Json']>;
4637
+ };
4638
+ export type UserRolesArgs = {
4639
+ filter?: InputMaybe<Scalars['Json']>;
4640
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4641
+ limit?: InputMaybe<Scalars['Int']>;
4642
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4643
+ page?: InputMaybe<Scalars['Int']>;
4644
+ search?: InputMaybe<Scalars['String']>;
4645
+ sort?: InputMaybe<Scalars['Json']>;
4646
+ };
4647
+ export type UserStaffsArgs = {
4648
+ filter?: InputMaybe<Scalars['Json']>;
4649
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4650
+ limit?: InputMaybe<Scalars['Int']>;
4651
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4652
+ page?: InputMaybe<Scalars['Int']>;
4653
+ search?: InputMaybe<Scalars['String']>;
4654
+ sort?: InputMaybe<Scalars['Json']>;
4655
+ };
4656
+ export type UserUnitsArgs = {
4657
+ filter?: InputMaybe<Scalars['Json']>;
4658
+ ids?: InputMaybe<Array<Scalars['ObjectId']>>;
4659
+ limit?: InputMaybe<Scalars['Int']>;
4660
+ minUpdatedAt?: InputMaybe<Scalars['Date']>;
4661
+ page?: InputMaybe<Scalars['Int']>;
4662
+ search?: InputMaybe<Scalars['String']>;
4663
+ sort?: InputMaybe<Scalars['Json']>;
4664
+ };
4665
+ /** neo:identitas:user collection response. */
4666
+ export type UserCollectionResponse = {
4667
+ /** Response info. */
4668
+ info?: Maybe<Info>;
4669
+ /** Collection of neo:identitas:user items. */
4670
+ items?: Maybe<Array<User>>;
4671
+ };
4672
+ export type UserInput = {
4673
+ /** User age. */
4674
+ age?: InputMaybe<Scalars['String']>;
4675
+ /** Birth date of user. */
4676
+ birthDate?: InputMaybe<Scalars['Date']>;
4677
+ /** Birth place of user. */
4678
+ birthPlace?: InputMaybe<Scalars['String']>;
4679
+ /** When this user was created. */
4680
+ createdAt?: InputMaybe<Scalars['Date']>;
4681
+ /** Relation ID of Created By. */
4682
+ createdBy?: InputMaybe<Scalars['ObjectId']>;
4683
+ /** Default password of this user, mostly used if user was generated. */
4684
+ defaultPassword?: InputMaybe<Scalars['String']>;
4685
+ /** When this user was deleted. */
4686
+ deletedAt?: InputMaybe<Scalars['Date']>;
4687
+ /** Relation ID of Deleted By. */
4688
+ deletedBy?: InputMaybe<Scalars['ObjectId']>;
4689
+ /** User */
4690
+ display?: InputMaybe<Scalars['String']>;
4691
+ /** Email address of this user. */
4692
+ email?: InputMaybe<Scalars['String']>;
4693
+ /** First name of this user. */
4694
+ firstName?: InputMaybe<Scalars['String']>;
4695
+ /** User */
4696
+ flag?: InputMaybe<Scalars['String']>;
4697
+ /** Other identities of this user, might be Facebook, Google, or other platform. */
4698
+ identities?: InputMaybe<Array<Scalars['Any']>>;
4699
+ /** Profile image of this user. */
4700
+ image?: InputMaybe<Scalars['Any']>;
4701
+ /** Is email address has been verified. */
4702
+ isEmailVerified?: InputMaybe<Scalars['Boolean']>;
4703
+ /** Is phone number has been verified. */
4704
+ isPhoneVerified?: InputMaybe<Scalars['Boolean']>;
4705
+ /** When this user last logged-in at */
4706
+ lastLoggedInAt?: InputMaybe<Scalars['Date']>;
4707
+ /** Last name of this user. */
4708
+ lastName?: InputMaybe<Scalars['String']>;
4709
+ /** Meta data of this user. */
4710
+ meta?: InputMaybe<Scalars['Any']>;
4711
+ /** Full name of this user. */
4712
+ name?: InputMaybe<Scalars['String']>;
4713
+ /** Nick name of this user. */
4714
+ nickName?: InputMaybe<Scalars['String']>;
4715
+ /** Relation IDs of Organizations. */
4716
+ organizationIds?: InputMaybe<Array<Scalars['ID']>>;
4717
+ /** User password */
4718
+ password?: InputMaybe<Scalars['String']>;
4719
+ /** Phone number of this user, must be handphone number. */
4720
+ phone?: InputMaybe<Scalars['String']>;
4721
+ /** Relation IDs of Policies. */
4722
+ policyIds?: InputMaybe<Array<Scalars['ID']>>;
4723
+ /** Relation ID of Registered By. */
4724
+ registrarId?: InputMaybe<Scalars['ObjectId']>;
4725
+ /** When this user was restored. */
4726
+ restoredAt?: InputMaybe<Scalars['Date']>;
4727
+ /** Relation ID of Restored By. */
4728
+ restoredBy?: InputMaybe<Scalars['ObjectId']>;
4729
+ /** Relation IDs of Roles. */
4730
+ roleIds?: InputMaybe<Array<Scalars['ID']>>;
4731
+ /** User password salt. */
4732
+ salt?: InputMaybe<Scalars['String']>;
4733
+ /** User status. */
4734
+ status?: InputMaybe<Scalars['String']>;
4735
+ /** When this user was last synced. */
4736
+ syncedAt?: InputMaybe<Scalars['Date']>;
4737
+ /** User registration type. */
4738
+ type?: InputMaybe<Scalars['String']>;
4739
+ /** Relation IDs of Units. */
4740
+ unitIds?: InputMaybe<Array<Scalars['ID']>>;
4741
+ /** When this user was last updated. */
4742
+ updatedAt?: InputMaybe<Scalars['Date']>;
4743
+ /** Relation ID of Updated By. */
4744
+ updatedBy?: InputMaybe<Scalars['ObjectId']>;
4745
+ /** Username of this user. */
4746
+ username?: InputMaybe<Scalars['String']>;
4747
+ };
4748
+ /** Single neo:identitas:user response. */
4749
+ export type UserSingleResponse = {
4750
+ /** Response info. */
4751
+ info?: Maybe<Info>;
4752
+ /** Single neo:identitas:user item. */
4753
+ item?: Maybe<User>;
4754
+ };