decidim-comments 0.20.1 → 0.21.0

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.
@@ -6,13 +6,32 @@ import loadTranslations from "./support/load_translations";
6
6
 
7
7
  window.DecidimComments = window.DecidimComments || {};
8
8
 
9
+ interface StorageDict {
10
+ [key: string]: string;
11
+ }
12
+
9
13
  window.DecidimComments.renderCommentsComponent = (nodeId: string, props: CommentsApplicationProps) => {
10
14
  const node = window.$(`#${nodeId}`)[0];
15
+ const queryDict: StorageDict = {};
16
+ window
17
+ .location
18
+ .search
19
+ .substr(1)
20
+ .split("&")
21
+ .forEach(item => queryDict[item.split("=")[0]] = item.split("=")[1]);
22
+
23
+ props = { ...props, singleCommentId: queryDict.commentId };
11
24
 
12
25
  ReactDOM.render(
13
26
  React.createElement(Comments, props),
14
27
  node
15
28
  );
29
+
30
+ if (queryDict.commentId) {
31
+ $([document.documentElement, document.body]).animate({
32
+ scrollTop: $("#comments").offset()!.top
33
+ }, 2000);
34
+ }
16
35
  };
17
36
 
18
37
  // Load component locales from yaml files
@@ -1,4 +1,6 @@
1
1
  import { configure } from "enzyme";
2
2
  import * as Adapter from "enzyme-adapter-react-16";
3
3
 
4
+ import "jest-localstorage-mock";
5
+
4
6
  configure({ adapter: new Adapter() });
@@ -1,7 +1,7 @@
1
1
  #import "../fragments/add_comment_form_session.fragment.graphql"
2
2
  #import "../fragments/comment_thread.fragment.graphql"
3
3
  #import "../fragments/add_comment_form_commentable.fragment.graphql"
4
- query GetComments($commentableId: String!, $commentableType: String!, $orderBy: String) {
4
+ query GetComments($commentableId: String!, $commentableType: String!, $orderBy: String, $singleCommentId: String) {
5
5
  session {
6
6
  user {
7
7
  name
@@ -17,7 +17,7 @@ query GetComments($commentableId: String!, $commentableType: String!, $orderBy:
17
17
  commentsHaveAlignment
18
18
  commentsHaveVotes
19
19
  totalCommentsCount
20
- comments(orderBy: $orderBy) {
20
+ comments(orderBy: $orderBy, singleCommentId: $singleCommentId) {
21
21
  id
22
22
  ...CommentThread
23
23
  }
@@ -11,9 +11,9 @@ export interface addCommentMutationVariables {
11
11
 
12
12
  export interface addCommentMutation {
13
13
  // A commentable
14
- commentable: {
14
+ commentable: {
15
15
  // Add a new comment to a commentable
16
- addComment: {
16
+ addComment: {
17
17
  // Check if the commentable has comments
18
18
  hasComments: boolean,
19
19
  // The Comment's unique ID
@@ -31,33 +31,33 @@ export interface addCommentMutation {
31
31
  // The creation date of the comment in relative format
32
32
  formattedCreatedAt: string,
33
33
  // The resource author
34
- author: ( {
35
- // The author's name
36
- name: string,
37
- // The author's nickname
38
- nickname: string,
39
- // The author's avatar url
40
- avatarUrl: string,
41
- // The author's profile path
42
- profilePath: string,
43
- // Whether the author's account has been deleted or not
44
- deleted: boolean,
45
- // The author's badge icon
46
- badge: string,
47
- } | {
48
- // The author's name
49
- name: string,
50
- // The author's nickname
51
- nickname: string,
52
- // The author's avatar url
53
- avatarUrl: string,
54
- // The author's profile path
55
- profilePath: string,
56
- // Whether the author's account has been deleted or not
57
- deleted: boolean,
58
- // The author's badge icon
59
- badge: string,
60
- }
34
+ author: ({
35
+ // The author's name
36
+ name: string,
37
+ // The author's nickname
38
+ nickname: string,
39
+ // The author's avatar url
40
+ avatarUrl: string,
41
+ // The author's profile path
42
+ profilePath: string,
43
+ // Whether the author's account has been deleted or not
44
+ deleted: boolean,
45
+ // The author's badge icon
46
+ badge: string,
47
+ } | {
48
+ // The author's name
49
+ name: string,
50
+ // The author's nickname
51
+ nickname: string,
52
+ // The author's avatar url
53
+ avatarUrl: string,
54
+ // The author's profile path
55
+ profilePath: string,
56
+ // Whether the author's account has been deleted or not
57
+ deleted: boolean,
58
+ // The author's badge icon
59
+ badge: string,
60
+ }
61
61
  ),
62
62
  // Whether the object can have new comments or not
63
63
  acceptsNewComments: boolean,
@@ -75,7 +75,7 @@ export interface addCommentMutation {
75
75
  downVoted: boolean,
76
76
  // The number of comment's downVotes
77
77
  downVotes: number,
78
- comments: Array< {
78
+ comments: Array<{
79
79
  // The Comment's unique ID
80
80
  id: string,
81
81
  // The Comment's signed global id
@@ -91,33 +91,33 @@ export interface addCommentMutation {
91
91
  // The creation date of the comment in relative format
92
92
  formattedCreatedAt: string,
93
93
  // The resource author
94
- author: ( {
95
- // The author's name
96
- name: string,
97
- // The author's nickname
98
- nickname: string,
99
- // The author's avatar url
100
- avatarUrl: string,
101
- // The author's profile path
102
- profilePath: string,
103
- // Whether the author's account has been deleted or not
104
- deleted: boolean,
105
- // The author's badge icon
106
- badge: string,
107
- } | {
108
- // The author's name
109
- name: string,
110
- // The author's nickname
111
- nickname: string,
112
- // The author's avatar url
113
- avatarUrl: string,
114
- // The author's profile path
115
- profilePath: string,
116
- // Whether the author's account has been deleted or not
117
- deleted: boolean,
118
- // The author's badge icon
119
- badge: string,
120
- }
94
+ author: ({
95
+ // The author's name
96
+ name: string,
97
+ // The author's nickname
98
+ nickname: string,
99
+ // The author's avatar url
100
+ avatarUrl: string,
101
+ // The author's profile path
102
+ profilePath: string,
103
+ // Whether the author's account has been deleted or not
104
+ deleted: boolean,
105
+ // The author's badge icon
106
+ badge: string,
107
+ } | {
108
+ // The author's name
109
+ name: string,
110
+ // The author's nickname
111
+ nickname: string,
112
+ // The author's avatar url
113
+ avatarUrl: string,
114
+ // The author's profile path
115
+ profilePath: string,
116
+ // Whether the author's account has been deleted or not
117
+ deleted: boolean,
118
+ // The author's badge icon
119
+ badge: string,
120
+ }
121
121
  ),
122
122
  // Check if the commentable has comments
123
123
  hasComments: boolean,
@@ -137,7 +137,7 @@ export interface addCommentMutation {
137
137
  downVoted: boolean,
138
138
  // The number of comment's downVotes
139
139
  downVotes: number,
140
- comments: Array< {
140
+ comments: Array<{
141
141
  // The Comment's unique ID
142
142
  id: string,
143
143
  // The Comment's signed global id
@@ -153,33 +153,33 @@ export interface addCommentMutation {
153
153
  // The creation date of the comment in relative format
154
154
  formattedCreatedAt: string,
155
155
  // The resource author
156
- author: ( {
157
- // The author's name
158
- name: string,
159
- // The author's nickname
160
- nickname: string,
161
- // The author's avatar url
162
- avatarUrl: string,
163
- // The author's profile path
164
- profilePath: string,
165
- // Whether the author's account has been deleted or not
166
- deleted: boolean,
167
- // The author's badge icon
168
- badge: string,
169
- } | {
170
- // The author's name
171
- name: string,
172
- // The author's nickname
173
- nickname: string,
174
- // The author's avatar url
175
- avatarUrl: string,
176
- // The author's profile path
177
- profilePath: string,
178
- // Whether the author's account has been deleted or not
179
- deleted: boolean,
180
- // The author's badge icon
181
- badge: string,
182
- }
156
+ author: ({
157
+ // The author's name
158
+ name: string,
159
+ // The author's nickname
160
+ nickname: string,
161
+ // The author's avatar url
162
+ avatarUrl: string,
163
+ // The author's profile path
164
+ profilePath: string,
165
+ // Whether the author's account has been deleted or not
166
+ deleted: boolean,
167
+ // The author's badge icon
168
+ badge: string,
169
+ } | {
170
+ // The author's name
171
+ name: string,
172
+ // The author's nickname
173
+ nickname: string,
174
+ // The author's avatar url
175
+ avatarUrl: string,
176
+ // The author's profile path
177
+ profilePath: string,
178
+ // Whether the author's account has been deleted or not
179
+ deleted: boolean,
180
+ // The author's badge icon
181
+ badge: string,
182
+ }
183
183
  ),
184
184
  // Check if the commentable has comments
185
185
  hasComments: boolean,
@@ -199,7 +199,7 @@ export interface addCommentMutation {
199
199
  downVoted: boolean,
200
200
  // The number of comment's downVotes
201
201
  downVotes: number,
202
- comments: Array< {
202
+ comments: Array<{
203
203
  // The Comment's unique ID
204
204
  id: string,
205
205
  // The Comment's signed global id
@@ -215,33 +215,33 @@ export interface addCommentMutation {
215
215
  // The creation date of the comment in relative format
216
216
  formattedCreatedAt: string,
217
217
  // The resource author
218
- author: ( {
219
- // The author's name
220
- name: string,
221
- // The author's nickname
222
- nickname: string,
223
- // The author's avatar url
224
- avatarUrl: string,
225
- // The author's profile path
226
- profilePath: string,
227
- // Whether the author's account has been deleted or not
228
- deleted: boolean,
229
- // The author's badge icon
230
- badge: string,
231
- } | {
232
- // The author's name
233
- name: string,
234
- // The author's nickname
235
- nickname: string,
236
- // The author's avatar url
237
- avatarUrl: string,
238
- // The author's profile path
239
- profilePath: string,
240
- // Whether the author's account has been deleted or not
241
- deleted: boolean,
242
- // The author's badge icon
243
- badge: string,
244
- }
218
+ author: ({
219
+ // The author's name
220
+ name: string,
221
+ // The author's nickname
222
+ nickname: string,
223
+ // The author's avatar url
224
+ avatarUrl: string,
225
+ // The author's profile path
226
+ profilePath: string,
227
+ // Whether the author's account has been deleted or not
228
+ deleted: boolean,
229
+ // The author's badge icon
230
+ badge: string,
231
+ } | {
232
+ // The author's name
233
+ name: string,
234
+ // The author's nickname
235
+ nickname: string,
236
+ // The author's avatar url
237
+ avatarUrl: string,
238
+ // The author's profile path
239
+ profilePath: string,
240
+ // Whether the author's account has been deleted or not
241
+ deleted: boolean,
242
+ // The author's badge icon
243
+ badge: string,
244
+ }
245
245
  ),
246
246
  // Check if the commentable has comments
247
247
  hasComments: boolean,
@@ -261,9 +261,9 @@ export interface addCommentMutation {
261
261
  downVoted: boolean,
262
262
  // The number of comment's downVotes
263
263
  downVotes: number,
264
- } >,
265
- } >,
266
- } >,
264
+ }>,
265
+ }>,
266
+ }>,
267
267
  } | null,
268
268
  } | null,
269
269
  };
@@ -274,8 +274,8 @@ export interface DownVoteMutationVariables {
274
274
 
275
275
  export interface DownVoteMutation {
276
276
  // A comment
277
- comment: {
278
- downVote: {
277
+ comment: {
278
+ downVote: {
279
279
  // The Comment's unique ID
280
280
  id: string,
281
281
  // The Comment's signed global id
@@ -291,33 +291,33 @@ export interface DownVoteMutation {
291
291
  // The creation date of the comment in relative format
292
292
  formattedCreatedAt: string,
293
293
  // The resource author
294
- author: ( {
295
- // The author's name
296
- name: string,
297
- // The author's nickname
298
- nickname: string,
299
- // The author's avatar url
300
- avatarUrl: string,
301
- // The author's profile path
302
- profilePath: string,
303
- // Whether the author's account has been deleted or not
304
- deleted: boolean,
305
- // The author's badge icon
306
- badge: string,
307
- } | {
308
- // The author's name
309
- name: string,
310
- // The author's nickname
311
- nickname: string,
312
- // The author's avatar url
313
- avatarUrl: string,
314
- // The author's profile path
315
- profilePath: string,
316
- // Whether the author's account has been deleted or not
317
- deleted: boolean,
318
- // The author's badge icon
319
- badge: string,
320
- }
294
+ author: ({
295
+ // The author's name
296
+ name: string,
297
+ // The author's nickname
298
+ nickname: string,
299
+ // The author's avatar url
300
+ avatarUrl: string,
301
+ // The author's profile path
302
+ profilePath: string,
303
+ // Whether the author's account has been deleted or not
304
+ deleted: boolean,
305
+ // The author's badge icon
306
+ badge: string,
307
+ } | {
308
+ // The author's name
309
+ name: string,
310
+ // The author's nickname
311
+ nickname: string,
312
+ // The author's avatar url
313
+ avatarUrl: string,
314
+ // The author's profile path
315
+ profilePath: string,
316
+ // Whether the author's account has been deleted or not
317
+ deleted: boolean,
318
+ // The author's badge icon
319
+ badge: string,
320
+ }
321
321
  ),
322
322
  // Check if the commentable has comments
323
323
  hasComments: boolean,
@@ -337,7 +337,7 @@ export interface DownVoteMutation {
337
337
  downVoted: boolean,
338
338
  // The number of comment's downVotes
339
339
  downVotes: number,
340
- comments: Array< {
340
+ comments: Array<{
341
341
  // The Comment's unique ID
342
342
  id: string,
343
343
  // The Comment's signed global id
@@ -353,33 +353,33 @@ export interface DownVoteMutation {
353
353
  // The creation date of the comment in relative format
354
354
  formattedCreatedAt: string,
355
355
  // The resource author
356
- author: ( {
357
- // The author's name
358
- name: string,
359
- // The author's nickname
360
- nickname: string,
361
- // The author's avatar url
362
- avatarUrl: string,
363
- // The author's profile path
364
- profilePath: string,
365
- // Whether the author's account has been deleted or not
366
- deleted: boolean,
367
- // The author's badge icon
368
- badge: string,
369
- } | {
370
- // The author's name
371
- name: string,
372
- // The author's nickname
373
- nickname: string,
374
- // The author's avatar url
375
- avatarUrl: string,
376
- // The author's profile path
377
- profilePath: string,
378
- // Whether the author's account has been deleted or not
379
- deleted: boolean,
380
- // The author's badge icon
381
- badge: string,
382
- }
356
+ author: ({
357
+ // The author's name
358
+ name: string,
359
+ // The author's nickname
360
+ nickname: string,
361
+ // The author's avatar url
362
+ avatarUrl: string,
363
+ // The author's profile path
364
+ profilePath: string,
365
+ // Whether the author's account has been deleted or not
366
+ deleted: boolean,
367
+ // The author's badge icon
368
+ badge: string,
369
+ } | {
370
+ // The author's name
371
+ name: string,
372
+ // The author's nickname
373
+ nickname: string,
374
+ // The author's avatar url
375
+ avatarUrl: string,
376
+ // The author's profile path
377
+ profilePath: string,
378
+ // Whether the author's account has been deleted or not
379
+ deleted: boolean,
380
+ // The author's badge icon
381
+ badge: string,
382
+ }
383
383
  ),
384
384
  // Check if the commentable has comments
385
385
  hasComments: boolean,
@@ -399,7 +399,7 @@ export interface DownVoteMutation {
399
399
  downVoted: boolean,
400
400
  // The number of comment's downVotes
401
401
  downVotes: number,
402
- comments: Array< {
402
+ comments: Array<{
403
403
  // The Comment's unique ID
404
404
  id: string,
405
405
  // The Comment's signed global id
@@ -415,33 +415,33 @@ export interface DownVoteMutation {
415
415
  // The creation date of the comment in relative format
416
416
  formattedCreatedAt: string,
417
417
  // The resource author
418
- author: ( {
419
- // The author's name
420
- name: string,
421
- // The author's nickname
422
- nickname: string,
423
- // The author's avatar url
424
- avatarUrl: string,
425
- // The author's profile path
426
- profilePath: string,
427
- // Whether the author's account has been deleted or not
428
- deleted: boolean,
429
- // The author's badge icon
430
- badge: string,
431
- } | {
432
- // The author's name
433
- name: string,
434
- // The author's nickname
435
- nickname: string,
436
- // The author's avatar url
437
- avatarUrl: string,
438
- // The author's profile path
439
- profilePath: string,
440
- // Whether the author's account has been deleted or not
441
- deleted: boolean,
442
- // The author's badge icon
443
- badge: string,
444
- }
418
+ author: ({
419
+ // The author's name
420
+ name: string,
421
+ // The author's nickname
422
+ nickname: string,
423
+ // The author's avatar url
424
+ avatarUrl: string,
425
+ // The author's profile path
426
+ profilePath: string,
427
+ // Whether the author's account has been deleted or not
428
+ deleted: boolean,
429
+ // The author's badge icon
430
+ badge: string,
431
+ } | {
432
+ // The author's name
433
+ name: string,
434
+ // The author's nickname
435
+ nickname: string,
436
+ // The author's avatar url
437
+ avatarUrl: string,
438
+ // The author's profile path
439
+ profilePath: string,
440
+ // Whether the author's account has been deleted or not
441
+ deleted: boolean,
442
+ // The author's badge icon
443
+ badge: string,
444
+ }
445
445
  ),
446
446
  // Check if the commentable has comments
447
447
  hasComments: boolean,
@@ -461,7 +461,7 @@ export interface DownVoteMutation {
461
461
  downVoted: boolean,
462
462
  // The number of comment's downVotes
463
463
  downVotes: number,
464
- comments: Array< {
464
+ comments: Array<{
465
465
  // The Comment's unique ID
466
466
  id: string,
467
467
  // The Comment's signed global id
@@ -477,33 +477,33 @@ export interface DownVoteMutation {
477
477
  // The creation date of the comment in relative format
478
478
  formattedCreatedAt: string,
479
479
  // The resource author
480
- author: ( {
481
- // The author's name
482
- name: string,
483
- // The author's nickname
484
- nickname: string,
485
- // The author's avatar url
486
- avatarUrl: string,
487
- // The author's profile path
488
- profilePath: string,
489
- // Whether the author's account has been deleted or not
490
- deleted: boolean,
491
- // The author's badge icon
492
- badge: string,
493
- } | {
494
- // The author's name
495
- name: string,
496
- // The author's nickname
497
- nickname: string,
498
- // The author's avatar url
499
- avatarUrl: string,
500
- // The author's profile path
501
- profilePath: string,
502
- // Whether the author's account has been deleted or not
503
- deleted: boolean,
504
- // The author's badge icon
505
- badge: string,
506
- }
480
+ author: ({
481
+ // The author's name
482
+ name: string,
483
+ // The author's nickname
484
+ nickname: string,
485
+ // The author's avatar url
486
+ avatarUrl: string,
487
+ // The author's profile path
488
+ profilePath: string,
489
+ // Whether the author's account has been deleted or not
490
+ deleted: boolean,
491
+ // The author's badge icon
492
+ badge: string,
493
+ } | {
494
+ // The author's name
495
+ name: string,
496
+ // The author's nickname
497
+ nickname: string,
498
+ // The author's avatar url
499
+ avatarUrl: string,
500
+ // The author's profile path
501
+ profilePath: string,
502
+ // Whether the author's account has been deleted or not
503
+ deleted: boolean,
504
+ // The author's badge icon
505
+ badge: string,
506
+ }
507
507
  ),
508
508
  // Check if the commentable has comments
509
509
  hasComments: boolean,
@@ -523,9 +523,9 @@ export interface DownVoteMutation {
523
523
  downVoted: boolean,
524
524
  // The number of comment's downVotes
525
525
  downVotes: number,
526
- } >,
527
- } >,
528
- } >,
526
+ }>,
527
+ }>,
528
+ }>,
529
529
  },
530
530
  } | null,
531
531
  };
@@ -536,8 +536,8 @@ export interface UpVoteMutationVariables {
536
536
 
537
537
  export interface UpVoteMutation {
538
538
  // A comment
539
- comment: {
540
- upVote: {
539
+ comment: {
540
+ upVote: {
541
541
  // The Comment's unique ID
542
542
  id: string,
543
543
  // The Comment's signed global id
@@ -553,33 +553,33 @@ export interface UpVoteMutation {
553
553
  // The creation date of the comment in relative format
554
554
  formattedCreatedAt: string,
555
555
  // The resource author
556
- author: ( {
557
- // The author's name
558
- name: string,
559
- // The author's nickname
560
- nickname: string,
561
- // The author's avatar url
562
- avatarUrl: string,
563
- // The author's profile path
564
- profilePath: string,
565
- // Whether the author's account has been deleted or not
566
- deleted: boolean,
567
- // The author's badge icon
568
- badge: string,
569
- } | {
570
- // The author's name
571
- name: string,
572
- // The author's nickname
573
- nickname: string,
574
- // The author's avatar url
575
- avatarUrl: string,
576
- // The author's profile path
577
- profilePath: string,
578
- // Whether the author's account has been deleted or not
579
- deleted: boolean,
580
- // The author's badge icon
581
- badge: string,
582
- }
556
+ author: ({
557
+ // The author's name
558
+ name: string,
559
+ // The author's nickname
560
+ nickname: string,
561
+ // The author's avatar url
562
+ avatarUrl: string,
563
+ // The author's profile path
564
+ profilePath: string,
565
+ // Whether the author's account has been deleted or not
566
+ deleted: boolean,
567
+ // The author's badge icon
568
+ badge: string,
569
+ } | {
570
+ // The author's name
571
+ name: string,
572
+ // The author's nickname
573
+ nickname: string,
574
+ // The author's avatar url
575
+ avatarUrl: string,
576
+ // The author's profile path
577
+ profilePath: string,
578
+ // Whether the author's account has been deleted or not
579
+ deleted: boolean,
580
+ // The author's badge icon
581
+ badge: string,
582
+ }
583
583
  ),
584
584
  // Check if the commentable has comments
585
585
  hasComments: boolean,
@@ -599,7 +599,7 @@ export interface UpVoteMutation {
599
599
  downVoted: boolean,
600
600
  // The number of comment's downVotes
601
601
  downVotes: number,
602
- comments: Array< {
602
+ comments: Array<{
603
603
  // The Comment's unique ID
604
604
  id: string,
605
605
  // The Comment's signed global id
@@ -615,33 +615,33 @@ export interface UpVoteMutation {
615
615
  // The creation date of the comment in relative format
616
616
  formattedCreatedAt: string,
617
617
  // The resource author
618
- author: ( {
619
- // The author's name
620
- name: string,
621
- // The author's nickname
622
- nickname: string,
623
- // The author's avatar url
624
- avatarUrl: string,
625
- // The author's profile path
626
- profilePath: string,
627
- // Whether the author's account has been deleted or not
628
- deleted: boolean,
629
- // The author's badge icon
630
- badge: string,
631
- } | {
632
- // The author's name
633
- name: string,
634
- // The author's nickname
635
- nickname: string,
636
- // The author's avatar url
637
- avatarUrl: string,
638
- // The author's profile path
639
- profilePath: string,
640
- // Whether the author's account has been deleted or not
641
- deleted: boolean,
642
- // The author's badge icon
643
- badge: string,
644
- }
618
+ author: ({
619
+ // The author's name
620
+ name: string,
621
+ // The author's nickname
622
+ nickname: string,
623
+ // The author's avatar url
624
+ avatarUrl: string,
625
+ // The author's profile path
626
+ profilePath: string,
627
+ // Whether the author's account has been deleted or not
628
+ deleted: boolean,
629
+ // The author's badge icon
630
+ badge: string,
631
+ } | {
632
+ // The author's name
633
+ name: string,
634
+ // The author's nickname
635
+ nickname: string,
636
+ // The author's avatar url
637
+ avatarUrl: string,
638
+ // The author's profile path
639
+ profilePath: string,
640
+ // Whether the author's account has been deleted or not
641
+ deleted: boolean,
642
+ // The author's badge icon
643
+ badge: string,
644
+ }
645
645
  ),
646
646
  // Check if the commentable has comments
647
647
  hasComments: boolean,
@@ -661,7 +661,7 @@ export interface UpVoteMutation {
661
661
  downVoted: boolean,
662
662
  // The number of comment's downVotes
663
663
  downVotes: number,
664
- comments: Array< {
664
+ comments: Array<{
665
665
  // The Comment's unique ID
666
666
  id: string,
667
667
  // The Comment's signed global id
@@ -677,53 +677,53 @@ export interface UpVoteMutation {
677
677
  // The creation date of the comment in relative format
678
678
  formattedCreatedAt: string,
679
679
  // The resource author
680
- author: ( {
681
- // The author's name
682
- name: string,
683
- // The author's nickname
684
- nickname: string,
685
- // The author's avatar url
686
- avatarUrl: string,
687
- // The author's profile path
688
- profilePath: string,
689
- // Whether the author's account has been deleted or not
690
- deleted: boolean,
691
- // The author's badge icon
692
- badge: string,
693
- } | {
694
- // The author's name
695
- name: string,
696
- // The author's nickname
697
- nickname: string,
698
- // The author's avatar url
699
- avatarUrl: string,
700
- // The author's profile path
701
- profilePath: string,
702
- // Whether the author's account has been deleted or not
703
- deleted: boolean,
704
- // The author's badge icon
705
- badge: string,
706
- }
707
- ),
708
- // Check if the commentable has comments
709
- hasComments: boolean,
710
- // Whether the object can have new comments or not
711
- acceptsNewComments: boolean,
712
- // Check if the current user can comment
713
- userAllowedToComment: boolean,
714
- // The comment's alignment. Can be 0 (neutral), 1 (in favor) or -1 (against)'
715
- alignment: number | null,
716
- // Check if the current user has reported the comment
717
- alreadyReported: boolean,
718
- // The number of comment's upVotes
719
- upVotes: number,
720
- // Check if the current user has upvoted the comment
721
- upVoted: boolean,
722
- // Check if the current user has downvoted the comment
723
- downVoted: boolean,
724
- // The number of comment's downVotes
680
+ author: ({
681
+ // The author's name
682
+ name: string,
683
+ // The author's nickname
684
+ nickname: string,
685
+ // The author's avatar url
686
+ avatarUrl: string,
687
+ // The author's profile path
688
+ profilePath: string,
689
+ // Whether the author's account has been deleted or not
690
+ deleted: boolean,
691
+ // The author's badge icon
692
+ badge: string,
693
+ } | {
694
+ // The author's name
695
+ name: string,
696
+ // The author's nickname
697
+ nickname: string,
698
+ // The author's avatar url
699
+ avatarUrl: string,
700
+ // The author's profile path
701
+ profilePath: string,
702
+ // Whether the author's account has been deleted or not
703
+ deleted: boolean,
704
+ // The author's badge icon
705
+ badge: string,
706
+ }
707
+ ),
708
+ // Check if the commentable has comments
709
+ hasComments: boolean,
710
+ // Whether the object can have new comments or not
711
+ acceptsNewComments: boolean,
712
+ // Check if the current user can comment
713
+ userAllowedToComment: boolean,
714
+ // The comment's alignment. Can be 0 (neutral), 1 (in favor) or -1 (against)'
715
+ alignment: number | null,
716
+ // Check if the current user has reported the comment
717
+ alreadyReported: boolean,
718
+ // The number of comment's upVotes
719
+ upVotes: number,
720
+ // Check if the current user has upvoted the comment
721
+ upVoted: boolean,
722
+ // Check if the current user has downvoted the comment
723
+ downVoted: boolean,
724
+ // The number of comment's downVotes
725
725
  downVotes: number,
726
- comments: Array< {
726
+ comments: Array<{
727
727
  // The Comment's unique ID
728
728
  id: string,
729
729
  // The Comment's signed global id
@@ -739,33 +739,33 @@ export interface UpVoteMutation {
739
739
  // The creation date of the comment in relative format
740
740
  formattedCreatedAt: string,
741
741
  // The resource author
742
- author: ( {
743
- // The author's name
744
- name: string,
745
- // The author's nickname
746
- nickname: string,
747
- // The author's avatar url
748
- avatarUrl: string,
749
- // The author's profile path
750
- profilePath: string,
751
- // Whether the author's account has been deleted or not
752
- deleted: boolean,
753
- // The author's badge icon
754
- badge: string,
755
- } | {
756
- // The author's name
757
- name: string,
758
- // The author's nickname
759
- nickname: string,
760
- // The author's avatar url
761
- avatarUrl: string,
762
- // The author's profile path
763
- profilePath: string,
764
- // Whether the author's account has been deleted or not
765
- deleted: boolean,
766
- // The author's badge icon
767
- badge: string,
768
- }
742
+ author: ({
743
+ // The author's name
744
+ name: string,
745
+ // The author's nickname
746
+ nickname: string,
747
+ // The author's avatar url
748
+ avatarUrl: string,
749
+ // The author's profile path
750
+ profilePath: string,
751
+ // Whether the author's account has been deleted or not
752
+ deleted: boolean,
753
+ // The author's badge icon
754
+ badge: string,
755
+ } | {
756
+ // The author's name
757
+ name: string,
758
+ // The author's nickname
759
+ nickname: string,
760
+ // The author's avatar url
761
+ avatarUrl: string,
762
+ // The author's profile path
763
+ profilePath: string,
764
+ // Whether the author's account has been deleted or not
765
+ deleted: boolean,
766
+ // The author's badge icon
767
+ badge: string,
768
+ }
769
769
  ),
770
770
  // Check if the commentable has comments
771
771
  hasComments: boolean,
@@ -785,9 +785,9 @@ export interface UpVoteMutation {
785
785
  downVoted: boolean,
786
786
  // The number of comment's downVotes
787
787
  downVotes: number,
788
- } >,
789
- } >,
790
- } >,
788
+ }>,
789
+ }>,
790
+ }>,
791
791
  },
792
792
  } | null,
793
793
  };
@@ -796,13 +796,14 @@ export interface GetCommentsQueryVariables {
796
796
  commentableId: string,
797
797
  commentableType: string,
798
798
  orderBy?: string | null,
799
+ singleCommentId?: string | null,
799
800
  };
800
801
 
801
802
  export interface GetCommentsQuery {
802
803
  // Return's information about the logged in user
803
- session: {
804
+ session: {
804
805
  // The current user
805
- user: {
806
+ user: {
806
807
  // The user's name
807
808
  name: string,
808
809
  // The user's nickname
@@ -813,14 +814,14 @@ export interface GetCommentsQuery {
813
814
  organizationName: string,
814
815
  } | null,
815
816
  // The current user verified user groups
816
- verifiedUserGroups: Array< {
817
+ verifiedUserGroups: Array<{
817
818
  // The user group's id
818
819
  id: string,
819
820
  // The user group's name
820
821
  name: string,
821
- } >,
822
+ }>,
822
823
  } | null,
823
- commentable: {
824
+ commentable: {
824
825
  // Whether the object can have new comments or not
825
826
  acceptsNewComments: boolean,
826
827
  // Check if the current user can comment
@@ -831,7 +832,7 @@ export interface GetCommentsQuery {
831
832
  commentsHaveVotes: boolean,
832
833
  // The number of comments in all levels this resource holds
833
834
  totalCommentsCount: number,
834
- comments: Array< {
835
+ comments: Array<{
835
836
  // The Comment's unique ID
836
837
  id: string,
837
838
  // Check if the commentable has comments
@@ -849,33 +850,33 @@ export interface GetCommentsQuery {
849
850
  // The creation date of the comment in relative format
850
851
  formattedCreatedAt: string,
851
852
  // The resource author
852
- author: ( {
853
- // The author's name
854
- name: string,
855
- // The author's nickname
856
- nickname: string,
857
- // The author's avatar url
858
- avatarUrl: string,
859
- // The author's profile path
860
- profilePath: string,
861
- // Whether the author's account has been deleted or not
862
- deleted: boolean,
863
- // The author's badge icon
864
- badge: string,
865
- } | {
866
- // The author's name
867
- name: string,
868
- // The author's nickname
869
- nickname: string,
870
- // The author's avatar url
871
- avatarUrl: string,
872
- // The author's profile path
873
- profilePath: string,
874
- // Whether the author's account has been deleted or not
875
- deleted: boolean,
876
- // The author's badge icon
877
- badge: string,
878
- }
853
+ author: ({
854
+ // The author's name
855
+ name: string,
856
+ // The author's nickname
857
+ nickname: string,
858
+ // The author's avatar url
859
+ avatarUrl: string,
860
+ // The author's profile path
861
+ profilePath: string,
862
+ // Whether the author's account has been deleted or not
863
+ deleted: boolean,
864
+ // The author's badge icon
865
+ badge: string,
866
+ } | {
867
+ // The author's name
868
+ name: string,
869
+ // The author's nickname
870
+ nickname: string,
871
+ // The author's avatar url
872
+ avatarUrl: string,
873
+ // The author's profile path
874
+ profilePath: string,
875
+ // Whether the author's account has been deleted or not
876
+ deleted: boolean,
877
+ // The author's badge icon
878
+ badge: string,
879
+ }
879
880
  ),
880
881
  // Whether the object can have new comments or not
881
882
  acceptsNewComments: boolean,
@@ -893,7 +894,7 @@ export interface GetCommentsQuery {
893
894
  downVoted: boolean,
894
895
  // The number of comment's downVotes
895
896
  downVotes: number,
896
- comments: Array< {
897
+ comments: Array<{
897
898
  // The Comment's unique ID
898
899
  id: string,
899
900
  // The Comment's signed global id
@@ -909,33 +910,33 @@ export interface GetCommentsQuery {
909
910
  // The creation date of the comment in relative format
910
911
  formattedCreatedAt: string,
911
912
  // The resource author
912
- author: ( {
913
- // The author's name
914
- name: string,
915
- // The author's nickname
916
- nickname: string,
917
- // The author's avatar url
918
- avatarUrl: string,
919
- // The author's profile path
920
- profilePath: string,
921
- // Whether the author's account has been deleted or not
922
- deleted: boolean,
923
- // The author's badge icon
924
- badge: string,
925
- } | {
926
- // The author's name
927
- name: string,
928
- // The author's nickname
929
- nickname: string,
930
- // The author's avatar url
931
- avatarUrl: string,
932
- // The author's profile path
933
- profilePath: string,
934
- // Whether the author's account has been deleted or not
935
- deleted: boolean,
936
- // The author's badge icon
937
- badge: string,
938
- }
913
+ author: ({
914
+ // The author's name
915
+ name: string,
916
+ // The author's nickname
917
+ nickname: string,
918
+ // The author's avatar url
919
+ avatarUrl: string,
920
+ // The author's profile path
921
+ profilePath: string,
922
+ // Whether the author's account has been deleted or not
923
+ deleted: boolean,
924
+ // The author's badge icon
925
+ badge: string,
926
+ } | {
927
+ // The author's name
928
+ name: string,
929
+ // The author's nickname
930
+ nickname: string,
931
+ // The author's avatar url
932
+ avatarUrl: string,
933
+ // The author's profile path
934
+ profilePath: string,
935
+ // Whether the author's account has been deleted or not
936
+ deleted: boolean,
937
+ // The author's badge icon
938
+ badge: string,
939
+ }
939
940
  ),
940
941
  // Check if the commentable has comments
941
942
  hasComments: boolean,
@@ -955,7 +956,7 @@ export interface GetCommentsQuery {
955
956
  downVoted: boolean,
956
957
  // The number of comment's downVotes
957
958
  downVotes: number,
958
- comments: Array< {
959
+ comments: Array<{
959
960
  // The Comment's unique ID
960
961
  id: string,
961
962
  // The Comment's signed global id
@@ -971,33 +972,33 @@ export interface GetCommentsQuery {
971
972
  // The creation date of the comment in relative format
972
973
  formattedCreatedAt: string,
973
974
  // The resource author
974
- author: ( {
975
- // The author's name
976
- name: string,
977
- // The author's nickname
978
- nickname: string,
979
- // The author's avatar url
980
- avatarUrl: string,
981
- // The author's profile path
982
- profilePath: string,
983
- // Whether the author's account has been deleted or not
984
- deleted: boolean,
985
- // The author's badge icon
986
- badge: string,
987
- } | {
988
- // The author's name
989
- name: string,
990
- // The author's nickname
991
- nickname: string,
992
- // The author's avatar url
993
- avatarUrl: string,
994
- // The author's profile path
995
- profilePath: string,
996
- // Whether the author's account has been deleted or not
997
- deleted: boolean,
998
- // The author's badge icon
999
- badge: string,
1000
- }
975
+ author: ({
976
+ // The author's name
977
+ name: string,
978
+ // The author's nickname
979
+ nickname: string,
980
+ // The author's avatar url
981
+ avatarUrl: string,
982
+ // The author's profile path
983
+ profilePath: string,
984
+ // Whether the author's account has been deleted or not
985
+ deleted: boolean,
986
+ // The author's badge icon
987
+ badge: string,
988
+ } | {
989
+ // The author's name
990
+ name: string,
991
+ // The author's nickname
992
+ nickname: string,
993
+ // The author's avatar url
994
+ avatarUrl: string,
995
+ // The author's profile path
996
+ profilePath: string,
997
+ // Whether the author's account has been deleted or not
998
+ deleted: boolean,
999
+ // The author's badge icon
1000
+ badge: string,
1001
+ }
1001
1002
  ),
1002
1003
  // Check if the commentable has comments
1003
1004
  hasComments: boolean,
@@ -1017,7 +1018,7 @@ export interface GetCommentsQuery {
1017
1018
  downVoted: boolean,
1018
1019
  // The number of comment's downVotes
1019
1020
  downVotes: number,
1020
- comments: Array< {
1021
+ comments: Array<{
1021
1022
  // The Comment's unique ID
1022
1023
  id: string,
1023
1024
  // The Comment's signed global id
@@ -1033,33 +1034,33 @@ export interface GetCommentsQuery {
1033
1034
  // The creation date of the comment in relative format
1034
1035
  formattedCreatedAt: string,
1035
1036
  // The resource author
1036
- author: ( {
1037
- // The author's name
1038
- name: string,
1039
- // The author's nickname
1040
- nickname: string,
1041
- // The author's avatar url
1042
- avatarUrl: string,
1043
- // The author's profile path
1044
- profilePath: string,
1045
- // Whether the author's account has been deleted or not
1046
- deleted: boolean,
1047
- // The author's badge icon
1048
- badge: string,
1049
- } | {
1050
- // The author's name
1051
- name: string,
1052
- // The author's nickname
1053
- nickname: string,
1054
- // The author's avatar url
1055
- avatarUrl: string,
1056
- // The author's profile path
1057
- profilePath: string,
1058
- // Whether the author's account has been deleted or not
1059
- deleted: boolean,
1060
- // The author's badge icon
1061
- badge: string,
1062
- }
1037
+ author: ({
1038
+ // The author's name
1039
+ name: string,
1040
+ // The author's nickname
1041
+ nickname: string,
1042
+ // The author's avatar url
1043
+ avatarUrl: string,
1044
+ // The author's profile path
1045
+ profilePath: string,
1046
+ // Whether the author's account has been deleted or not
1047
+ deleted: boolean,
1048
+ // The author's badge icon
1049
+ badge: string,
1050
+ } | {
1051
+ // The author's name
1052
+ name: string,
1053
+ // The author's nickname
1054
+ nickname: string,
1055
+ // The author's avatar url
1056
+ avatarUrl: string,
1057
+ // The author's profile path
1058
+ profilePath: string,
1059
+ // Whether the author's account has been deleted or not
1060
+ deleted: boolean,
1061
+ // The author's badge icon
1062
+ badge: string,
1063
+ }
1063
1064
  ),
1064
1065
  // Check if the commentable has comments
1065
1066
  hasComments: boolean,
@@ -1079,10 +1080,10 @@ export interface GetCommentsQuery {
1079
1080
  downVoted: boolean,
1080
1081
  // The number of comment's downVotes
1081
1082
  downVotes: number,
1082
- } >,
1083
- } >,
1084
- } >,
1085
- } >,
1083
+ }>,
1084
+ }>,
1085
+ }>,
1086
+ }>,
1086
1087
  // The commentable's ID
1087
1088
  id: string,
1088
1089
  // The commentable's class name. i.e. `Decidim::ParticipatoryProcess`
@@ -1099,12 +1100,12 @@ export interface AddCommentFormCommentableFragment {
1099
1100
 
1100
1101
  export interface AddCommentFormSessionFragment {
1101
1102
  // The current user verified user groups
1102
- verifiedUserGroups: Array< {
1103
+ verifiedUserGroups: Array<{
1103
1104
  // The user group's id
1104
1105
  id: string,
1105
1106
  // The user group's name
1106
1107
  name: string,
1107
- } >,
1108
+ }>,
1108
1109
  };
1109
1110
 
1110
1111
  export interface CommentFragment {
@@ -1123,33 +1124,33 @@ export interface CommentFragment {
1123
1124
  // The creation date of the comment in relative format
1124
1125
  formattedCreatedAt: string,
1125
1126
  // The resource author
1126
- author: ( {
1127
- // The author's name
1128
- name: string,
1129
- // The author's nickname
1130
- nickname: string,
1131
- // The author's avatar url
1132
- avatarUrl: string,
1133
- // The author's profile path
1134
- profilePath: string,
1135
- // Whether the author's account has been deleted or not
1136
- deleted: boolean,
1137
- // The author's badge icon
1138
- badge: string,
1139
- } | {
1140
- // The author's name
1141
- name: string,
1142
- // The author's nickname
1143
- nickname: string,
1144
- // The author's avatar url
1145
- avatarUrl: string,
1146
- // The author's profile path
1147
- profilePath: string,
1148
- // Whether the author's account has been deleted or not
1149
- deleted: boolean,
1150
- // The author's badge icon
1151
- badge: string,
1152
- }
1127
+ author: ({
1128
+ // The author's name
1129
+ name: string,
1130
+ // The author's nickname
1131
+ nickname: string,
1132
+ // The author's avatar url
1133
+ avatarUrl: string,
1134
+ // The author's profile path
1135
+ profilePath: string,
1136
+ // Whether the author's account has been deleted or not
1137
+ deleted: boolean,
1138
+ // The author's badge icon
1139
+ badge: string,
1140
+ } | {
1141
+ // The author's name
1142
+ name: string,
1143
+ // The author's nickname
1144
+ nickname: string,
1145
+ // The author's avatar url
1146
+ avatarUrl: string,
1147
+ // The author's profile path
1148
+ profilePath: string,
1149
+ // Whether the author's account has been deleted or not
1150
+ deleted: boolean,
1151
+ // The author's badge icon
1152
+ badge: string,
1153
+ }
1153
1154
  ),
1154
1155
  // Check if the commentable has comments
1155
1156
  hasComments: boolean,
@@ -1169,7 +1170,7 @@ export interface CommentFragment {
1169
1170
  downVoted: boolean,
1170
1171
  // The number of comment's downVotes
1171
1172
  downVotes: number,
1172
- comments: Array< {
1173
+ comments: Array<{
1173
1174
  // The Comment's unique ID
1174
1175
  id: string,
1175
1176
  // The Comment's signed global id
@@ -1185,33 +1186,33 @@ export interface CommentFragment {
1185
1186
  // The creation date of the comment in relative format
1186
1187
  formattedCreatedAt: string,
1187
1188
  // The resource author
1188
- author: ( {
1189
- // The author's name
1190
- name: string,
1191
- // The author's nickname
1192
- nickname: string,
1193
- // The author's avatar url
1194
- avatarUrl: string,
1195
- // The author's profile path
1196
- profilePath: string,
1197
- // Whether the author's account has been deleted or not
1198
- deleted: boolean,
1199
- // The author's badge icon
1200
- badge: string,
1201
- } | {
1202
- // The author's name
1203
- name: string,
1204
- // The author's nickname
1205
- nickname: string,
1206
- // The author's avatar url
1207
- avatarUrl: string,
1208
- // The author's profile path
1209
- profilePath: string,
1210
- // Whether the author's account has been deleted or not
1211
- deleted: boolean,
1212
- // The author's badge icon
1213
- badge: string,
1214
- }
1189
+ author: ({
1190
+ // The author's name
1191
+ name: string,
1192
+ // The author's nickname
1193
+ nickname: string,
1194
+ // The author's avatar url
1195
+ avatarUrl: string,
1196
+ // The author's profile path
1197
+ profilePath: string,
1198
+ // Whether the author's account has been deleted or not
1199
+ deleted: boolean,
1200
+ // The author's badge icon
1201
+ badge: string,
1202
+ } | {
1203
+ // The author's name
1204
+ name: string,
1205
+ // The author's nickname
1206
+ nickname: string,
1207
+ // The author's avatar url
1208
+ avatarUrl: string,
1209
+ // The author's profile path
1210
+ profilePath: string,
1211
+ // Whether the author's account has been deleted or not
1212
+ deleted: boolean,
1213
+ // The author's badge icon
1214
+ badge: string,
1215
+ }
1215
1216
  ),
1216
1217
  // Check if the commentable has comments
1217
1218
  hasComments: boolean,
@@ -1231,7 +1232,7 @@ export interface CommentFragment {
1231
1232
  downVoted: boolean,
1232
1233
  // The number of comment's downVotes
1233
1234
  downVotes: number,
1234
- comments: Array< {
1235
+ comments: Array<{
1235
1236
  // The Comment's unique ID
1236
1237
  id: string,
1237
1238
  // The Comment's signed global id
@@ -1247,33 +1248,33 @@ export interface CommentFragment {
1247
1248
  // The creation date of the comment in relative format
1248
1249
  formattedCreatedAt: string,
1249
1250
  // The resource author
1250
- author: ( {
1251
- // The author's name
1252
- name: string,
1253
- // The author's nickname
1254
- nickname: string,
1255
- // The author's avatar url
1256
- avatarUrl: string,
1257
- // The author's profile path
1258
- profilePath: string,
1259
- // Whether the author's account has been deleted or not
1260
- deleted: boolean,
1261
- // The author's badge icon
1262
- badge: string,
1263
- } | {
1264
- // The author's name
1265
- name: string,
1266
- // The author's nickname
1267
- nickname: string,
1268
- // The author's avatar url
1269
- avatarUrl: string,
1270
- // The author's profile path
1271
- profilePath: string,
1272
- // Whether the author's account has been deleted or not
1273
- deleted: boolean,
1274
- // The author's badge icon
1275
- badge: string,
1276
- }
1251
+ author: ({
1252
+ // The author's name
1253
+ name: string,
1254
+ // The author's nickname
1255
+ nickname: string,
1256
+ // The author's avatar url
1257
+ avatarUrl: string,
1258
+ // The author's profile path
1259
+ profilePath: string,
1260
+ // Whether the author's account has been deleted or not
1261
+ deleted: boolean,
1262
+ // The author's badge icon
1263
+ badge: string,
1264
+ } | {
1265
+ // The author's name
1266
+ name: string,
1267
+ // The author's nickname
1268
+ nickname: string,
1269
+ // The author's avatar url
1270
+ avatarUrl: string,
1271
+ // The author's profile path
1272
+ profilePath: string,
1273
+ // Whether the author's account has been deleted or not
1274
+ deleted: boolean,
1275
+ // The author's badge icon
1276
+ badge: string,
1277
+ }
1277
1278
  ),
1278
1279
  // Check if the commentable has comments
1279
1280
  hasComments: boolean,
@@ -1293,7 +1294,7 @@ export interface CommentFragment {
1293
1294
  downVoted: boolean,
1294
1295
  // The number of comment's downVotes
1295
1296
  downVotes: number,
1296
- comments: Array< {
1297
+ comments: Array<{
1297
1298
  // The Comment's unique ID
1298
1299
  id: string,
1299
1300
  // The Comment's signed global id
@@ -1309,33 +1310,33 @@ export interface CommentFragment {
1309
1310
  // The creation date of the comment in relative format
1310
1311
  formattedCreatedAt: string,
1311
1312
  // The resource author
1312
- author: ( {
1313
- // The author's name
1314
- name: string,
1315
- // The author's nickname
1316
- nickname: string,
1317
- // The author's avatar url
1318
- avatarUrl: string,
1319
- // The author's profile path
1320
- profilePath: string,
1321
- // Whether the author's account has been deleted or not
1322
- deleted: boolean,
1323
- // The author's badge icon
1324
- badge: string,
1325
- } | {
1326
- // The author's name
1327
- name: string,
1328
- // The author's nickname
1329
- nickname: string,
1330
- // The author's avatar url
1331
- avatarUrl: string,
1332
- // The author's profile path
1333
- profilePath: string,
1334
- // Whether the author's account has been deleted or not
1335
- deleted: boolean,
1336
- // The author's badge icon
1337
- badge: string,
1338
- }
1313
+ author: ({
1314
+ // The author's name
1315
+ name: string,
1316
+ // The author's nickname
1317
+ nickname: string,
1318
+ // The author's avatar url
1319
+ avatarUrl: string,
1320
+ // The author's profile path
1321
+ profilePath: string,
1322
+ // Whether the author's account has been deleted or not
1323
+ deleted: boolean,
1324
+ // The author's badge icon
1325
+ badge: string,
1326
+ } | {
1327
+ // The author's name
1328
+ name: string,
1329
+ // The author's nickname
1330
+ nickname: string,
1331
+ // The author's avatar url
1332
+ avatarUrl: string,
1333
+ // The author's profile path
1334
+ profilePath: string,
1335
+ // Whether the author's account has been deleted or not
1336
+ deleted: boolean,
1337
+ // The author's badge icon
1338
+ badge: string,
1339
+ }
1339
1340
  ),
1340
1341
  // Check if the commentable has comments
1341
1342
  hasComments: boolean,
@@ -1355,9 +1356,9 @@ export interface CommentFragment {
1355
1356
  downVoted: boolean,
1356
1357
  // The number of comment's downVotes
1357
1358
  downVotes: number,
1358
- } >,
1359
- } >,
1360
- } >,
1359
+ }>,
1360
+ }>,
1361
+ }>,
1361
1362
  };
1362
1363
 
1363
1364
  export interface CommentDataFragment {
@@ -1376,33 +1377,33 @@ export interface CommentDataFragment {
1376
1377
  // The creation date of the comment in relative format
1377
1378
  formattedCreatedAt: string,
1378
1379
  // The resource author
1379
- author: ( {
1380
- // The author's name
1381
- name: string,
1382
- // The author's nickname
1383
- nickname: string,
1384
- // The author's avatar url
1385
- avatarUrl: string,
1386
- // The author's profile path
1387
- profilePath: string,
1388
- // Whether the author's account has been deleted or not
1389
- deleted: boolean,
1390
- // The author's badge icon
1391
- badge: string,
1392
- } | {
1393
- // The author's name
1394
- name: string,
1395
- // The author's nickname
1396
- nickname: string,
1397
- // The author's avatar url
1398
- avatarUrl: string,
1399
- // The author's profile path
1400
- profilePath: string,
1401
- // Whether the author's account has been deleted or not
1402
- deleted: boolean,
1403
- // The author's badge icon
1404
- badge: string,
1405
- }
1380
+ author: ({
1381
+ // The author's name
1382
+ name: string,
1383
+ // The author's nickname
1384
+ nickname: string,
1385
+ // The author's avatar url
1386
+ avatarUrl: string,
1387
+ // The author's profile path
1388
+ profilePath: string,
1389
+ // Whether the author's account has been deleted or not
1390
+ deleted: boolean,
1391
+ // The author's badge icon
1392
+ badge: string,
1393
+ } | {
1394
+ // The author's name
1395
+ name: string,
1396
+ // The author's nickname
1397
+ nickname: string,
1398
+ // The author's avatar url
1399
+ avatarUrl: string,
1400
+ // The author's profile path
1401
+ profilePath: string,
1402
+ // Whether the author's account has been deleted or not
1403
+ deleted: boolean,
1404
+ // The author's badge icon
1405
+ badge: string,
1406
+ }
1406
1407
  ),
1407
1408
  // Check if the commentable has comments
1408
1409
  hasComments: boolean,
@@ -1442,33 +1443,33 @@ export interface CommentThreadFragment {
1442
1443
  // The creation date of the comment in relative format
1443
1444
  formattedCreatedAt: string,
1444
1445
  // The resource author
1445
- author: ( {
1446
- // The author's name
1447
- name: string,
1448
- // The author's nickname
1449
- nickname: string,
1450
- // The author's avatar url
1451
- avatarUrl: string,
1452
- // The author's profile path
1453
- profilePath: string,
1454
- // Whether the author's account has been deleted or not
1455
- deleted: boolean,
1456
- // The author's badge icon
1457
- badge: string,
1458
- } | {
1459
- // The author's name
1460
- name: string,
1461
- // The author's nickname
1462
- nickname: string,
1463
- // The author's avatar url
1464
- avatarUrl: string,
1465
- // The author's profile path
1466
- profilePath: string,
1467
- // Whether the author's account has been deleted or not
1468
- deleted: boolean,
1469
- // The author's badge icon
1470
- badge: string,
1471
- }
1446
+ author: ({
1447
+ // The author's name
1448
+ name: string,
1449
+ // The author's nickname
1450
+ nickname: string,
1451
+ // The author's avatar url
1452
+ avatarUrl: string,
1453
+ // The author's profile path
1454
+ profilePath: string,
1455
+ // Whether the author's account has been deleted or not
1456
+ deleted: boolean,
1457
+ // The author's badge icon
1458
+ badge: string,
1459
+ } | {
1460
+ // The author's name
1461
+ name: string,
1462
+ // The author's nickname
1463
+ nickname: string,
1464
+ // The author's avatar url
1465
+ avatarUrl: string,
1466
+ // The author's profile path
1467
+ profilePath: string,
1468
+ // Whether the author's account has been deleted or not
1469
+ deleted: boolean,
1470
+ // The author's badge icon
1471
+ badge: string,
1472
+ }
1472
1473
  ),
1473
1474
  // Whether the object can have new comments or not
1474
1475
  acceptsNewComments: boolean,
@@ -1486,7 +1487,7 @@ export interface CommentThreadFragment {
1486
1487
  downVoted: boolean,
1487
1488
  // The number of comment's downVotes
1488
1489
  downVotes: number,
1489
- comments: Array< {
1490
+ comments: Array<{
1490
1491
  // The Comment's unique ID
1491
1492
  id: string,
1492
1493
  // The Comment's signed global id
@@ -1502,33 +1503,33 @@ export interface CommentThreadFragment {
1502
1503
  // The creation date of the comment in relative format
1503
1504
  formattedCreatedAt: string,
1504
1505
  // The resource author
1505
- author: ( {
1506
- // The author's name
1507
- name: string,
1508
- // The author's nickname
1509
- nickname: string,
1510
- // The author's avatar url
1511
- avatarUrl: string,
1512
- // The author's profile path
1513
- profilePath: string,
1514
- // Whether the author's account has been deleted or not
1515
- deleted: boolean,
1516
- // The author's badge icon
1517
- badge: string,
1518
- } | {
1519
- // The author's name
1520
- name: string,
1521
- // The author's nickname
1522
- nickname: string,
1523
- // The author's avatar url
1524
- avatarUrl: string,
1525
- // The author's profile path
1526
- profilePath: string,
1527
- // Whether the author's account has been deleted or not
1528
- deleted: boolean,
1529
- // The author's badge icon
1530
- badge: string,
1531
- }
1506
+ author: ({
1507
+ // The author's name
1508
+ name: string,
1509
+ // The author's nickname
1510
+ nickname: string,
1511
+ // The author's avatar url
1512
+ avatarUrl: string,
1513
+ // The author's profile path
1514
+ profilePath: string,
1515
+ // Whether the author's account has been deleted or not
1516
+ deleted: boolean,
1517
+ // The author's badge icon
1518
+ badge: string,
1519
+ } | {
1520
+ // The author's name
1521
+ name: string,
1522
+ // The author's nickname
1523
+ nickname: string,
1524
+ // The author's avatar url
1525
+ avatarUrl: string,
1526
+ // The author's profile path
1527
+ profilePath: string,
1528
+ // Whether the author's account has been deleted or not
1529
+ deleted: boolean,
1530
+ // The author's badge icon
1531
+ badge: string,
1532
+ }
1532
1533
  ),
1533
1534
  // Check if the commentable has comments
1534
1535
  hasComments: boolean,
@@ -1548,7 +1549,7 @@ export interface CommentThreadFragment {
1548
1549
  downVoted: boolean,
1549
1550
  // The number of comment's downVotes
1550
1551
  downVotes: number,
1551
- comments: Array< {
1552
+ comments: Array<{
1552
1553
  // The Comment's unique ID
1553
1554
  id: string,
1554
1555
  // The Comment's signed global id
@@ -1564,33 +1565,33 @@ export interface CommentThreadFragment {
1564
1565
  // The creation date of the comment in relative format
1565
1566
  formattedCreatedAt: string,
1566
1567
  // The resource author
1567
- author: ( {
1568
- // The author's name
1569
- name: string,
1570
- // The author's nickname
1571
- nickname: string,
1572
- // The author's avatar url
1573
- avatarUrl: string,
1574
- // The author's profile path
1575
- profilePath: string,
1576
- // Whether the author's account has been deleted or not
1577
- deleted: boolean,
1578
- // The author's badge icon
1579
- badge: string,
1580
- } | {
1581
- // The author's name
1582
- name: string,
1583
- // The author's nickname
1584
- nickname: string,
1585
- // The author's avatar url
1586
- avatarUrl: string,
1587
- // The author's profile path
1588
- profilePath: string,
1589
- // Whether the author's account has been deleted or not
1590
- deleted: boolean,
1591
- // The author's badge icon
1592
- badge: string,
1593
- }
1568
+ author: ({
1569
+ // The author's name
1570
+ name: string,
1571
+ // The author's nickname
1572
+ nickname: string,
1573
+ // The author's avatar url
1574
+ avatarUrl: string,
1575
+ // The author's profile path
1576
+ profilePath: string,
1577
+ // Whether the author's account has been deleted or not
1578
+ deleted: boolean,
1579
+ // The author's badge icon
1580
+ badge: string,
1581
+ } | {
1582
+ // The author's name
1583
+ name: string,
1584
+ // The author's nickname
1585
+ nickname: string,
1586
+ // The author's avatar url
1587
+ avatarUrl: string,
1588
+ // The author's profile path
1589
+ profilePath: string,
1590
+ // Whether the author's account has been deleted or not
1591
+ deleted: boolean,
1592
+ // The author's badge icon
1593
+ badge: string,
1594
+ }
1594
1595
  ),
1595
1596
  // Check if the commentable has comments
1596
1597
  hasComments: boolean,
@@ -1610,7 +1611,7 @@ export interface CommentThreadFragment {
1610
1611
  downVoted: boolean,
1611
1612
  // The number of comment's downVotes
1612
1613
  downVotes: number,
1613
- comments: Array< {
1614
+ comments: Array<{
1614
1615
  // The Comment's unique ID
1615
1616
  id: string,
1616
1617
  // The Comment's signed global id
@@ -1626,33 +1627,33 @@ export interface CommentThreadFragment {
1626
1627
  // The creation date of the comment in relative format
1627
1628
  formattedCreatedAt: string,
1628
1629
  // The resource author
1629
- author: ( {
1630
- // The author's name
1631
- name: string,
1632
- // The author's nickname
1633
- nickname: string,
1634
- // The author's avatar url
1635
- avatarUrl: string,
1636
- // The author's profile path
1637
- profilePath: string,
1638
- // Whether the author's account has been deleted or not
1639
- deleted: boolean,
1640
- // The author's badge icon
1641
- badge: string,
1642
- } | {
1643
- // The author's name
1644
- name: string,
1645
- // The author's nickname
1646
- nickname: string,
1647
- // The author's avatar url
1648
- avatarUrl: string,
1649
- // The author's profile path
1650
- profilePath: string,
1651
- // Whether the author's account has been deleted or not
1652
- deleted: boolean,
1653
- // The author's badge icon
1654
- badge: string,
1655
- }
1630
+ author: ({
1631
+ // The author's name
1632
+ name: string,
1633
+ // The author's nickname
1634
+ nickname: string,
1635
+ // The author's avatar url
1636
+ avatarUrl: string,
1637
+ // The author's profile path
1638
+ profilePath: string,
1639
+ // Whether the author's account has been deleted or not
1640
+ deleted: boolean,
1641
+ // The author's badge icon
1642
+ badge: string,
1643
+ } | {
1644
+ // The author's name
1645
+ name: string,
1646
+ // The author's nickname
1647
+ nickname: string,
1648
+ // The author's avatar url
1649
+ avatarUrl: string,
1650
+ // The author's profile path
1651
+ profilePath: string,
1652
+ // Whether the author's account has been deleted or not
1653
+ deleted: boolean,
1654
+ // The author's badge icon
1655
+ badge: string,
1656
+ }
1656
1657
  ),
1657
1658
  // Check if the commentable has comments
1658
1659
  hasComments: boolean,
@@ -1672,9 +1673,9 @@ export interface CommentThreadFragment {
1672
1673
  downVoted: boolean,
1673
1674
  // The number of comment's downVotes
1674
1675
  downVotes: number,
1675
- } >,
1676
- } >,
1677
- } >,
1676
+ }>,
1677
+ }>,
1678
+ }>,
1678
1679
  };
1679
1680
 
1680
1681
  export interface DownVoteButtonFragment {