-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.graphql
10908 lines (8989 loc) · 235 KB
/
schema.graphql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
type Query {
Cv(id: Int!, draft: Boolean, fallbackLocale: FallbackLocaleInputType, locale: LocaleInputType): Cv
Cvs(draft: Boolean, where: Cv_where, fallbackLocale: FallbackLocaleInputType, locale: LocaleInputType, limit: Int, page: Int, sort: String): Cvs
countCvs(draft: Boolean, where: Cv_where, locale: LocaleInputType): countCvs
docAccessCv(id: Int!): cvDocAccess
User(id: Int!, draft: Boolean, fallbackLocale: FallbackLocaleInputType, locale: LocaleInputType): User
Users(draft: Boolean, where: User_where, fallbackLocale: FallbackLocaleInputType, locale: LocaleInputType, limit: Int, page: Int, sort: String): Users
countUsers(draft: Boolean, where: User_where, locale: LocaleInputType): countUsers
docAccessUser(id: Int!): usersDocAccess
meUser: usersMe
initializedUser: Boolean
Skill(id: Int!, draft: Boolean, fallbackLocale: FallbackLocaleInputType, locale: LocaleInputType): Skill
Skills(draft: Boolean, where: Skill_where, fallbackLocale: FallbackLocaleInputType, locale: LocaleInputType, limit: Int, page: Int, sort: String): Skills
countSkills(draft: Boolean, where: Skill_where, locale: LocaleInputType): countSkills
docAccessSkill(id: Int!): skillDocAccess
Level(id: Int!, draft: Boolean, fallbackLocale: FallbackLocaleInputType, locale: LocaleInputType): Level
Levels(draft: Boolean, where: Level_where, fallbackLocale: FallbackLocaleInputType, locale: LocaleInputType, limit: Int, page: Int, sort: String): Levels
countLevels(draft: Boolean, where: Level_where, locale: LocaleInputType): countLevels
docAccessLevel(id: Int!): levelDocAccess
Company(id: Int!, draft: Boolean, fallbackLocale: FallbackLocaleInputType, locale: LocaleInputType): Company
Companies(draft: Boolean, where: Company_where, fallbackLocale: FallbackLocaleInputType, locale: LocaleInputType, limit: Int, page: Int, sort: String): Companies
countCompanies(draft: Boolean, where: Company_where, locale: LocaleInputType): countCompanies
docAccessCompany(id: Int!): companyDocAccess
Project(id: Int!, draft: Boolean, fallbackLocale: FallbackLocaleInputType, locale: LocaleInputType): Project
Projects(draft: Boolean, where: Project_where, fallbackLocale: FallbackLocaleInputType, locale: LocaleInputType, limit: Int, page: Int, sort: String): Projects
countProjects(draft: Boolean, where: Project_where, locale: LocaleInputType): countProjects
docAccessProject(id: Int!): projectDocAccess
Media(id: Int!, draft: Boolean, fallbackLocale: FallbackLocaleInputType, locale: LocaleInputType): Media
allMedia(draft: Boolean, where: Media_where, fallbackLocale: FallbackLocaleInputType, locale: LocaleInputType, limit: Int, page: Int, sort: String): allMedia
countallMedia(draft: Boolean, where: Media_where, locale: LocaleInputType): countallMedia
docAccessMedia(id: Int!): mediaDocAccess
Organisation(id: Int!, draft: Boolean, fallbackLocale: FallbackLocaleInputType, locale: LocaleInputType): Organisation
Organisations(draft: Boolean, where: Organisation_where, fallbackLocale: FallbackLocaleInputType, locale: LocaleInputType, limit: Int, page: Int, sort: String): Organisations
countOrganisations(draft: Boolean, where: Organisation_where, locale: LocaleInputType): countOrganisations
docAccessOrganisation(id: Int!): organisationsDocAccess
PayloadPreference(id: Int!, draft: Boolean, fallbackLocale: FallbackLocaleInputType, locale: LocaleInputType): PayloadPreference
PayloadPreferences(draft: Boolean, where: PayloadPreference_where, fallbackLocale: FallbackLocaleInputType, locale: LocaleInputType, limit: Int, page: Int, sort: String): PayloadPreferences
countPayloadPreferences(draft: Boolean, where: PayloadPreference_where, locale: LocaleInputType): countPayloadPreferences
docAccessPayloadPreference(id: Int!): payload_preferencesDocAccess
Access: Access
}
type Cv {
id: Int
fullName: String!
birthday: DateTime!
nationalityStatus: String
image(locale: LocaleInputType, fallbackLocale: FallbackLocaleInputType): Media
phoneNumber: String
email: String!
jobTitle: String
department: String
links: [SocialLinks!]
introduction(depth: Int): JSON
languages: [Cv_Languages!]
technologies: [Cv_Technologies!]
softSkills: [Cv_SoftSkills!]
otherSkills: [Cv_OtherSkills!]
edu: [Cv_Edu!]
certs: [Cv_Certs!]
courses: [Cv_Courses!]
companies: [Cv_Companies!]
projects: [Cv_Projects!]
organisation(locale: LocaleInputType, fallbackLocale: FallbackLocaleInputType): Organisation
createdBy(locale: LocaleInputType, fallbackLocale: FallbackLocaleInputType): User
updatedBy(locale: LocaleInputType, fallbackLocale: FallbackLocaleInputType): User
updatedAt: DateTime
createdAt: DateTime
}
"""
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.
"""
scalar DateTime
type Media {
id: Int
alt: String
createdBy(locale: LocaleInputType, fallbackLocale: FallbackLocaleInputType): User
prefix: String
updatedAt: DateTime
createdAt: DateTime
url: String
thumbnailURL: String
filename: String
mimeType: String
filesize: Float
width: Float
height: Float
focalX: Float
focalY: Float
sizes: Media_Sizes
}
type User {
id: Int
firstName: String
lastName: String
roles: [User_roles!]
organisations: [UserOrganisations!]
selectedOrganisation(locale: LocaleInputType, fallbackLocale: FallbackLocaleInputType): Organisation
updatedAt: DateTime
createdAt: DateTime
email: EmailAddress!
resetPasswordToken: String
resetPasswordExpiration: DateTime
salt: String
hash: String
loginAttempts: Float
lockUntil: DateTime
password: String!
}
enum User_roles {
admin
user
}
type UserOrganisations {
organisation(locale: LocaleInputType, fallbackLocale: FallbackLocaleInputType): Organisation
roles: [UserOrganisations_roles!]
id: String
}
type Organisation {
id: Int
name: String!
description: String
createdBy(locale: LocaleInputType, fallbackLocale: FallbackLocaleInputType): User
updatedBy(locale: LocaleInputType, fallbackLocale: FallbackLocaleInputType): User
updatedAt: DateTime
createdAt: DateTime
}
enum LocaleInputType {
de
}
enum FallbackLocaleInputType {
de
none
}
enum UserOrganisations_roles {
admin
user
}
"""
A field whose value conforms to the standard internet email address format as specified in HTML Spec: https://html.spec.whatwg.org/multipage/input.html#valid-e-mail-address.
"""
scalar EmailAddress @specifiedBy(url: "https://html.spec.whatwg.org/multipage/input.html#valid-e-mail-address")
type Media_Sizes {
thumbnail: Media_Sizes_Thumbnail
card: Media_Sizes_Card
tablet: Media_Sizes_Tablet
}
type Media_Sizes_Thumbnail {
url: String
width: Float
height: Float
mimeType: String
filesize: Float
filename: String
}
type Media_Sizes_Card {
url: String
width: Float
height: Float
mimeType: String
filesize: Float
filename: String
}
type Media_Sizes_Tablet {
url: String
width: Float
height: Float
mimeType: String
filesize: Float
filename: String
}
type SocialLinks {
platform: SocialLinks_platform
url: String
id: String
}
enum SocialLinks_platform {
linkedin
x
mastodon
facebook
github
}
"""
The `JSON` scalar type represents JSON values as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf).
"""
scalar JSON @specifiedBy(url: "http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf")
type Cv_Languages {
language(locale: LocaleInputType, fallbackLocale: FallbackLocaleInputType): Skill
level(locale: LocaleInputType, fallbackLocale: FallbackLocaleInputType): Level
id: String
}
type Skill {
id: Int
name: String
skillType: Skill_skillType
organisation(locale: LocaleInputType, fallbackLocale: FallbackLocaleInputType): Organisation
createdBy(locale: LocaleInputType, fallbackLocale: FallbackLocaleInputType): User
updatedBy(locale: LocaleInputType, fallbackLocale: FallbackLocaleInputType): User
updatedAt: DateTime
createdAt: DateTime
}
enum Skill_skillType {
technical
language
soft
}
type Level {
id: Int
level: String
levelType: [Level_levelType!]
points: Float
organisation(locale: LocaleInputType, fallbackLocale: FallbackLocaleInputType): Organisation
createdBy(locale: LocaleInputType, fallbackLocale: FallbackLocaleInputType): User
updatedBy(locale: LocaleInputType, fallbackLocale: FallbackLocaleInputType): User
updatedAt: DateTime
createdAt: DateTime
}
enum Level_levelType {
language
skill
}
type Cv_Technologies {
skill(locale: LocaleInputType, fallbackLocale: FallbackLocaleInputType): Skill
level(locale: LocaleInputType, fallbackLocale: FallbackLocaleInputType): Level
id: String
}
type Cv_SoftSkills {
softSkill(locale: LocaleInputType, fallbackLocale: FallbackLocaleInputType): Skill
level(locale: LocaleInputType, fallbackLocale: FallbackLocaleInputType): Level
id: String
}
type Cv_OtherSkills {
name: String
level(locale: LocaleInputType, fallbackLocale: FallbackLocaleInputType): Level
id: String
}
type Cv_Edu {
institution: String
fromYear: DateTime
toYear: DateTime
description: String
id: String
}
type Cv_Certs {
name: String
toYear: DateTime
description: String
id: String
}
type Cv_Courses {
name: String
toYear: DateTime
description: String
id: String
}
type Cv_Companies {
name: String
fromYear: DateTime
toYear: DateTime
description: String
id: String
}
type Cv_Projects {
name: String
fromYear: DateTime
toYear: DateTime
description: String
id: String
}
type Cvs {
docs: [Cv]
hasNextPage: Boolean
hasPrevPage: Boolean
limit: Int
nextPage: Int
offset: Int
page: Int
pagingCounter: Int
prevPage: Int
totalDocs: Int
totalPages: Int
}
input Cv_where {
fullName: Cv_fullName_operator
birthday: Cv_birthday_operator
nationalityStatus: Cv_nationalityStatus_operator
image: Cv_image_operator
phoneNumber: Cv_phoneNumber_operator
email: Cv_email_operator
jobTitle: Cv_jobTitle_operator
department: Cv_department_operator
links__platform: Cv_links__platform_operator
links__url: Cv_links__url_operator
links__id: Cv_links__id_operator
introduction: Cv_introduction_operator
languages__language: Cv_languages__language_operator
languages__level: Cv_languages__level_operator
languages__id: Cv_languages__id_operator
technologies__skill: Cv_technologies__skill_operator
technologies__level: Cv_technologies__level_operator
technologies__id: Cv_technologies__id_operator
softSkills__softSkill: Cv_softSkills__softSkill_operator
softSkills__level: Cv_softSkills__level_operator
softSkills__id: Cv_softSkills__id_operator
otherSkills__name: Cv_otherSkills__name_operator
otherSkills__level: Cv_otherSkills__level_operator
otherSkills__id: Cv_otherSkills__id_operator
edu__institution: Cv_edu__institution_operator
edu__fromYear: Cv_edu__fromYear_operator
edu__toYear: Cv_edu__toYear_operator
edu__description: Cv_edu__description_operator
edu__id: Cv_edu__id_operator
certs__name: Cv_certs__name_operator
certs__toYear: Cv_certs__toYear_operator
certs__description: Cv_certs__description_operator
certs__id: Cv_certs__id_operator
courses__name: Cv_courses__name_operator
courses__toYear: Cv_courses__toYear_operator
courses__description: Cv_courses__description_operator
courses__id: Cv_courses__id_operator
companies__name: Cv_companies__name_operator
companies__fromYear: Cv_companies__fromYear_operator
companies__toYear: Cv_companies__toYear_operator
companies__description: Cv_companies__description_operator
companies__id: Cv_companies__id_operator
projects__name: Cv_projects__name_operator
projects__fromYear: Cv_projects__fromYear_operator
projects__toYear: Cv_projects__toYear_operator
projects__description: Cv_projects__description_operator
projects__id: Cv_projects__id_operator
organisation: Cv_organisation_operator
createdBy: Cv_createdBy_operator
updatedBy: Cv_updatedBy_operator
updatedAt: Cv_updatedAt_operator
createdAt: Cv_createdAt_operator
id: Cv_id_operator
AND: [Cv_where_and]
OR: [Cv_where_or]
}
input Cv_fullName_operator {
equals: String
not_equals: String
like: String
contains: String
in: [String]
not_in: [String]
all: [String]
}
input Cv_birthday_operator {
equals: DateTime
not_equals: DateTime
greater_than_equal: DateTime
greater_than: DateTime
less_than_equal: DateTime
less_than: DateTime
like: DateTime
}
input Cv_nationalityStatus_operator {
equals: String
not_equals: String
like: String
contains: String
in: [String]
not_in: [String]
all: [String]
exists: Boolean
}
input Cv_image_operator {
equals: JSON
not_equals: JSON
in: [JSON]
not_in: [JSON]
all: [JSON]
exists: Boolean
}
input Cv_phoneNumber_operator {
equals: String
not_equals: String
like: String
contains: String
in: [String]
not_in: [String]
all: [String]
exists: Boolean
}
input Cv_email_operator {
equals: String
not_equals: String
like: String
contains: String
in: [String]
not_in: [String]
all: [String]
}
input Cv_jobTitle_operator {
equals: String
not_equals: String
like: String
contains: String
in: [String]
not_in: [String]
all: [String]
}
input Cv_department_operator {
equals: String
not_equals: String
like: String
contains: String
in: [String]
not_in: [String]
all: [String]
exists: Boolean
}
input Cv_links__platform_operator {
equals: Cv_links__platform_Input
not_equals: Cv_links__platform_Input
in: [Cv_links__platform_Input]
not_in: [Cv_links__platform_Input]
all: [Cv_links__platform_Input]
}
enum Cv_links__platform_Input {
linkedin
x
mastodon
facebook
github
}
input Cv_links__url_operator {
equals: String
not_equals: String
like: String
contains: String
in: [String]
not_in: [String]
all: [String]
}
input Cv_links__id_operator {
equals: String
not_equals: String
like: String
contains: String
in: [String]
not_in: [String]
all: [String]
exists: Boolean
}
input Cv_introduction_operator {
equals: JSON
not_equals: JSON
like: JSON
contains: JSON
}
input Cv_languages__language_operator {
equals: JSON
not_equals: JSON
in: [JSON]
not_in: [JSON]
all: [JSON]
}
input Cv_languages__level_operator {
equals: JSON
not_equals: JSON
in: [JSON]
not_in: [JSON]
all: [JSON]
}
input Cv_languages__id_operator {
equals: String
not_equals: String
like: String
contains: String
in: [String]
not_in: [String]
all: [String]
exists: Boolean
}
input Cv_technologies__skill_operator {
equals: JSON
not_equals: JSON
in: [JSON]
not_in: [JSON]
all: [JSON]
}
input Cv_technologies__level_operator {
equals: JSON
not_equals: JSON
in: [JSON]
not_in: [JSON]
all: [JSON]
}
input Cv_technologies__id_operator {
equals: String
not_equals: String
like: String
contains: String
in: [String]
not_in: [String]
all: [String]
exists: Boolean
}
input Cv_softSkills__softSkill_operator {
equals: JSON
not_equals: JSON
in: [JSON]
not_in: [JSON]
all: [JSON]
}
input Cv_softSkills__level_operator {
equals: JSON
not_equals: JSON
in: [JSON]
not_in: [JSON]
all: [JSON]
}
input Cv_softSkills__id_operator {
equals: String
not_equals: String
like: String
contains: String
in: [String]
not_in: [String]
all: [String]
exists: Boolean
}
input Cv_otherSkills__name_operator {
equals: String
not_equals: String
like: String
contains: String
in: [String]
not_in: [String]
all: [String]
}
input Cv_otherSkills__level_operator {
equals: JSON
not_equals: JSON
in: [JSON]
not_in: [JSON]
all: [JSON]
}
input Cv_otherSkills__id_operator {
equals: String
not_equals: String
like: String
contains: String
in: [String]
not_in: [String]
all: [String]
exists: Boolean
}
input Cv_edu__institution_operator {
equals: String
not_equals: String
like: String
contains: String
in: [String]
not_in: [String]
all: [String]
}
input Cv_edu__fromYear_operator {
equals: DateTime
not_equals: DateTime
greater_than_equal: DateTime
greater_than: DateTime
less_than_equal: DateTime
less_than: DateTime
like: DateTime
}
input Cv_edu__toYear_operator {
equals: DateTime
not_equals: DateTime
greater_than_equal: DateTime
greater_than: DateTime
less_than_equal: DateTime
less_than: DateTime
like: DateTime
}
input Cv_edu__description_operator {
equals: String
not_equals: String
like: String
contains: String
exists: Boolean
}
input Cv_edu__id_operator {
equals: String
not_equals: String
like: String
contains: String
in: [String]
not_in: [String]
all: [String]
exists: Boolean
}
input Cv_certs__name_operator {
equals: String
not_equals: String
like: String
contains: String
in: [String]
not_in: [String]
all: [String]
}
input Cv_certs__toYear_operator {
equals: DateTime
not_equals: DateTime
greater_than_equal: DateTime
greater_than: DateTime
less_than_equal: DateTime
less_than: DateTime
like: DateTime
}
input Cv_certs__description_operator {
equals: String
not_equals: String
like: String
contains: String
exists: Boolean
}
input Cv_certs__id_operator {
equals: String
not_equals: String
like: String
contains: String
in: [String]
not_in: [String]
all: [String]
exists: Boolean
}
input Cv_courses__name_operator {
equals: String
not_equals: String
like: String
contains: String
in: [String]
not_in: [String]
all: [String]
}
input Cv_courses__toYear_operator {
equals: DateTime
not_equals: DateTime
greater_than_equal: DateTime
greater_than: DateTime
less_than_equal: DateTime
less_than: DateTime
like: DateTime
}
input Cv_courses__description_operator {
equals: String
not_equals: String
like: String
contains: String
exists: Boolean
}
input Cv_courses__id_operator {
equals: String
not_equals: String
like: String
contains: String
in: [String]
not_in: [String]
all: [String]
exists: Boolean
}
input Cv_companies__name_operator {
equals: String
not_equals: String
like: String
contains: String
in: [String]
not_in: [String]
all: [String]
}
input Cv_companies__fromYear_operator {
equals: DateTime
not_equals: DateTime
greater_than_equal: DateTime
greater_than: DateTime
less_than_equal: DateTime
less_than: DateTime
like: DateTime
}
input Cv_companies__toYear_operator {
equals: DateTime
not_equals: DateTime
greater_than_equal: DateTime
greater_than: DateTime
less_than_equal: DateTime
less_than: DateTime
like: DateTime
}
input Cv_companies__description_operator {
equals: String
not_equals: String
like: String
contains: String
exists: Boolean
}
input Cv_companies__id_operator {
equals: String
not_equals: String
like: String
contains: String
in: [String]
not_in: [String]
all: [String]
exists: Boolean
}
input Cv_projects__name_operator {
equals: String
not_equals: String
like: String
contains: String
in: [String]
not_in: [String]
all: [String]
}
input Cv_projects__fromYear_operator {
equals: DateTime
not_equals: DateTime
greater_than_equal: DateTime
greater_than: DateTime
less_than_equal: DateTime
less_than: DateTime
like: DateTime
}
input Cv_projects__toYear_operator {
equals: DateTime
not_equals: DateTime
greater_than_equal: DateTime
greater_than: DateTime
less_than_equal: DateTime
less_than: DateTime
like: DateTime
}
input Cv_projects__description_operator {
equals: String
not_equals: String
like: String
contains: String
exists: Boolean
}
input Cv_projects__id_operator {
equals: String
not_equals: String
like: String
contains: String
in: [String]
not_in: [String]
all: [String]
exists: Boolean
}
input Cv_organisation_operator {
equals: JSON
not_equals: JSON
in: [JSON]
not_in: [JSON]
all: [JSON]
exists: Boolean
}
input Cv_createdBy_operator {
equals: JSON
not_equals: JSON
in: [JSON]
not_in: [JSON]
all: [JSON]
exists: Boolean
}
input Cv_updatedBy_operator {
equals: JSON
not_equals: JSON
in: [JSON]
not_in: [JSON]
all: [JSON]
exists: Boolean
}
input Cv_updatedAt_operator {
equals: DateTime
not_equals: DateTime
greater_than_equal: DateTime
greater_than: DateTime
less_than_equal: DateTime
less_than: DateTime
like: DateTime
exists: Boolean
}
input Cv_createdAt_operator {
equals: DateTime
not_equals: DateTime
greater_than_equal: DateTime
greater_than: DateTime
less_than_equal: DateTime
less_than: DateTime
like: DateTime
exists: Boolean
}
input Cv_id_operator {
equals: Int
not_equals: Int
greater_than_equal: Int
greater_than: Int
less_than_equal: Int
less_than: Int
exists: Boolean
}
input Cv_where_and {
fullName: Cv_fullName_operator
birthday: Cv_birthday_operator
nationalityStatus: Cv_nationalityStatus_operator
image: Cv_image_operator
phoneNumber: Cv_phoneNumber_operator
email: Cv_email_operator
jobTitle: Cv_jobTitle_operator
department: Cv_department_operator
links__platform: Cv_links__platform_operator
links__url: Cv_links__url_operator
links__id: Cv_links__id_operator
introduction: Cv_introduction_operator
languages__language: Cv_languages__language_operator
languages__level: Cv_languages__level_operator
languages__id: Cv_languages__id_operator
technologies__skill: Cv_technologies__skill_operator
technologies__level: Cv_technologies__level_operator
technologies__id: Cv_technologies__id_operator
softSkills__softSkill: Cv_softSkills__softSkill_operator
softSkills__level: Cv_softSkills__level_operator
softSkills__id: Cv_softSkills__id_operator
otherSkills__name: Cv_otherSkills__name_operator
otherSkills__level: Cv_otherSkills__level_operator
otherSkills__id: Cv_otherSkills__id_operator
edu__institution: Cv_edu__institution_operator
edu__fromYear: Cv_edu__fromYear_operator
edu__toYear: Cv_edu__toYear_operator
edu__description: Cv_edu__description_operator
edu__id: Cv_edu__id_operator
certs__name: Cv_certs__name_operator
certs__toYear: Cv_certs__toYear_operator
certs__description: Cv_certs__description_operator
certs__id: Cv_certs__id_operator
courses__name: Cv_courses__name_operator
courses__toYear: Cv_courses__toYear_operator
courses__description: Cv_courses__description_operator
courses__id: Cv_courses__id_operator
companies__name: Cv_companies__name_operator
companies__fromYear: Cv_companies__fromYear_operator
companies__toYear: Cv_companies__toYear_operator
companies__description: Cv_companies__description_operator
companies__id: Cv_companies__id_operator
projects__name: Cv_projects__name_operator
projects__fromYear: Cv_projects__fromYear_operator
projects__toYear: Cv_projects__toYear_operator
projects__description: Cv_projects__description_operator
projects__id: Cv_projects__id_operator
organisation: Cv_organisation_operator
createdBy: Cv_createdBy_operator
updatedBy: Cv_updatedBy_operator
updatedAt: Cv_updatedAt_operator
createdAt: Cv_createdAt_operator
id: Cv_id_operator
AND: [Cv_where_and]
OR: [Cv_where_or]
}
input Cv_where_or {
fullName: Cv_fullName_operator
birthday: Cv_birthday_operator
nationalityStatus: Cv_nationalityStatus_operator
image: Cv_image_operator
phoneNumber: Cv_phoneNumber_operator
email: Cv_email_operator
jobTitle: Cv_jobTitle_operator
department: Cv_department_operator
links__platform: Cv_links__platform_operator
links__url: Cv_links__url_operator
links__id: Cv_links__id_operator
introduction: Cv_introduction_operator
languages__language: Cv_languages__language_operator
languages__level: Cv_languages__level_operator
languages__id: Cv_languages__id_operator
technologies__skill: Cv_technologies__skill_operator
technologies__level: Cv_technologies__level_operator
technologies__id: Cv_technologies__id_operator
softSkills__softSkill: Cv_softSkills__softSkill_operator
softSkills__level: Cv_softSkills__level_operator
softSkills__id: Cv_softSkills__id_operator
otherSkills__name: Cv_otherSkills__name_operator
otherSkills__level: Cv_otherSkills__level_operator
otherSkills__id: Cv_otherSkills__id_operator
edu__institution: Cv_edu__institution_operator
edu__fromYear: Cv_edu__fromYear_operator
edu__toYear: Cv_edu__toYear_operator
edu__description: Cv_edu__description_operator
edu__id: Cv_edu__id_operator
certs__name: Cv_certs__name_operator
certs__toYear: Cv_certs__toYear_operator
certs__description: Cv_certs__description_operator
certs__id: Cv_certs__id_operator
courses__name: Cv_courses__name_operator
courses__toYear: Cv_courses__toYear_operator
courses__description: Cv_courses__description_operator
courses__id: Cv_courses__id_operator
companies__name: Cv_companies__name_operator
companies__fromYear: Cv_companies__fromYear_operator
companies__toYear: Cv_companies__toYear_operator
companies__description: Cv_companies__description_operator
companies__id: Cv_companies__id_operator
projects__name: Cv_projects__name_operator
projects__fromYear: Cv_projects__fromYear_operator
projects__toYear: Cv_projects__toYear_operator
projects__description: Cv_projects__description_operator
projects__id: Cv_projects__id_operator
organisation: Cv_organisation_operator