critique_api 0.1.0

Interface to the SensCritique API
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
type AgendaTVProduct {
  infos: TvProduct
  product: Product
}

type AnnouncementBanner {
  body: String
  capping: Int
  color: String
  createdAt: Date
  endAt: Date
  id: ID
  startAt: Date
  state: String
  updatedAt: Date
}

type ApiList {
  cover: String
  date_creation: Date
  description: String
  id: Int!
  products: ApiProduct
  title: String
  universe: String
  user: ApiUser
}

type ApiListResponse {
  current_page: Int!
  lists: ApiList
  total_lists: Int!
}

type ApiProduct {
  actors: ApiProductContact
  annotation: String
  authors: ApiProductContact
  channels: ApiProductContact
  cover: String
  creators: ApiProductContact
  directors: ApiProductContact
  genres: [String]
  id: Int!
  original_title: String
  pencillers: ApiProductContact
  position: Int
  publishers: ApiProductContact
  subtitle: String
  synopsis: String
  title: String
  translators: ApiProductContact
  url_reviews: String
  writers: ApiProductContact
}

type ApiProductContact {
  id: Int!
  label: String
  url: String
}

type ApiUser {
  avatar: String
  email: String
  id: Int!
  url: String
  username: String
}

type Award {
  festivalId: Int!
  festivalName: String!
  id: Int!
  isCasting: Int!
  name: String!
}

type Badge {
  count: Int
  description: String
  id: Int!
  image: String
  label: String
  stage: Int
  url: String
  userInfos(userId: Int!): BadgeUserInfos
}

type BadgeUserInfos {
  badgeId: Int
  dateCreation: Date
  id: Int
  position: Int
  userId: Int
}

type BarChartItem {
  providerId: Int!
  total: Int!
}

type BasicBlock {
  description: String
  id: String!
  media: String
  title: String
}

type CannesInfos {
  dateProjection: String
  inCompetition: Int
}

type Collection {
  filters: CollectionFilters
  products: [Product]
  total: Int
  tvProducts: AgendaTVProduct
  yearStats: CollectionYearStat
}

type CollectionFilter {
  count: Int
  label: String
  value: String
}

type CollectionFilters {
  action: CollectionFilter
  category: CollectionFilter
  gamesystem: CollectionFilter
  genre: CollectionFilter
  releaseDate: CollectionFilter
  universe: CollectionFilter
}

type CollectionUniverseStat {
  count: Int
  universe: Int
}

type CollectionYearStat {
  stats: CollectionUniverseStat
  year: Int
}

type Comment {
  author: User
  content: String!
  dateCreation: Date
  deleted: Boolean
  id: Int!
}

type CommentableResource {
  dummy: String
}

type CommentPrivacy {
  dummy: String
}

type Comments {
  commentPrivacy: CommentableResource
  isFollow: Boolean
  items: Comment
  total: Int
}

type CompareRatings {
  target: User
  versus: VersusRatings
}

type Contact {
  backdrop: String
  bestProducts: Product
  country: [String]
  coworkers: Contact
  gender: Int
  id: Int!
  isForbidden: Boolean
  likeCount: Int
  liked: Boolean
  likeScouts(limit: Int!, offset: Int!): User
  likeUsers(limit: Int!, offset: Int!): User
  lists(limit: Int!, offset: Int!, universe: Int!): UserList
  name: String!
  nationality: [String]
  picture: String
  popularTracks: Product
  productCount: Int
  products(limit: Int!, offset: Int!, order: Int!, univers: Int!): Product
  productsList(limit: Int!, offset: Int!, order: Int!, profession: Int!, universe: Int!): Products
  productStats: ProductStatsByUniverse
  profession: [String]
  professionsAdmin: [String]
  shortBio: String
  url: String
  userInfos(id: Int!, username: Int!): ContactUserInfos
}

type ContactChannel {
  id: Int!
  name: String
  url: String
}

type ContactListItem {
  annotation: String
  contact: Contact
  position: Int
}

type ContactProfessionTotal {
  tag: String
  total: Int
  universe: Int
}

type ContactUserInfos {
  dateLiked: Date
  liked: Boolean
}

type Country {
  id: Int!
  name: String!
}

type Date {
  dummy: String
}

type DoneResult {
  success: Boolean
}

type EnterContest {
  campaignId: Int
  contestId: Int
  contestLabel: String
  dateCreation: Date
  dateEnd: Date
  json: JsonContest
}

type FeedItem {
  badge: Badge
  commentCount: Int
  comments: Comments
  compiledHtml: String
  contact: Contact
  dateCreation: Date
  id: Int!
  isCurrent: Boolean
  isFollow: Boolean
  isLike: Boolean
  isLiked: Boolean
  isRecommended: Boolean
  isReview: Boolean
  isWishList: Boolean
  likeCount: Int
  likers: User
  lists: List
  product: Product
  rating: Int
  review: Review
  scout: User
  shout: Shout
  typeId: Int
  universe: Int
  user: User
  userInfos: ProductUserInfos
}

type FeedStory {
  compiledHtml: String
  feeds: FeedItem
  groupType: String
  id: Int!
}

type FirstProduct {
  id: Int!
  medias: FirstProductMedias
  slug: String!
  title: String
  universe: Int!
}

type FirstProductListItem {
  annotation: String
  product: FirstProduct
}

type FirstProductMedias {
  picture: String
}

type Franchise {
  id: Int!
  label: String
  slug: String
  url: String
}

type GameSystem {
  id: Int!
  label: String
}

type Genre {
  id: Int!
  label: String!
  slug: String
  url: String
}

type GenreProducts {
  products: Product
  total: Int!
}

type Genres {
  id: Int!
  label: String
}

type HasNotification {
  message: Boolean!
  notification: Boolean!
}

type JSON {
  dummy: String
}

type JsonContest {
  disclaimer: String
  win: String
}

type Keyword {
  covariance: Float
  id: Int
  intuitive: Int
  keyword: String
  label: String
  mcc: Float
  state: Int
  tagId: Int
}

type Label {
  award: Award
  carac: String
  contact: Contact
  count: Int
  display: String
  id: Int!
  instance: String
  kind: String
  percentage: Int
  rank: Int
  text: String
  title: String
}

type List {
  author: User
  commentCount: Int
  commentPrivacy: CommentPrivacy
  cover: String
  dateCreation: Date
  description: String
  firstProducts: FirstProductListItem
  hits: Int
  id: Int!
  isDisliked: Boolean
  isLiked: Boolean
  isOfficial: Boolean
  isOrdered: Boolean
  isPrivate: Boolean
  label: String
  likers(limit: Int!, offset: Int!): User
  productCount: Int
  products(limit: Int!, offset: Int!, sortBy: Int!): ListItem
  productsList(limit: Int!, offset: Int!, order: Int!, sortBy: Int!): ListProducts
  slug: String
  subtype: String
  universe: Int
  url: String
}

type ListContacts {
  items: ContactListItem
  total: Int
}

type ListItem {
  annotation: String
  product: Product
  total: Int
}

type ListProducts {
  items: ProductListItem
  total: Int
}

type ListsResults {
  items: List
  limit: Int
  offset: Int
  total: Int!
}

type Me {
  email: String!
  firstName: String
  id: Int!
  lastName: String
  medias: UserMedias
  name: String!
  rights: Int!
  username: String!
  validEmail: Boolean
  zipCode: Int
}

type Message {
  author: User
  content: String
  dateCreation: Date
  id: Int
  topic: Topic
  topicId: Int
}

type Mood {
  id: Int!
  label: String!
  warnerInfos: WarnerInfos
}

type Mutation {
  addDevice: Boolean!
  addIssue: String
  addTag: Int!
  archiveTopic(id: Int!): Topic
  commentAdd(content: Int!, resourceId: String!, resourceType: String!): Comment
  contactLike(id: Int!): Contact
  contactUnlike(id: Int!): Contact
  deleteTag: Boolean!
  deleteTopic(topicId: Int!): Topic
  editNewsletter: Boolean!
  enterContest(address: String!, city: String!, countryId: String!, email: String!, extrafield: String!, firstname: String!, lastname: String!, notificationId: String!, zipcode: String!): EnterContest
  feedLike(id: Int!): FeedItem
  incrementHits: Boolean!
  productDone(productId: Int!): DoneResult
  productRate(formatId: Int!, productId: Int!, rating: Int!): Product
  productReject: Boolean!
  productUndone(productId: Int!): DoneResult
  productUnrate: Boolean!
  productUnwish: Boolean!
  productWish: Boolean!
  quitTopic: Boolean!
  readTopic(topicId: Int!): Topic
  reviewLike(reviewId: Int!): Review
  sendNewsletter: Boolean!
  setDateDone: Boolean!
  shoutEdit: Boolean!
  shoutHide(shoutId: Int!, userId: Int!): Shout
  shoutLike(shoutId: Int!): Shout
  unsubscribeEmail: Boolean!
  updateTag: Boolean!
  uploadMedia(picture: UploadInput!): Picture
  userListEdit(commentPrivacy: Int!, description: Int!, isOrdered: Int!, isPublic: Int!, listId: Int!, title: Int!): UserList
  verifyEmail(cookieRef: String!): User
}

type Newsletter {
  content: String
  dateCreation: Date
  id: Int!
  title: String
}

type NextEpisodes {
  dummy: String
}

type NikonProduct {
  id: Int!
  nikonId: Int
  product: Product
  year: Int!
}

type Notification {
  dateCreation: Date
  dateRead: Date
  id: Int
  isUnread: Int
  message: String
  notificationTypeId: Int
  userId: Int
}

input NotificationTypeInput {
  dummy: String
}

type PeopleTeam {
  description: String
  firstname: String
  job: String
  lastname: String
  scId: Int!
  username: String
}

type Picture {
  id: Int!
  url: String!
}

type Pictures {
  backdrops: [String]
  posters: [String]
  screenshots: [String]
  total: Int!
}

type Poll {
  alternativeTitle: String
  badge: Badge
  cover: String
  description: String
  firstProducts: FirstProductListItem
  id: Int!
  label: String!
  participationCount: Int
  products: Product
  rebounds: Poll
  universe: Int
  url: String!
  userAnswer: PollAnswer
}

type PollAnswer {
  author: User
  commentCount: Int
  commentPrivacy: CommentPrivacy
  comments(limit: Int!, offset: Int!, sortBy: Int!): Comment
  cover: String
  dateCreation: Date
  description: String
  firstProducts: FirstProductListItem
  hits: Int
  id: Int!
  isDisliked: Boolean
  isLiked: Boolean
  isOfficial: Boolean
  isOrdered: Boolean
  isPrivate: Boolean
  label: String
  likers(limit: Int!, offset: Int!): User
  limitation: Int
  parent: Poll
  productCount: Int
  products(limit: Int!, offset: Int!, sortBy: Int!): ListItem
  productsList(limit: Int!, offset: Int!, order: Int!, sortBy: Int!): ListProducts
  slug: String
  subtype: String
  universe: Int
  url: String
  userAnswer: PollAnswer
}

type Polls {
  items: Poll
  limit: Int!
  offset: Int!
  total: Int!
}

type PremiumBlock {
  basicBlock: BasicBlock
  id: Int!
  link: String
  position: Int
  type: String
}

type PremiumButton {
  id: String!
  label: String
  link: String
  pixelMobile: String
  pixelTablet: String
  scriptTablet: String
}

type PremiumVideo {
  id: String!
  media: String
  position: Int
}

type Product {
  actors: ProductContact
  albums: Product
  alternativeTitles: [String]
  artists: ProductContact
  authors: ProductContact
  budget: String
  cannes: CannesInfos
  category: String
  channel: String
  characters: ProductContact
  countries: Country
  creators: ProductContact
  dateCreation: Date
  developers: ProductContact
  directors: ProductContact
  displayedYear: Int
  distributors: ProductContact
  duration: Int
  episodes: Product
  franchises: Franchise
  genres: [String]
  genresInfos: Genre
  id: Int!
  illustrators: ProductContact
  isbn: [String]
  isLocked: Boolean
  labels: Label
  listCount: Int
  lists: ListsResults
  medias: ProductMedia
  multiplayer: String
  musicLabels: ProductContact
  myRating: Int
  nbRating: Int
  nextEpisodes: NextEpisodes
  originalRun: Date
  originalTitle: String
  otherUserInfos(username: String!): ProductUserInfos
  pegiGambling: String
  pegiLanguage: String
  pegiRating: String
  pegiViolence: String
  pencillers: ProductContact
  pictures: Pictures
  polls: ProductPoll
  premium: ProductPremium
  producers: ProductContact
  productionStatus: String
  providers: ProductProvider
  publishers: ProductContact
  rating: Float
  review(userId: Int!): Review
  reviews(filter: Int!, limit: Int!, offset: Int!, sortBy: Int!): Reviews
  scoutsActions: ScoutActions
  scoutsRatings: UserRating
  screenwriters: ProductContact
  season: Product
  seasonId: Int
  seasons: Product
  shouts: Shouts
  slug: String!
  soundtracks: Soundtrack
  stats: ProductStats
  statsDetails: ProductStatsDetails
  subtitle: String
  synopsis: String
  title: String!
  translators: ProductContact
  tvChannel: ContactChannel
  tvGuide: TvProduct
  universe: Int!
  url: String!
  userInfos: ProductUserInfos
  userRating: Int
  vodPlatforms: VodProduct
  warnerInfos: WarnerProductInfos
  yearOfProduction: Int
}

type ProductAction {
  dummy: String
}

type ProductContact {
  contact: Contact
  name: String
  person_id: Int!
  position: Int!
  role: String
  url: String
}

type ProductListItem {
  annotation: String
  position: Int
  product: Product
}

type ProductMedia {
  backdrop: String
  picture: String
  screenshot: String
  videos: Video
}

type ProductPoll {
  poll: Poll
  rank: Int
}

type ProductPremium {
  blocks: PremiumBlock
  buttons: PremiumButton
  cover: String
  id: String!
  logo: String
  state: Int
  videos: PremiumVideo
}

type ProductProvider {
  appUrl: ProviderAppUrl
  name: String
  providerId: Int!
  webUrl: String!
}

type Products {
  items: Product
  limit: Int!
  offset: Int!
  professionCounts: ContactProfessionTotal
  total: Int
}

type ProductsBlock {
  dummy: String
}

type ProductStats {
  currentCount: Int
  recommendCount: Int
  reviewCount: Int
  wishCount: Int
}

type ProductStatsByUniverse {
  count: Int
  universe: String
}

type ProductStatsDetails {
  split: StatsSplit
}

type ProductUserInfos {
  dateDone: String
  gameSystem: GameSystem
  id: Int
  isCurrent: Boolean!
  isDone: Boolean!
  isListed: Boolean!
  isRecommended: Boolean!
  isRejected: Boolean!
  isReviewed: Boolean!
  isWished: Boolean!
  lists(limit: Int!, offset: Int!): List
  productId: Int
  rating: Int
  review: Review
  userId: Int
}

type Provider {
  id: Int!
  name: String!
}

type ProviderAppUrl {
  android: String
  ios: String
}

type Query {
  adminNewsletter(newsletterId: Int!): Newsletter
  adminNewsletters: Newsletter
  announcementBanners: AnnouncementBanner
  apiList: ApiListResponse
  B2BStats(filters: [Int]!, providerIds: [Int]!): StatsResult
  badge(id: Int!): Badge
  comments(id: Int!, limit: Int!, offset: Int!, sortBy: Int!): Comments
  compareRatings(targetId: Int!): CompareRatings
  contact(id: Int!): Contact
  countries: Country
  culte: Product
  everymovie: Product
  feed: FeedStory
  feedActivity(feedId: Int!): FeedStory
  feedAgenda: Product
  feedLikers(feedId: Int!, likeCount: Int!): User
  genreProducts(genre: String!, limit: String!, offset: String!, universe: Int!): GenreProducts
  genres(universe: String!): Genres
  hasNotification: HasNotification
  healthCheck: Boolean!
  hotCanape: Product
  hotCinema: Product
  keyword(id: Int!): Keyword
  keywords: Keyword
  likers: RelatedUsers
  me: Me
  messages(limit: Int!, offset: Int!, topicId: Int!): Message
  mood(id: Int!): Mood
  moods: Mood
  myWishes: Product
  nikonProducts(year: Int!): NikonProduct
  pepite: Product
  poll(id: Int!, limit: Int!, offset: Int!): Poll
  pollAnswer(id: Int!): PollAnswer
  polls: Polls
  product(id: Int!): Product
  products(ids: [Int]!): Product
  provider(id: Int!): Provider
  recommendedUsers(username: String!): User
  results: ResultSet
  review(id: Int!, isPublished: Int!): Review
  scTeam(status: Int!): PeopleTeam
  searchList(keywords: String!, limit: String!, universe: String!, userId: String!): SearchList
  searchPolls(from: String!, keywords: String!, limit: String!, universe: String!): SearchPolls
  searchTags(limit: String!, text: String!): Tag
  searchUser(keywords: String!, limit: String!, mode: String!): SearchUser
  shout(id: Int!): Shout
  shouts(limit: Int!, offset: Int!, productId: Int!): Shouts
  sponsoredFeed: FeedStory
  streaming: Streaming
  tag(id: Int!): Tag
  tagCategories: TagCategory
  tags: Tag
  tokens: Tokens
  top: Product
  topic(id: Int!): Topic
  topics: Topic
  topPolls: Poll
  user: User
  userList(id: Int!): UserList
  userNotifications(limit: NotificationTypeInput!, offset: NotificationTypeInput!, type: NotificationTypeInput!): Notification
  versus: Versus
}

type RelatedUsers {
  total: Int
  users: User
}

type ResultSet {
  facet(identifier: String!, query: String!, size: String!): SKFacetSet
  facets: SKFacetSet
  hits: SKHitResults
  summary: SKSummary
}

type Review {
  author: User
  body: String
  bodyShort: String
  bodyText: String
  commentCount: Int!
  commentPrivacy: CommentPrivacy
  comments(limit: Int!, offset: Int!, sortBy: Int!): Comment
  dateCreation: Date
  deleted: Boolean
  gameSystem: GameSystem
  hits: Int!
  id: Int!
  isDisliked: Boolean!
  isLiked: Boolean!
  isPublished: Int
  likeCount: Int!
  likers(limit: Int!, offset: Int!): User
  product: Product
  rating: Int
  title: String
  url: String!
}

type Reviews {
  items: Review
  limit: Int!
  offset: Int!
  topReviews: TopReviews
  total: Int
}

type ScoutActions {
  action: ProductAction
  stats: ScoutActionsStat
  total: Int
  userActions: UserAction
}

type ScoutActionsStat {
  currentCount: Int
  recommendCount: Int
  wishCount: Int
}

type SearchList {
  pollAnswers: PollAnswer
  polls: Poll
  userLists: UserList
}

type SearchPolls {
  polls: Poll
}

type SearchUser {
  results: User
}

type Shout {
  author: User
  body: String
  commentCount: Int
  comments(limit: Int!, offset: Int!, sortBy: Int!): Comment
  dateCreation: Date!
  id: Int!
  isLiked: Boolean!
  likeCount: Int
  likers(limit: Int!, offset: Int!): User
  product: Product
  productId: Int
  rating: Int
  url: String
}

type Shouts {
  items: Shout
  limit: Int
  offset: Int
  product: Product
  total: Int
}

type ShoutsUser {
  items: Shout
  limit: Int
  offset: Int
  total: Int
}

type SKFacetSet {
  display: String
  entries: SKFacetSetEntry
  identifier: String
  label: String
  type: String
}

type SKFacetSetEntry {
  count: Float
  id: ID!
  isSelected: Boolean
  label: String
}

type SKHit {
  id: ID!
}

type SKHitResults {
  items: SKHit
  page: SKPageInfo
  sortedBy: String
}

type SKPageInfo {
  from: Float
  size: Float
  total: Float
  totalPages: Float
}

type SKSortOption {
  id: ID!
  label: String!
}

type SKSummary {
  query: String
  sortOptions: SKSortOption
  total: Float!
}

type Soundtrack {
  id: Int!
  product: Product
  title: String
  url: String
}

type StackBar {
  data: JSON
  maxValue: Int
  stackKeys: [String]
  xKeys: [String]
  xLabel: String
}

type StatsResult {
  indexIn: BarChartItem
  indexOut: BarChartItem
  popularityType: StackBar
  productsBlock: ProductsBlock
  productsList: Product
  ratingType: StackBar
  releaseDate: StackBar
}

type StatsSplit {
  rating1: Int
  rating2: Int
  rating3: Int
  rating4: Int
  rating5: Int
}

type Streaming {
  news: Product
  originals: Product
  wishes: Product
}

type Subscription {
  newMessage(topicId: Int!): Message
}

type Tag {
  category: String
  id: Int!
  importance: Int!
  label: String
}

type TagCategory {
  id: Int!
  label: String
}

type Tokens {
  refreshToken: String
  token: String
}

type Topic {
  asAdmin: Boolean
  author: User
  id: Int!
  isRead: Boolean
  messages: Message
  receivers: User
  relatedList: UserList
  state: Int
}

type TopReviews {
  negative: Review
  positive: Review
}

type TvChannel {
  id: Int!
  label: String
}

type TvProduct {
  channel: TvChannel
  showTimes: TvShowtime
}

type TvShowtime {
  dateEnd: Date
  dateStart: Date
  id: Int!
}

type UniverseCount {
  count: Int!
  universe: String!
}

input UploadInput {
  dummy: String
}

type User {
  badges(limit: String!, offset: String!): UserBadge
  collection(action: String!, categoryId: String!, genreId: String!, isAgenda: String!, isDiary: String!, keywords: String!, limit: String!, month: String!, offset: String!, order: String!, universe: String!, versus: String!, year: String!): Collection
  description: String
  followers(limit: String!, offset: String!, sortBy: String!): User
  following: Boolean
  id: Int!
  isBlocked: Boolean
  isScout: Boolean
  likes(limit: String!, offset: String!): UserLikes
  lists(limit: String!, offset: String!, universe: String!): UserList
  listsCreated(keywords: String!, limit: String!, listTypes: String!, notEmpty: String!, offset: String!, order: String!, showLiked: String!, universe: String!): ListsResults
  medias: UserMedias
  name: String!
  pollAnswers(limit: String!, offset: String!, universe: String!): PollAnswer
  ratings(limit: String!, offset: String!, sortBy: String!, universe: String!): Product
  reviewCount: Int
  reviews(limit: String!, offset: String!, order: String!): UserReviews
  rights: Int
  scouts(limit: String!, offset: String!, sortBy: String!): User
  settings: UserSettings
  shouts(limit: String!, offset: String!, order: String!): ShoutsUser
  stats: UserStats
  url: String!
  username: String!
  wishCounts: UniverseCount
  wishes(limit: String!, offset: String!, sortBy: String!, universe: String!): Product
}

type UserAction {
  user: User
}

type UserBadge {
  badge: Badge
  badgeId: Int!
  dateCreation: Date
  position: Int
  userId: Int!
}

type UserLikes {
  contacts: Contact
  total: Int
}

type UserList {
  author: User
  commentCount: Int
  commentPrivacy: CommentPrivacy
  comments(limit: Int!, offset: Int!, sortBy: Int!): Comment
  contacts(limit: Int!, offset: Int!, sortBy: Int!): ContactListItem
  contactsList(limit: Int!, offset: Int!, order: Int!, sortBy: Int!): ListContacts
  cover: String
  dateCreation: Date
  description: String
  firstProducts: FirstProductListItem
  hits: Int
  id: Int!
  isDisliked: Boolean
  isLiked: Boolean
  isOfficial: Boolean
  isOrdered: Boolean
  isPrivate: Boolean
  label: String
  likers(limit: Int!, offset: Int!): User
  parent: UserList
  productCount: Int
  products(limit: Int!, offset: Int!, sortBy: Int!): ListItem
  productsList(limit: Int!, offset: Int!, order: Int!, sortBy: Int!): ListProducts
  slug: String
  subtype: String
  universe: Int
  url: String
}

type UserMedias {
  avatar: String
  backdrop: String
}

type UserRating {
  rating: Int!
  user: User
}

type UserReviews {
  hasNext: Boolean
  items: Review
  limit: Int
  offset: Int
}

type UserSettings {
  about: String
  birthDate: Date
  country: String
  displayedName: String
  email: String
  firstName: String
  gender: String
  lastName: String
  showAge: Boolean
  urlWebsite: String
  username: String
  zipCode: String
}

type UserStats {
  collectionCount: Int!
  diaryCount: Int!
  id: Int!
  listCount: Int!
  pollCount: Int!
  reviewCount: Int!
  topCount: Int!
}

type Versus {
  alone: Product
  difference: Product
  heLikes: Product
  perfectMatch: Product
  solo: Product
  user: User
  wishes: Product
}

type VersusRatings {
  count: Int!
  products: Product
  title: String!
}

type Video {
  id: String!
  image: String
  provider: String!
  type: String!
}

type VodEditor {
  id: Int!
  idCnc: Int
  label: String
}

type VodProduct {
  modalities: VodProductModality
  platform: VodEditor
}

type VodProductModality {
  dateEnd: Date
  dateStart: Date
  id: Int!
  iptv: String
  language: String
  mode: String
  price: Float
  quality: String
  url: String!
}

type WarnerInfos {
  description: String
  id: Int!
  picture: String
  selectionId: String
  url: String
}

type WarnerProductInfos {
  version: String
  youtubeLink: String
}