decidim-bulletin_board 0.5.1 → 0.5.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7338968926bbc16e964d828f014f50bb4e1d9f74846daac9a857b586687466c7
4
- data.tar.gz: dda3edd9f06e01fad9a058be3672f9027009b8fca3012adf8e8ee00b408a665e
3
+ metadata.gz: e69fb442630c7d04ed6cfdc004cc3b506ca987460a469ee74b8d71e630847b07
4
+ data.tar.gz: 861659a24c977974292c1ccf6bae03bf7612a49cef273e4d9b255948f27fb62f
5
5
  SHA512:
6
- metadata.gz: 5ade03088b4e6a998dffced0d0efa1ee0169b4ed9614f2634e303c93cc62256748cb7189604879d0d813675d3437a8963b8c54272e25ffc78245d10d583b0e54
7
- data.tar.gz: 4b7fdac495b5fce86c0b50b03069ef154041a43ed1c0db257bad5d7667cefbcaf45d51295d190ad3c16f56abdd3b3298daeb00dd57e1da78fb9630b1520a4ae1
6
+ metadata.gz: 2fcdbdd6ef5c86ec9eea427821ec57f49a750b6be07af70fc70b8872d5c1037f447b51929335f03c099b4d805babb66a16ff7774aebf05ff9621a75c6c607dbe
7
+ data.tar.gz: f7563d4dd1d65a3be3528ceccf3dc1dbe2af597407d8a42a1d799adaa6487f575b1b2839e018459d1f6a131c0953c36fef3080e960052c1a21f7ee8242168a0d
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.5.2] - 2020-12-20
9
+
10
+ ### Fixed
11
+
12
+ - Include the schema definition within the gem to avoid extra trips to the server
13
+
8
14
  ## [0.5.1] - 2020-12-19
9
15
 
10
16
  ### Fixed
@@ -0,0 +1,2261 @@
1
+ {
2
+ "data": {
3
+ "__schema": {
4
+ "queryType": {
5
+ "name": "Query"
6
+ },
7
+ "mutationType": {
8
+ "name": "Mutation"
9
+ },
10
+ "subscriptionType": {
11
+ "name": "Subscription"
12
+ },
13
+ "types": [
14
+ {
15
+ "kind": "SCALAR",
16
+ "name": "Boolean",
17
+ "description": "Represents `true` or `false` values.",
18
+ "fields": null,
19
+ "inputFields": null,
20
+ "interfaces": null,
21
+ "enumValues": null,
22
+ "possibleTypes": null
23
+ },
24
+ {
25
+ "kind": "OBJECT",
26
+ "name": "Client",
27
+ "description": null,
28
+ "fields": [
29
+ {
30
+ "name": "id",
31
+ "description": null,
32
+ "args": [
33
+
34
+ ],
35
+ "type": {
36
+ "kind": "NON_NULL",
37
+ "name": null,
38
+ "ofType": {
39
+ "kind": "SCALAR",
40
+ "name": "ID",
41
+ "ofType": null
42
+ }
43
+ },
44
+ "isDeprecated": false,
45
+ "deprecationReason": null
46
+ },
47
+ {
48
+ "name": "name",
49
+ "description": null,
50
+ "args": [
51
+
52
+ ],
53
+ "type": {
54
+ "kind": "NON_NULL",
55
+ "name": null,
56
+ "ofType": {
57
+ "kind": "SCALAR",
58
+ "name": "String",
59
+ "ofType": null
60
+ }
61
+ },
62
+ "isDeprecated": false,
63
+ "deprecationReason": null
64
+ },
65
+ {
66
+ "name": "publicKey",
67
+ "description": null,
68
+ "args": [
69
+
70
+ ],
71
+ "type": {
72
+ "kind": "SCALAR",
73
+ "name": "JSON",
74
+ "ofType": null
75
+ },
76
+ "isDeprecated": false,
77
+ "deprecationReason": null
78
+ },
79
+ {
80
+ "name": "publicKeyThumbprint",
81
+ "description": null,
82
+ "args": [
83
+
84
+ ],
85
+ "type": {
86
+ "kind": "SCALAR",
87
+ "name": "String",
88
+ "ofType": null
89
+ },
90
+ "isDeprecated": false,
91
+ "deprecationReason": null
92
+ },
93
+ {
94
+ "name": "type",
95
+ "description": null,
96
+ "args": [
97
+
98
+ ],
99
+ "type": {
100
+ "kind": "NON_NULL",
101
+ "name": null,
102
+ "ofType": {
103
+ "kind": "SCALAR",
104
+ "name": "String",
105
+ "ofType": null
106
+ }
107
+ },
108
+ "isDeprecated": false,
109
+ "deprecationReason": null
110
+ }
111
+ ],
112
+ "inputFields": null,
113
+ "interfaces": [
114
+
115
+ ],
116
+ "enumValues": null,
117
+ "possibleTypes": null
118
+ },
119
+ {
120
+ "kind": "OBJECT",
121
+ "name": "CloseBallotBoxMutationPayload",
122
+ "description": "Autogenerated return type of CloseBallotBoxMutation",
123
+ "fields": [
124
+ {
125
+ "name": "election",
126
+ "description": null,
127
+ "args": [
128
+
129
+ ],
130
+ "type": {
131
+ "kind": "OBJECT",
132
+ "name": "Election",
133
+ "ofType": null
134
+ },
135
+ "isDeprecated": false,
136
+ "deprecationReason": null
137
+ },
138
+ {
139
+ "name": "error",
140
+ "description": null,
141
+ "args": [
142
+
143
+ ],
144
+ "type": {
145
+ "kind": "SCALAR",
146
+ "name": "String",
147
+ "ofType": null
148
+ },
149
+ "isDeprecated": false,
150
+ "deprecationReason": null
151
+ }
152
+ ],
153
+ "inputFields": null,
154
+ "interfaces": [
155
+
156
+ ],
157
+ "enumValues": null,
158
+ "possibleTypes": null
159
+ },
160
+ {
161
+ "kind": "OBJECT",
162
+ "name": "CreateElectionMutationPayload",
163
+ "description": "Autogenerated return type of CreateElectionMutation",
164
+ "fields": [
165
+ {
166
+ "name": "election",
167
+ "description": null,
168
+ "args": [
169
+
170
+ ],
171
+ "type": {
172
+ "kind": "OBJECT",
173
+ "name": "Election",
174
+ "ofType": null
175
+ },
176
+ "isDeprecated": false,
177
+ "deprecationReason": null
178
+ },
179
+ {
180
+ "name": "error",
181
+ "description": null,
182
+ "args": [
183
+
184
+ ],
185
+ "type": {
186
+ "kind": "SCALAR",
187
+ "name": "String",
188
+ "ofType": null
189
+ },
190
+ "isDeprecated": false,
191
+ "deprecationReason": null
192
+ }
193
+ ],
194
+ "inputFields": null,
195
+ "interfaces": [
196
+
197
+ ],
198
+ "enumValues": null,
199
+ "possibleTypes": null
200
+ },
201
+ {
202
+ "kind": "OBJECT",
203
+ "name": "Election",
204
+ "description": null,
205
+ "fields": [
206
+ {
207
+ "name": "authority",
208
+ "description": null,
209
+ "args": [
210
+
211
+ ],
212
+ "type": {
213
+ "kind": "NON_NULL",
214
+ "name": null,
215
+ "ofType": {
216
+ "kind": "OBJECT",
217
+ "name": "Client",
218
+ "ofType": null
219
+ }
220
+ },
221
+ "isDeprecated": false,
222
+ "deprecationReason": null
223
+ },
224
+ {
225
+ "name": "id",
226
+ "description": null,
227
+ "args": [
228
+
229
+ ],
230
+ "type": {
231
+ "kind": "NON_NULL",
232
+ "name": null,
233
+ "ofType": {
234
+ "kind": "SCALAR",
235
+ "name": "ID",
236
+ "ofType": null
237
+ }
238
+ },
239
+ "isDeprecated": false,
240
+ "deprecationReason": null
241
+ },
242
+ {
243
+ "name": "logEntries",
244
+ "description": "Returns the list of log entries for this election in the bulletin board",
245
+ "args": [
246
+
247
+ ],
248
+ "type": {
249
+ "kind": "NON_NULL",
250
+ "name": null,
251
+ "ofType": {
252
+ "kind": "LIST",
253
+ "name": null,
254
+ "ofType": {
255
+ "kind": "NON_NULL",
256
+ "name": null,
257
+ "ofType": {
258
+ "kind": "OBJECT",
259
+ "name": "LogEntry",
260
+ "ofType": null
261
+ }
262
+ }
263
+ }
264
+ },
265
+ "isDeprecated": false,
266
+ "deprecationReason": null
267
+ },
268
+ {
269
+ "name": "status",
270
+ "description": null,
271
+ "args": [
272
+
273
+ ],
274
+ "type": {
275
+ "kind": "NON_NULL",
276
+ "name": null,
277
+ "ofType": {
278
+ "kind": "SCALAR",
279
+ "name": "String",
280
+ "ofType": null
281
+ }
282
+ },
283
+ "isDeprecated": false,
284
+ "deprecationReason": null
285
+ },
286
+ {
287
+ "name": "title",
288
+ "description": null,
289
+ "args": [
290
+
291
+ ],
292
+ "type": {
293
+ "kind": "NON_NULL",
294
+ "name": null,
295
+ "ofType": {
296
+ "kind": "SCALAR",
297
+ "name": "String",
298
+ "ofType": null
299
+ }
300
+ },
301
+ "isDeprecated": false,
302
+ "deprecationReason": null
303
+ },
304
+ {
305
+ "name": "trustees",
306
+ "description": "Returns the list of trustees for this election",
307
+ "args": [
308
+
309
+ ],
310
+ "type": {
311
+ "kind": "NON_NULL",
312
+ "name": null,
313
+ "ofType": {
314
+ "kind": "LIST",
315
+ "name": null,
316
+ "ofType": {
317
+ "kind": "NON_NULL",
318
+ "name": null,
319
+ "ofType": {
320
+ "kind": "OBJECT",
321
+ "name": "Client",
322
+ "ofType": null
323
+ }
324
+ }
325
+ }
326
+ },
327
+ "isDeprecated": false,
328
+ "deprecationReason": null
329
+ }
330
+ ],
331
+ "inputFields": null,
332
+ "interfaces": [
333
+
334
+ ],
335
+ "enumValues": null,
336
+ "possibleTypes": null
337
+ },
338
+ {
339
+ "kind": "OBJECT",
340
+ "name": "ElectionLogEntryAddedPayload",
341
+ "description": "Autogenerated return type of ElectionLogEntryAdded",
342
+ "fields": [
343
+ {
344
+ "name": "logEntry",
345
+ "description": null,
346
+ "args": [
347
+
348
+ ],
349
+ "type": {
350
+ "kind": "NON_NULL",
351
+ "name": null,
352
+ "ofType": {
353
+ "kind": "OBJECT",
354
+ "name": "LogEntry",
355
+ "ofType": null
356
+ }
357
+ },
358
+ "isDeprecated": false,
359
+ "deprecationReason": null
360
+ }
361
+ ],
362
+ "inputFields": null,
363
+ "interfaces": [
364
+
365
+ ],
366
+ "enumValues": null,
367
+ "possibleTypes": null
368
+ },
369
+ {
370
+ "kind": "SCALAR",
371
+ "name": "ID",
372
+ "description": "Represents a unique identifier that is Base64 obfuscated. It is often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"VXNlci0xMA==\"`) or integer (such as `4`) input value will be accepted as an ID.",
373
+ "fields": null,
374
+ "inputFields": null,
375
+ "interfaces": null,
376
+ "enumValues": null,
377
+ "possibleTypes": null
378
+ },
379
+ {
380
+ "kind": "SCALAR",
381
+ "name": "JSON",
382
+ "description": "Represents untyped JSON",
383
+ "fields": null,
384
+ "inputFields": null,
385
+ "interfaces": null,
386
+ "enumValues": null,
387
+ "possibleTypes": null
388
+ },
389
+ {
390
+ "kind": "OBJECT",
391
+ "name": "LogEntry",
392
+ "description": null,
393
+ "fields": [
394
+ {
395
+ "name": "chainedHash",
396
+ "description": null,
397
+ "args": [
398
+
399
+ ],
400
+ "type": {
401
+ "kind": "NON_NULL",
402
+ "name": null,
403
+ "ofType": {
404
+ "kind": "SCALAR",
405
+ "name": "String",
406
+ "ofType": null
407
+ }
408
+ },
409
+ "isDeprecated": false,
410
+ "deprecationReason": null
411
+ },
412
+ {
413
+ "name": "client",
414
+ "description": null,
415
+ "args": [
416
+
417
+ ],
418
+ "type": {
419
+ "kind": "NON_NULL",
420
+ "name": null,
421
+ "ofType": {
422
+ "kind": "OBJECT",
423
+ "name": "Client",
424
+ "ofType": null
425
+ }
426
+ },
427
+ "isDeprecated": false,
428
+ "deprecationReason": null
429
+ },
430
+ {
431
+ "name": "contentHash",
432
+ "description": null,
433
+ "args": [
434
+
435
+ ],
436
+ "type": {
437
+ "kind": "NON_NULL",
438
+ "name": null,
439
+ "ofType": {
440
+ "kind": "SCALAR",
441
+ "name": "String",
442
+ "ofType": null
443
+ }
444
+ },
445
+ "isDeprecated": false,
446
+ "deprecationReason": null
447
+ },
448
+ {
449
+ "name": "election",
450
+ "description": null,
451
+ "args": [
452
+
453
+ ],
454
+ "type": {
455
+ "kind": "NON_NULL",
456
+ "name": null,
457
+ "ofType": {
458
+ "kind": "OBJECT",
459
+ "name": "Election",
460
+ "ofType": null
461
+ }
462
+ },
463
+ "isDeprecated": false,
464
+ "deprecationReason": null
465
+ },
466
+ {
467
+ "name": "id",
468
+ "description": null,
469
+ "args": [
470
+
471
+ ],
472
+ "type": {
473
+ "kind": "NON_NULL",
474
+ "name": null,
475
+ "ofType": {
476
+ "kind": "SCALAR",
477
+ "name": "ID",
478
+ "ofType": null
479
+ }
480
+ },
481
+ "isDeprecated": false,
482
+ "deprecationReason": null
483
+ },
484
+ {
485
+ "name": "messageId",
486
+ "description": null,
487
+ "args": [
488
+
489
+ ],
490
+ "type": {
491
+ "kind": "NON_NULL",
492
+ "name": null,
493
+ "ofType": {
494
+ "kind": "SCALAR",
495
+ "name": "String",
496
+ "ofType": null
497
+ }
498
+ },
499
+ "isDeprecated": false,
500
+ "deprecationReason": null
501
+ },
502
+ {
503
+ "name": "signedData",
504
+ "description": null,
505
+ "args": [
506
+
507
+ ],
508
+ "type": {
509
+ "kind": "NON_NULL",
510
+ "name": null,
511
+ "ofType": {
512
+ "kind": "SCALAR",
513
+ "name": "String",
514
+ "ofType": null
515
+ }
516
+ },
517
+ "isDeprecated": false,
518
+ "deprecationReason": null
519
+ }
520
+ ],
521
+ "inputFields": null,
522
+ "interfaces": [
523
+
524
+ ],
525
+ "enumValues": null,
526
+ "possibleTypes": null
527
+ },
528
+ {
529
+ "kind": "OBJECT",
530
+ "name": "Mutation",
531
+ "description": null,
532
+ "fields": [
533
+ {
534
+ "name": "closeBallotBox",
535
+ "description": null,
536
+ "args": [
537
+ {
538
+ "name": "messageId",
539
+ "description": null,
540
+ "type": {
541
+ "kind": "NON_NULL",
542
+ "name": null,
543
+ "ofType": {
544
+ "kind": "SCALAR",
545
+ "name": "String",
546
+ "ofType": null
547
+ }
548
+ },
549
+ "defaultValue": null
550
+ },
551
+ {
552
+ "name": "signedData",
553
+ "description": null,
554
+ "type": {
555
+ "kind": "NON_NULL",
556
+ "name": null,
557
+ "ofType": {
558
+ "kind": "SCALAR",
559
+ "name": "String",
560
+ "ofType": null
561
+ }
562
+ },
563
+ "defaultValue": null
564
+ }
565
+ ],
566
+ "type": {
567
+ "kind": "OBJECT",
568
+ "name": "CloseBallotBoxMutationPayload",
569
+ "ofType": null
570
+ },
571
+ "isDeprecated": false,
572
+ "deprecationReason": null
573
+ },
574
+ {
575
+ "name": "createElection",
576
+ "description": null,
577
+ "args": [
578
+ {
579
+ "name": "messageId",
580
+ "description": null,
581
+ "type": {
582
+ "kind": "NON_NULL",
583
+ "name": null,
584
+ "ofType": {
585
+ "kind": "SCALAR",
586
+ "name": "String",
587
+ "ofType": null
588
+ }
589
+ },
590
+ "defaultValue": null
591
+ },
592
+ {
593
+ "name": "signedData",
594
+ "description": null,
595
+ "type": {
596
+ "kind": "NON_NULL",
597
+ "name": null,
598
+ "ofType": {
599
+ "kind": "SCALAR",
600
+ "name": "String",
601
+ "ofType": null
602
+ }
603
+ },
604
+ "defaultValue": null
605
+ }
606
+ ],
607
+ "type": {
608
+ "kind": "OBJECT",
609
+ "name": "CreateElectionMutationPayload",
610
+ "ofType": null
611
+ },
612
+ "isDeprecated": false,
613
+ "deprecationReason": null
614
+ },
615
+ {
616
+ "name": "openBallotBox",
617
+ "description": null,
618
+ "args": [
619
+ {
620
+ "name": "messageId",
621
+ "description": null,
622
+ "type": {
623
+ "kind": "NON_NULL",
624
+ "name": null,
625
+ "ofType": {
626
+ "kind": "SCALAR",
627
+ "name": "String",
628
+ "ofType": null
629
+ }
630
+ },
631
+ "defaultValue": null
632
+ },
633
+ {
634
+ "name": "signedData",
635
+ "description": null,
636
+ "type": {
637
+ "kind": "NON_NULL",
638
+ "name": null,
639
+ "ofType": {
640
+ "kind": "SCALAR",
641
+ "name": "String",
642
+ "ofType": null
643
+ }
644
+ },
645
+ "defaultValue": null
646
+ }
647
+ ],
648
+ "type": {
649
+ "kind": "OBJECT",
650
+ "name": "OpenBallotBoxMutationPayload",
651
+ "ofType": null
652
+ },
653
+ "isDeprecated": false,
654
+ "deprecationReason": null
655
+ },
656
+ {
657
+ "name": "processKeyCeremonyStep",
658
+ "description": null,
659
+ "args": [
660
+ {
661
+ "name": "messageId",
662
+ "description": null,
663
+ "type": {
664
+ "kind": "NON_NULL",
665
+ "name": null,
666
+ "ofType": {
667
+ "kind": "SCALAR",
668
+ "name": "String",
669
+ "ofType": null
670
+ }
671
+ },
672
+ "defaultValue": null
673
+ },
674
+ {
675
+ "name": "signedData",
676
+ "description": null,
677
+ "type": {
678
+ "kind": "NON_NULL",
679
+ "name": null,
680
+ "ofType": {
681
+ "kind": "SCALAR",
682
+ "name": "String",
683
+ "ofType": null
684
+ }
685
+ },
686
+ "defaultValue": null
687
+ }
688
+ ],
689
+ "type": {
690
+ "kind": "OBJECT",
691
+ "name": "ProcessKeyCeremonyStepMutationPayload",
692
+ "ofType": null
693
+ },
694
+ "isDeprecated": false,
695
+ "deprecationReason": null
696
+ },
697
+ {
698
+ "name": "vote",
699
+ "description": null,
700
+ "args": [
701
+ {
702
+ "name": "messageId",
703
+ "description": null,
704
+ "type": {
705
+ "kind": "NON_NULL",
706
+ "name": null,
707
+ "ofType": {
708
+ "kind": "SCALAR",
709
+ "name": "String",
710
+ "ofType": null
711
+ }
712
+ },
713
+ "defaultValue": null
714
+ },
715
+ {
716
+ "name": "signedData",
717
+ "description": null,
718
+ "type": {
719
+ "kind": "NON_NULL",
720
+ "name": null,
721
+ "ofType": {
722
+ "kind": "SCALAR",
723
+ "name": "String",
724
+ "ofType": null
725
+ }
726
+ },
727
+ "defaultValue": null
728
+ }
729
+ ],
730
+ "type": {
731
+ "kind": "OBJECT",
732
+ "name": "VoteMutationPayload",
733
+ "ofType": null
734
+ },
735
+ "isDeprecated": false,
736
+ "deprecationReason": null
737
+ }
738
+ ],
739
+ "inputFields": null,
740
+ "interfaces": [
741
+
742
+ ],
743
+ "enumValues": null,
744
+ "possibleTypes": null
745
+ },
746
+ {
747
+ "kind": "OBJECT",
748
+ "name": "OpenBallotBoxMutationPayload",
749
+ "description": "Autogenerated return type of OpenBallotBoxMutation",
750
+ "fields": [
751
+ {
752
+ "name": "election",
753
+ "description": null,
754
+ "args": [
755
+
756
+ ],
757
+ "type": {
758
+ "kind": "OBJECT",
759
+ "name": "Election",
760
+ "ofType": null
761
+ },
762
+ "isDeprecated": false,
763
+ "deprecationReason": null
764
+ },
765
+ {
766
+ "name": "error",
767
+ "description": null,
768
+ "args": [
769
+
770
+ ],
771
+ "type": {
772
+ "kind": "SCALAR",
773
+ "name": "String",
774
+ "ofType": null
775
+ },
776
+ "isDeprecated": false,
777
+ "deprecationReason": null
778
+ }
779
+ ],
780
+ "inputFields": null,
781
+ "interfaces": [
782
+
783
+ ],
784
+ "enumValues": null,
785
+ "possibleTypes": null
786
+ },
787
+ {
788
+ "kind": "OBJECT",
789
+ "name": "PendingMessage",
790
+ "description": null,
791
+ "fields": [
792
+ {
793
+ "name": "client",
794
+ "description": null,
795
+ "args": [
796
+
797
+ ],
798
+ "type": {
799
+ "kind": "NON_NULL",
800
+ "name": null,
801
+ "ofType": {
802
+ "kind": "OBJECT",
803
+ "name": "Client",
804
+ "ofType": null
805
+ }
806
+ },
807
+ "isDeprecated": false,
808
+ "deprecationReason": null
809
+ },
810
+ {
811
+ "name": "election",
812
+ "description": null,
813
+ "args": [
814
+
815
+ ],
816
+ "type": {
817
+ "kind": "OBJECT",
818
+ "name": "Election",
819
+ "ofType": null
820
+ },
821
+ "isDeprecated": false,
822
+ "deprecationReason": null
823
+ },
824
+ {
825
+ "name": "id",
826
+ "description": null,
827
+ "args": [
828
+
829
+ ],
830
+ "type": {
831
+ "kind": "NON_NULL",
832
+ "name": null,
833
+ "ofType": {
834
+ "kind": "SCALAR",
835
+ "name": "ID",
836
+ "ofType": null
837
+ }
838
+ },
839
+ "isDeprecated": false,
840
+ "deprecationReason": null
841
+ },
842
+ {
843
+ "name": "messageId",
844
+ "description": null,
845
+ "args": [
846
+
847
+ ],
848
+ "type": {
849
+ "kind": "NON_NULL",
850
+ "name": null,
851
+ "ofType": {
852
+ "kind": "SCALAR",
853
+ "name": "String",
854
+ "ofType": null
855
+ }
856
+ },
857
+ "isDeprecated": false,
858
+ "deprecationReason": null
859
+ },
860
+ {
861
+ "name": "signedData",
862
+ "description": null,
863
+ "args": [
864
+
865
+ ],
866
+ "type": {
867
+ "kind": "NON_NULL",
868
+ "name": null,
869
+ "ofType": {
870
+ "kind": "SCALAR",
871
+ "name": "String",
872
+ "ofType": null
873
+ }
874
+ },
875
+ "isDeprecated": false,
876
+ "deprecationReason": null
877
+ },
878
+ {
879
+ "name": "status",
880
+ "description": null,
881
+ "args": [
882
+
883
+ ],
884
+ "type": {
885
+ "kind": "NON_NULL",
886
+ "name": null,
887
+ "ofType": {
888
+ "kind": "SCALAR",
889
+ "name": "String",
890
+ "ofType": null
891
+ }
892
+ },
893
+ "isDeprecated": false,
894
+ "deprecationReason": null
895
+ }
896
+ ],
897
+ "inputFields": null,
898
+ "interfaces": [
899
+
900
+ ],
901
+ "enumValues": null,
902
+ "possibleTypes": null
903
+ },
904
+ {
905
+ "kind": "OBJECT",
906
+ "name": "ProcessKeyCeremonyStepMutationPayload",
907
+ "description": "Autogenerated return type of ProcessKeyCeremonyStepMutation",
908
+ "fields": [
909
+ {
910
+ "name": "error",
911
+ "description": null,
912
+ "args": [
913
+
914
+ ],
915
+ "type": {
916
+ "kind": "SCALAR",
917
+ "name": "String",
918
+ "ofType": null
919
+ },
920
+ "isDeprecated": false,
921
+ "deprecationReason": null
922
+ },
923
+ {
924
+ "name": "pendingMessage",
925
+ "description": null,
926
+ "args": [
927
+
928
+ ],
929
+ "type": {
930
+ "kind": "OBJECT",
931
+ "name": "PendingMessage",
932
+ "ofType": null
933
+ },
934
+ "isDeprecated": false,
935
+ "deprecationReason": null
936
+ }
937
+ ],
938
+ "inputFields": null,
939
+ "interfaces": [
940
+
941
+ ],
942
+ "enumValues": null,
943
+ "possibleTypes": null
944
+ },
945
+ {
946
+ "kind": "OBJECT",
947
+ "name": "Query",
948
+ "description": null,
949
+ "fields": [
950
+ {
951
+ "name": "authorities",
952
+ "description": "Returns a list of authorities in the bulletin board",
953
+ "args": [
954
+
955
+ ],
956
+ "type": {
957
+ "kind": "NON_NULL",
958
+ "name": null,
959
+ "ofType": {
960
+ "kind": "LIST",
961
+ "name": null,
962
+ "ofType": {
963
+ "kind": "NON_NULL",
964
+ "name": null,
965
+ "ofType": {
966
+ "kind": "OBJECT",
967
+ "name": "Client",
968
+ "ofType": null
969
+ }
970
+ }
971
+ }
972
+ },
973
+ "isDeprecated": false,
974
+ "deprecationReason": null
975
+ },
976
+ {
977
+ "name": "election",
978
+ "description": "Returns an election given its unique_id",
979
+ "args": [
980
+ {
981
+ "name": "uniqueId",
982
+ "description": null,
983
+ "type": {
984
+ "kind": "NON_NULL",
985
+ "name": null,
986
+ "ofType": {
987
+ "kind": "SCALAR",
988
+ "name": "String",
989
+ "ofType": null
990
+ }
991
+ },
992
+ "defaultValue": null
993
+ }
994
+ ],
995
+ "type": {
996
+ "kind": "OBJECT",
997
+ "name": "Election",
998
+ "ofType": null
999
+ },
1000
+ "isDeprecated": false,
1001
+ "deprecationReason": null
1002
+ },
1003
+ {
1004
+ "name": "elections",
1005
+ "description": "Returns a list of elections in the bulletin board",
1006
+ "args": [
1007
+
1008
+ ],
1009
+ "type": {
1010
+ "kind": "NON_NULL",
1011
+ "name": null,
1012
+ "ofType": {
1013
+ "kind": "LIST",
1014
+ "name": null,
1015
+ "ofType": {
1016
+ "kind": "NON_NULL",
1017
+ "name": null,
1018
+ "ofType": {
1019
+ "kind": "OBJECT",
1020
+ "name": "Election",
1021
+ "ofType": null
1022
+ }
1023
+ }
1024
+ }
1025
+ },
1026
+ "isDeprecated": false,
1027
+ "deprecationReason": null
1028
+ },
1029
+ {
1030
+ "name": "logEntry",
1031
+ "description": "Returns the log entry with the given content hash for the given election",
1032
+ "args": [
1033
+ {
1034
+ "name": "electionUniqueId",
1035
+ "description": null,
1036
+ "type": {
1037
+ "kind": "NON_NULL",
1038
+ "name": null,
1039
+ "ofType": {
1040
+ "kind": "SCALAR",
1041
+ "name": "String",
1042
+ "ofType": null
1043
+ }
1044
+ },
1045
+ "defaultValue": null
1046
+ },
1047
+ {
1048
+ "name": "contentHash",
1049
+ "description": null,
1050
+ "type": {
1051
+ "kind": "NON_NULL",
1052
+ "name": null,
1053
+ "ofType": {
1054
+ "kind": "SCALAR",
1055
+ "name": "String",
1056
+ "ofType": null
1057
+ }
1058
+ },
1059
+ "defaultValue": null
1060
+ }
1061
+ ],
1062
+ "type": {
1063
+ "kind": "OBJECT",
1064
+ "name": "LogEntry",
1065
+ "ofType": null
1066
+ },
1067
+ "isDeprecated": false,
1068
+ "deprecationReason": null
1069
+ },
1070
+ {
1071
+ "name": "me",
1072
+ "description": "Returns the information for this bulletin board instance",
1073
+ "args": [
1074
+
1075
+ ],
1076
+ "type": {
1077
+ "kind": "NON_NULL",
1078
+ "name": null,
1079
+ "ofType": {
1080
+ "kind": "OBJECT",
1081
+ "name": "Client",
1082
+ "ofType": null
1083
+ }
1084
+ },
1085
+ "isDeprecated": false,
1086
+ "deprecationReason": null
1087
+ },
1088
+ {
1089
+ "name": "pendingMessage",
1090
+ "description": "Returns the information for a given message",
1091
+ "args": [
1092
+ {
1093
+ "name": "id",
1094
+ "description": null,
1095
+ "type": {
1096
+ "kind": "NON_NULL",
1097
+ "name": null,
1098
+ "ofType": {
1099
+ "kind": "SCALAR",
1100
+ "name": "ID",
1101
+ "ofType": null
1102
+ }
1103
+ },
1104
+ "defaultValue": null
1105
+ }
1106
+ ],
1107
+ "type": {
1108
+ "kind": "OBJECT",
1109
+ "name": "PendingMessage",
1110
+ "ofType": null
1111
+ },
1112
+ "isDeprecated": false,
1113
+ "deprecationReason": null
1114
+ }
1115
+ ],
1116
+ "inputFields": null,
1117
+ "interfaces": [
1118
+
1119
+ ],
1120
+ "enumValues": null,
1121
+ "possibleTypes": null
1122
+ },
1123
+ {
1124
+ "kind": "SCALAR",
1125
+ "name": "String",
1126
+ "description": "Represents textual data as UTF-8 character sequences. This type is most often used by GraphQL to represent free-form human-readable text.",
1127
+ "fields": null,
1128
+ "inputFields": null,
1129
+ "interfaces": null,
1130
+ "enumValues": null,
1131
+ "possibleTypes": null
1132
+ },
1133
+ {
1134
+ "kind": "OBJECT",
1135
+ "name": "Subscription",
1136
+ "description": null,
1137
+ "fields": [
1138
+ {
1139
+ "name": "electionLogEntryAdded",
1140
+ "description": null,
1141
+ "args": [
1142
+ {
1143
+ "name": "electionUniqueId",
1144
+ "description": null,
1145
+ "type": {
1146
+ "kind": "NON_NULL",
1147
+ "name": null,
1148
+ "ofType": {
1149
+ "kind": "SCALAR",
1150
+ "name": "String",
1151
+ "ofType": null
1152
+ }
1153
+ },
1154
+ "defaultValue": null
1155
+ }
1156
+ ],
1157
+ "type": {
1158
+ "kind": "NON_NULL",
1159
+ "name": null,
1160
+ "ofType": {
1161
+ "kind": "OBJECT",
1162
+ "name": "ElectionLogEntryAddedPayload",
1163
+ "ofType": null
1164
+ }
1165
+ },
1166
+ "isDeprecated": false,
1167
+ "deprecationReason": null
1168
+ }
1169
+ ],
1170
+ "inputFields": null,
1171
+ "interfaces": [
1172
+
1173
+ ],
1174
+ "enumValues": null,
1175
+ "possibleTypes": null
1176
+ },
1177
+ {
1178
+ "kind": "OBJECT",
1179
+ "name": "VoteMutationPayload",
1180
+ "description": "Autogenerated return type of VoteMutation",
1181
+ "fields": [
1182
+ {
1183
+ "name": "error",
1184
+ "description": null,
1185
+ "args": [
1186
+
1187
+ ],
1188
+ "type": {
1189
+ "kind": "SCALAR",
1190
+ "name": "String",
1191
+ "ofType": null
1192
+ },
1193
+ "isDeprecated": false,
1194
+ "deprecationReason": null
1195
+ },
1196
+ {
1197
+ "name": "pendingMessage",
1198
+ "description": null,
1199
+ "args": [
1200
+
1201
+ ],
1202
+ "type": {
1203
+ "kind": "OBJECT",
1204
+ "name": "PendingMessage",
1205
+ "ofType": null
1206
+ },
1207
+ "isDeprecated": false,
1208
+ "deprecationReason": null
1209
+ }
1210
+ ],
1211
+ "inputFields": null,
1212
+ "interfaces": [
1213
+
1214
+ ],
1215
+ "enumValues": null,
1216
+ "possibleTypes": null
1217
+ },
1218
+ {
1219
+ "kind": "OBJECT",
1220
+ "name": "__Directive",
1221
+ "description": "A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.",
1222
+ "fields": [
1223
+ {
1224
+ "name": "args",
1225
+ "description": null,
1226
+ "args": [
1227
+
1228
+ ],
1229
+ "type": {
1230
+ "kind": "NON_NULL",
1231
+ "name": null,
1232
+ "ofType": {
1233
+ "kind": "LIST",
1234
+ "name": null,
1235
+ "ofType": {
1236
+ "kind": "NON_NULL",
1237
+ "name": null,
1238
+ "ofType": {
1239
+ "kind": "OBJECT",
1240
+ "name": "__InputValue",
1241
+ "ofType": null
1242
+ }
1243
+ }
1244
+ }
1245
+ },
1246
+ "isDeprecated": false,
1247
+ "deprecationReason": null
1248
+ },
1249
+ {
1250
+ "name": "description",
1251
+ "description": null,
1252
+ "args": [
1253
+
1254
+ ],
1255
+ "type": {
1256
+ "kind": "SCALAR",
1257
+ "name": "String",
1258
+ "ofType": null
1259
+ },
1260
+ "isDeprecated": false,
1261
+ "deprecationReason": null
1262
+ },
1263
+ {
1264
+ "name": "locations",
1265
+ "description": null,
1266
+ "args": [
1267
+
1268
+ ],
1269
+ "type": {
1270
+ "kind": "NON_NULL",
1271
+ "name": null,
1272
+ "ofType": {
1273
+ "kind": "LIST",
1274
+ "name": null,
1275
+ "ofType": {
1276
+ "kind": "NON_NULL",
1277
+ "name": null,
1278
+ "ofType": {
1279
+ "kind": "ENUM",
1280
+ "name": "__DirectiveLocation",
1281
+ "ofType": null
1282
+ }
1283
+ }
1284
+ }
1285
+ },
1286
+ "isDeprecated": false,
1287
+ "deprecationReason": null
1288
+ },
1289
+ {
1290
+ "name": "name",
1291
+ "description": null,
1292
+ "args": [
1293
+
1294
+ ],
1295
+ "type": {
1296
+ "kind": "NON_NULL",
1297
+ "name": null,
1298
+ "ofType": {
1299
+ "kind": "SCALAR",
1300
+ "name": "String",
1301
+ "ofType": null
1302
+ }
1303
+ },
1304
+ "isDeprecated": false,
1305
+ "deprecationReason": null
1306
+ },
1307
+ {
1308
+ "name": "onField",
1309
+ "description": null,
1310
+ "args": [
1311
+
1312
+ ],
1313
+ "type": {
1314
+ "kind": "NON_NULL",
1315
+ "name": null,
1316
+ "ofType": {
1317
+ "kind": "SCALAR",
1318
+ "name": "Boolean",
1319
+ "ofType": null
1320
+ }
1321
+ },
1322
+ "isDeprecated": true,
1323
+ "deprecationReason": "Use `locations`."
1324
+ },
1325
+ {
1326
+ "name": "onFragment",
1327
+ "description": null,
1328
+ "args": [
1329
+
1330
+ ],
1331
+ "type": {
1332
+ "kind": "NON_NULL",
1333
+ "name": null,
1334
+ "ofType": {
1335
+ "kind": "SCALAR",
1336
+ "name": "Boolean",
1337
+ "ofType": null
1338
+ }
1339
+ },
1340
+ "isDeprecated": true,
1341
+ "deprecationReason": "Use `locations`."
1342
+ },
1343
+ {
1344
+ "name": "onOperation",
1345
+ "description": null,
1346
+ "args": [
1347
+
1348
+ ],
1349
+ "type": {
1350
+ "kind": "NON_NULL",
1351
+ "name": null,
1352
+ "ofType": {
1353
+ "kind": "SCALAR",
1354
+ "name": "Boolean",
1355
+ "ofType": null
1356
+ }
1357
+ },
1358
+ "isDeprecated": true,
1359
+ "deprecationReason": "Use `locations`."
1360
+ }
1361
+ ],
1362
+ "inputFields": null,
1363
+ "interfaces": [
1364
+
1365
+ ],
1366
+ "enumValues": null,
1367
+ "possibleTypes": null
1368
+ },
1369
+ {
1370
+ "kind": "ENUM",
1371
+ "name": "__DirectiveLocation",
1372
+ "description": "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.",
1373
+ "fields": null,
1374
+ "inputFields": null,
1375
+ "interfaces": null,
1376
+ "enumValues": [
1377
+ {
1378
+ "name": "QUERY",
1379
+ "description": "Location adjacent to a query operation.",
1380
+ "isDeprecated": false,
1381
+ "deprecationReason": null
1382
+ },
1383
+ {
1384
+ "name": "MUTATION",
1385
+ "description": "Location adjacent to a mutation operation.",
1386
+ "isDeprecated": false,
1387
+ "deprecationReason": null
1388
+ },
1389
+ {
1390
+ "name": "SUBSCRIPTION",
1391
+ "description": "Location adjacent to a subscription operation.",
1392
+ "isDeprecated": false,
1393
+ "deprecationReason": null
1394
+ },
1395
+ {
1396
+ "name": "FIELD",
1397
+ "description": "Location adjacent to a field.",
1398
+ "isDeprecated": false,
1399
+ "deprecationReason": null
1400
+ },
1401
+ {
1402
+ "name": "FRAGMENT_DEFINITION",
1403
+ "description": "Location adjacent to a fragment definition.",
1404
+ "isDeprecated": false,
1405
+ "deprecationReason": null
1406
+ },
1407
+ {
1408
+ "name": "FRAGMENT_SPREAD",
1409
+ "description": "Location adjacent to a fragment spread.",
1410
+ "isDeprecated": false,
1411
+ "deprecationReason": null
1412
+ },
1413
+ {
1414
+ "name": "INLINE_FRAGMENT",
1415
+ "description": "Location adjacent to an inline fragment.",
1416
+ "isDeprecated": false,
1417
+ "deprecationReason": null
1418
+ },
1419
+ {
1420
+ "name": "SCHEMA",
1421
+ "description": "Location adjacent to a schema definition.",
1422
+ "isDeprecated": false,
1423
+ "deprecationReason": null
1424
+ },
1425
+ {
1426
+ "name": "SCALAR",
1427
+ "description": "Location adjacent to a scalar definition.",
1428
+ "isDeprecated": false,
1429
+ "deprecationReason": null
1430
+ },
1431
+ {
1432
+ "name": "OBJECT",
1433
+ "description": "Location adjacent to an object type definition.",
1434
+ "isDeprecated": false,
1435
+ "deprecationReason": null
1436
+ },
1437
+ {
1438
+ "name": "FIELD_DEFINITION",
1439
+ "description": "Location adjacent to a field definition.",
1440
+ "isDeprecated": false,
1441
+ "deprecationReason": null
1442
+ },
1443
+ {
1444
+ "name": "ARGUMENT_DEFINITION",
1445
+ "description": "Location adjacent to an argument definition.",
1446
+ "isDeprecated": false,
1447
+ "deprecationReason": null
1448
+ },
1449
+ {
1450
+ "name": "INTERFACE",
1451
+ "description": "Location adjacent to an interface definition.",
1452
+ "isDeprecated": false,
1453
+ "deprecationReason": null
1454
+ },
1455
+ {
1456
+ "name": "UNION",
1457
+ "description": "Location adjacent to a union definition.",
1458
+ "isDeprecated": false,
1459
+ "deprecationReason": null
1460
+ },
1461
+ {
1462
+ "name": "ENUM",
1463
+ "description": "Location adjacent to an enum definition.",
1464
+ "isDeprecated": false,
1465
+ "deprecationReason": null
1466
+ },
1467
+ {
1468
+ "name": "ENUM_VALUE",
1469
+ "description": "Location adjacent to an enum value definition.",
1470
+ "isDeprecated": false,
1471
+ "deprecationReason": null
1472
+ },
1473
+ {
1474
+ "name": "INPUT_OBJECT",
1475
+ "description": "Location adjacent to an input object type definition.",
1476
+ "isDeprecated": false,
1477
+ "deprecationReason": null
1478
+ },
1479
+ {
1480
+ "name": "INPUT_FIELD_DEFINITION",
1481
+ "description": "Location adjacent to an input object field definition.",
1482
+ "isDeprecated": false,
1483
+ "deprecationReason": null
1484
+ }
1485
+ ],
1486
+ "possibleTypes": null
1487
+ },
1488
+ {
1489
+ "kind": "OBJECT",
1490
+ "name": "__EnumValue",
1491
+ "description": "One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.",
1492
+ "fields": [
1493
+ {
1494
+ "name": "deprecationReason",
1495
+ "description": null,
1496
+ "args": [
1497
+
1498
+ ],
1499
+ "type": {
1500
+ "kind": "SCALAR",
1501
+ "name": "String",
1502
+ "ofType": null
1503
+ },
1504
+ "isDeprecated": false,
1505
+ "deprecationReason": null
1506
+ },
1507
+ {
1508
+ "name": "description",
1509
+ "description": null,
1510
+ "args": [
1511
+
1512
+ ],
1513
+ "type": {
1514
+ "kind": "SCALAR",
1515
+ "name": "String",
1516
+ "ofType": null
1517
+ },
1518
+ "isDeprecated": false,
1519
+ "deprecationReason": null
1520
+ },
1521
+ {
1522
+ "name": "isDeprecated",
1523
+ "description": null,
1524
+ "args": [
1525
+
1526
+ ],
1527
+ "type": {
1528
+ "kind": "NON_NULL",
1529
+ "name": null,
1530
+ "ofType": {
1531
+ "kind": "SCALAR",
1532
+ "name": "Boolean",
1533
+ "ofType": null
1534
+ }
1535
+ },
1536
+ "isDeprecated": false,
1537
+ "deprecationReason": null
1538
+ },
1539
+ {
1540
+ "name": "name",
1541
+ "description": null,
1542
+ "args": [
1543
+
1544
+ ],
1545
+ "type": {
1546
+ "kind": "NON_NULL",
1547
+ "name": null,
1548
+ "ofType": {
1549
+ "kind": "SCALAR",
1550
+ "name": "String",
1551
+ "ofType": null
1552
+ }
1553
+ },
1554
+ "isDeprecated": false,
1555
+ "deprecationReason": null
1556
+ }
1557
+ ],
1558
+ "inputFields": null,
1559
+ "interfaces": [
1560
+
1561
+ ],
1562
+ "enumValues": null,
1563
+ "possibleTypes": null
1564
+ },
1565
+ {
1566
+ "kind": "OBJECT",
1567
+ "name": "__Field",
1568
+ "description": "Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.",
1569
+ "fields": [
1570
+ {
1571
+ "name": "args",
1572
+ "description": null,
1573
+ "args": [
1574
+ {
1575
+ "name": "includeDeprecated",
1576
+ "description": null,
1577
+ "type": {
1578
+ "kind": "SCALAR",
1579
+ "name": "Boolean",
1580
+ "ofType": null
1581
+ },
1582
+ "defaultValue": "false"
1583
+ }
1584
+ ],
1585
+ "type": {
1586
+ "kind": "NON_NULL",
1587
+ "name": null,
1588
+ "ofType": {
1589
+ "kind": "LIST",
1590
+ "name": null,
1591
+ "ofType": {
1592
+ "kind": "NON_NULL",
1593
+ "name": null,
1594
+ "ofType": {
1595
+ "kind": "OBJECT",
1596
+ "name": "__InputValue",
1597
+ "ofType": null
1598
+ }
1599
+ }
1600
+ }
1601
+ },
1602
+ "isDeprecated": false,
1603
+ "deprecationReason": null
1604
+ },
1605
+ {
1606
+ "name": "deprecationReason",
1607
+ "description": null,
1608
+ "args": [
1609
+
1610
+ ],
1611
+ "type": {
1612
+ "kind": "SCALAR",
1613
+ "name": "String",
1614
+ "ofType": null
1615
+ },
1616
+ "isDeprecated": false,
1617
+ "deprecationReason": null
1618
+ },
1619
+ {
1620
+ "name": "description",
1621
+ "description": null,
1622
+ "args": [
1623
+
1624
+ ],
1625
+ "type": {
1626
+ "kind": "SCALAR",
1627
+ "name": "String",
1628
+ "ofType": null
1629
+ },
1630
+ "isDeprecated": false,
1631
+ "deprecationReason": null
1632
+ },
1633
+ {
1634
+ "name": "isDeprecated",
1635
+ "description": null,
1636
+ "args": [
1637
+
1638
+ ],
1639
+ "type": {
1640
+ "kind": "NON_NULL",
1641
+ "name": null,
1642
+ "ofType": {
1643
+ "kind": "SCALAR",
1644
+ "name": "Boolean",
1645
+ "ofType": null
1646
+ }
1647
+ },
1648
+ "isDeprecated": false,
1649
+ "deprecationReason": null
1650
+ },
1651
+ {
1652
+ "name": "name",
1653
+ "description": null,
1654
+ "args": [
1655
+
1656
+ ],
1657
+ "type": {
1658
+ "kind": "NON_NULL",
1659
+ "name": null,
1660
+ "ofType": {
1661
+ "kind": "SCALAR",
1662
+ "name": "String",
1663
+ "ofType": null
1664
+ }
1665
+ },
1666
+ "isDeprecated": false,
1667
+ "deprecationReason": null
1668
+ },
1669
+ {
1670
+ "name": "type",
1671
+ "description": null,
1672
+ "args": [
1673
+
1674
+ ],
1675
+ "type": {
1676
+ "kind": "NON_NULL",
1677
+ "name": null,
1678
+ "ofType": {
1679
+ "kind": "OBJECT",
1680
+ "name": "__Type",
1681
+ "ofType": null
1682
+ }
1683
+ },
1684
+ "isDeprecated": false,
1685
+ "deprecationReason": null
1686
+ }
1687
+ ],
1688
+ "inputFields": null,
1689
+ "interfaces": [
1690
+
1691
+ ],
1692
+ "enumValues": null,
1693
+ "possibleTypes": null
1694
+ },
1695
+ {
1696
+ "kind": "OBJECT",
1697
+ "name": "__InputValue",
1698
+ "description": "Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.",
1699
+ "fields": [
1700
+ {
1701
+ "name": "defaultValue",
1702
+ "description": "A GraphQL-formatted string representing the default value for this input value.",
1703
+ "args": [
1704
+
1705
+ ],
1706
+ "type": {
1707
+ "kind": "SCALAR",
1708
+ "name": "String",
1709
+ "ofType": null
1710
+ },
1711
+ "isDeprecated": false,
1712
+ "deprecationReason": null
1713
+ },
1714
+ {
1715
+ "name": "deprecationReason",
1716
+ "description": null,
1717
+ "args": [
1718
+
1719
+ ],
1720
+ "type": {
1721
+ "kind": "SCALAR",
1722
+ "name": "String",
1723
+ "ofType": null
1724
+ },
1725
+ "isDeprecated": false,
1726
+ "deprecationReason": null
1727
+ },
1728
+ {
1729
+ "name": "description",
1730
+ "description": null,
1731
+ "args": [
1732
+
1733
+ ],
1734
+ "type": {
1735
+ "kind": "SCALAR",
1736
+ "name": "String",
1737
+ "ofType": null
1738
+ },
1739
+ "isDeprecated": false,
1740
+ "deprecationReason": null
1741
+ },
1742
+ {
1743
+ "name": "isDeprecated",
1744
+ "description": null,
1745
+ "args": [
1746
+
1747
+ ],
1748
+ "type": {
1749
+ "kind": "NON_NULL",
1750
+ "name": null,
1751
+ "ofType": {
1752
+ "kind": "SCALAR",
1753
+ "name": "Boolean",
1754
+ "ofType": null
1755
+ }
1756
+ },
1757
+ "isDeprecated": false,
1758
+ "deprecationReason": null
1759
+ },
1760
+ {
1761
+ "name": "name",
1762
+ "description": null,
1763
+ "args": [
1764
+
1765
+ ],
1766
+ "type": {
1767
+ "kind": "NON_NULL",
1768
+ "name": null,
1769
+ "ofType": {
1770
+ "kind": "SCALAR",
1771
+ "name": "String",
1772
+ "ofType": null
1773
+ }
1774
+ },
1775
+ "isDeprecated": false,
1776
+ "deprecationReason": null
1777
+ },
1778
+ {
1779
+ "name": "type",
1780
+ "description": null,
1781
+ "args": [
1782
+
1783
+ ],
1784
+ "type": {
1785
+ "kind": "NON_NULL",
1786
+ "name": null,
1787
+ "ofType": {
1788
+ "kind": "OBJECT",
1789
+ "name": "__Type",
1790
+ "ofType": null
1791
+ }
1792
+ },
1793
+ "isDeprecated": false,
1794
+ "deprecationReason": null
1795
+ }
1796
+ ],
1797
+ "inputFields": null,
1798
+ "interfaces": [
1799
+
1800
+ ],
1801
+ "enumValues": null,
1802
+ "possibleTypes": null
1803
+ },
1804
+ {
1805
+ "kind": "OBJECT",
1806
+ "name": "__Schema",
1807
+ "description": "A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.",
1808
+ "fields": [
1809
+ {
1810
+ "name": "directives",
1811
+ "description": "A list of all directives supported by this server.",
1812
+ "args": [
1813
+
1814
+ ],
1815
+ "type": {
1816
+ "kind": "NON_NULL",
1817
+ "name": null,
1818
+ "ofType": {
1819
+ "kind": "LIST",
1820
+ "name": null,
1821
+ "ofType": {
1822
+ "kind": "NON_NULL",
1823
+ "name": null,
1824
+ "ofType": {
1825
+ "kind": "OBJECT",
1826
+ "name": "__Directive",
1827
+ "ofType": null
1828
+ }
1829
+ }
1830
+ }
1831
+ },
1832
+ "isDeprecated": false,
1833
+ "deprecationReason": null
1834
+ },
1835
+ {
1836
+ "name": "mutationType",
1837
+ "description": "If this server supports mutation, the type that mutation operations will be rooted at.",
1838
+ "args": [
1839
+
1840
+ ],
1841
+ "type": {
1842
+ "kind": "OBJECT",
1843
+ "name": "__Type",
1844
+ "ofType": null
1845
+ },
1846
+ "isDeprecated": false,
1847
+ "deprecationReason": null
1848
+ },
1849
+ {
1850
+ "name": "queryType",
1851
+ "description": "The type that query operations will be rooted at.",
1852
+ "args": [
1853
+
1854
+ ],
1855
+ "type": {
1856
+ "kind": "NON_NULL",
1857
+ "name": null,
1858
+ "ofType": {
1859
+ "kind": "OBJECT",
1860
+ "name": "__Type",
1861
+ "ofType": null
1862
+ }
1863
+ },
1864
+ "isDeprecated": false,
1865
+ "deprecationReason": null
1866
+ },
1867
+ {
1868
+ "name": "subscriptionType",
1869
+ "description": "If this server support subscription, the type that subscription operations will be rooted at.",
1870
+ "args": [
1871
+
1872
+ ],
1873
+ "type": {
1874
+ "kind": "OBJECT",
1875
+ "name": "__Type",
1876
+ "ofType": null
1877
+ },
1878
+ "isDeprecated": false,
1879
+ "deprecationReason": null
1880
+ },
1881
+ {
1882
+ "name": "types",
1883
+ "description": "A list of all types supported by this server.",
1884
+ "args": [
1885
+
1886
+ ],
1887
+ "type": {
1888
+ "kind": "NON_NULL",
1889
+ "name": null,
1890
+ "ofType": {
1891
+ "kind": "LIST",
1892
+ "name": null,
1893
+ "ofType": {
1894
+ "kind": "NON_NULL",
1895
+ "name": null,
1896
+ "ofType": {
1897
+ "kind": "OBJECT",
1898
+ "name": "__Type",
1899
+ "ofType": null
1900
+ }
1901
+ }
1902
+ }
1903
+ },
1904
+ "isDeprecated": false,
1905
+ "deprecationReason": null
1906
+ }
1907
+ ],
1908
+ "inputFields": null,
1909
+ "interfaces": [
1910
+
1911
+ ],
1912
+ "enumValues": null,
1913
+ "possibleTypes": null
1914
+ },
1915
+ {
1916
+ "kind": "OBJECT",
1917
+ "name": "__Type",
1918
+ "description": "The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.",
1919
+ "fields": [
1920
+ {
1921
+ "name": "description",
1922
+ "description": null,
1923
+ "args": [
1924
+
1925
+ ],
1926
+ "type": {
1927
+ "kind": "SCALAR",
1928
+ "name": "String",
1929
+ "ofType": null
1930
+ },
1931
+ "isDeprecated": false,
1932
+ "deprecationReason": null
1933
+ },
1934
+ {
1935
+ "name": "enumValues",
1936
+ "description": null,
1937
+ "args": [
1938
+ {
1939
+ "name": "includeDeprecated",
1940
+ "description": null,
1941
+ "type": {
1942
+ "kind": "SCALAR",
1943
+ "name": "Boolean",
1944
+ "ofType": null
1945
+ },
1946
+ "defaultValue": "false"
1947
+ }
1948
+ ],
1949
+ "type": {
1950
+ "kind": "LIST",
1951
+ "name": null,
1952
+ "ofType": {
1953
+ "kind": "NON_NULL",
1954
+ "name": null,
1955
+ "ofType": {
1956
+ "kind": "OBJECT",
1957
+ "name": "__EnumValue",
1958
+ "ofType": null
1959
+ }
1960
+ }
1961
+ },
1962
+ "isDeprecated": false,
1963
+ "deprecationReason": null
1964
+ },
1965
+ {
1966
+ "name": "fields",
1967
+ "description": null,
1968
+ "args": [
1969
+ {
1970
+ "name": "includeDeprecated",
1971
+ "description": null,
1972
+ "type": {
1973
+ "kind": "SCALAR",
1974
+ "name": "Boolean",
1975
+ "ofType": null
1976
+ },
1977
+ "defaultValue": "false"
1978
+ }
1979
+ ],
1980
+ "type": {
1981
+ "kind": "LIST",
1982
+ "name": null,
1983
+ "ofType": {
1984
+ "kind": "NON_NULL",
1985
+ "name": null,
1986
+ "ofType": {
1987
+ "kind": "OBJECT",
1988
+ "name": "__Field",
1989
+ "ofType": null
1990
+ }
1991
+ }
1992
+ },
1993
+ "isDeprecated": false,
1994
+ "deprecationReason": null
1995
+ },
1996
+ {
1997
+ "name": "inputFields",
1998
+ "description": null,
1999
+ "args": [
2000
+ {
2001
+ "name": "includeDeprecated",
2002
+ "description": null,
2003
+ "type": {
2004
+ "kind": "SCALAR",
2005
+ "name": "Boolean",
2006
+ "ofType": null
2007
+ },
2008
+ "defaultValue": "false"
2009
+ }
2010
+ ],
2011
+ "type": {
2012
+ "kind": "LIST",
2013
+ "name": null,
2014
+ "ofType": {
2015
+ "kind": "NON_NULL",
2016
+ "name": null,
2017
+ "ofType": {
2018
+ "kind": "OBJECT",
2019
+ "name": "__InputValue",
2020
+ "ofType": null
2021
+ }
2022
+ }
2023
+ },
2024
+ "isDeprecated": false,
2025
+ "deprecationReason": null
2026
+ },
2027
+ {
2028
+ "name": "interfaces",
2029
+ "description": null,
2030
+ "args": [
2031
+
2032
+ ],
2033
+ "type": {
2034
+ "kind": "LIST",
2035
+ "name": null,
2036
+ "ofType": {
2037
+ "kind": "NON_NULL",
2038
+ "name": null,
2039
+ "ofType": {
2040
+ "kind": "OBJECT",
2041
+ "name": "__Type",
2042
+ "ofType": null
2043
+ }
2044
+ }
2045
+ },
2046
+ "isDeprecated": false,
2047
+ "deprecationReason": null
2048
+ },
2049
+ {
2050
+ "name": "kind",
2051
+ "description": null,
2052
+ "args": [
2053
+
2054
+ ],
2055
+ "type": {
2056
+ "kind": "NON_NULL",
2057
+ "name": null,
2058
+ "ofType": {
2059
+ "kind": "ENUM",
2060
+ "name": "__TypeKind",
2061
+ "ofType": null
2062
+ }
2063
+ },
2064
+ "isDeprecated": false,
2065
+ "deprecationReason": null
2066
+ },
2067
+ {
2068
+ "name": "name",
2069
+ "description": null,
2070
+ "args": [
2071
+
2072
+ ],
2073
+ "type": {
2074
+ "kind": "SCALAR",
2075
+ "name": "String",
2076
+ "ofType": null
2077
+ },
2078
+ "isDeprecated": false,
2079
+ "deprecationReason": null
2080
+ },
2081
+ {
2082
+ "name": "ofType",
2083
+ "description": null,
2084
+ "args": [
2085
+
2086
+ ],
2087
+ "type": {
2088
+ "kind": "OBJECT",
2089
+ "name": "__Type",
2090
+ "ofType": null
2091
+ },
2092
+ "isDeprecated": false,
2093
+ "deprecationReason": null
2094
+ },
2095
+ {
2096
+ "name": "possibleTypes",
2097
+ "description": null,
2098
+ "args": [
2099
+
2100
+ ],
2101
+ "type": {
2102
+ "kind": "LIST",
2103
+ "name": null,
2104
+ "ofType": {
2105
+ "kind": "NON_NULL",
2106
+ "name": null,
2107
+ "ofType": {
2108
+ "kind": "OBJECT",
2109
+ "name": "__Type",
2110
+ "ofType": null
2111
+ }
2112
+ }
2113
+ },
2114
+ "isDeprecated": false,
2115
+ "deprecationReason": null
2116
+ }
2117
+ ],
2118
+ "inputFields": null,
2119
+ "interfaces": [
2120
+
2121
+ ],
2122
+ "enumValues": null,
2123
+ "possibleTypes": null
2124
+ },
2125
+ {
2126
+ "kind": "ENUM",
2127
+ "name": "__TypeKind",
2128
+ "description": "An enum describing what kind of type a given `__Type` is.",
2129
+ "fields": null,
2130
+ "inputFields": null,
2131
+ "interfaces": null,
2132
+ "enumValues": [
2133
+ {
2134
+ "name": "SCALAR",
2135
+ "description": "Indicates this type is a scalar.",
2136
+ "isDeprecated": false,
2137
+ "deprecationReason": null
2138
+ },
2139
+ {
2140
+ "name": "OBJECT",
2141
+ "description": "Indicates this type is an object. `fields` and `interfaces` are valid fields.",
2142
+ "isDeprecated": false,
2143
+ "deprecationReason": null
2144
+ },
2145
+ {
2146
+ "name": "INTERFACE",
2147
+ "description": "Indicates this type is an interface. `fields` and `possibleTypes` are valid fields.",
2148
+ "isDeprecated": false,
2149
+ "deprecationReason": null
2150
+ },
2151
+ {
2152
+ "name": "UNION",
2153
+ "description": "Indicates this type is a union. `possibleTypes` is a valid field.",
2154
+ "isDeprecated": false,
2155
+ "deprecationReason": null
2156
+ },
2157
+ {
2158
+ "name": "ENUM",
2159
+ "description": "Indicates this type is an enum. `enumValues` is a valid field.",
2160
+ "isDeprecated": false,
2161
+ "deprecationReason": null
2162
+ },
2163
+ {
2164
+ "name": "INPUT_OBJECT",
2165
+ "description": "Indicates this type is an input object. `inputFields` is a valid field.",
2166
+ "isDeprecated": false,
2167
+ "deprecationReason": null
2168
+ },
2169
+ {
2170
+ "name": "LIST",
2171
+ "description": "Indicates this type is a list. `ofType` is a valid field.",
2172
+ "isDeprecated": false,
2173
+ "deprecationReason": null
2174
+ },
2175
+ {
2176
+ "name": "NON_NULL",
2177
+ "description": "Indicates this type is a non-null. `ofType` is a valid field.",
2178
+ "isDeprecated": false,
2179
+ "deprecationReason": null
2180
+ }
2181
+ ],
2182
+ "possibleTypes": null
2183
+ }
2184
+ ],
2185
+ "directives": [
2186
+ {
2187
+ "name": "include",
2188
+ "description": "Directs the executor to include this field or fragment only when the `if` argument is true.",
2189
+ "locations": [
2190
+ "FIELD",
2191
+ "FRAGMENT_SPREAD",
2192
+ "INLINE_FRAGMENT"
2193
+ ],
2194
+ "args": [
2195
+ {
2196
+ "name": "if",
2197
+ "description": "Included when true.",
2198
+ "type": {
2199
+ "kind": "NON_NULL",
2200
+ "name": null,
2201
+ "ofType": {
2202
+ "kind": "SCALAR",
2203
+ "name": "Boolean",
2204
+ "ofType": null
2205
+ }
2206
+ },
2207
+ "defaultValue": null
2208
+ }
2209
+ ]
2210
+ },
2211
+ {
2212
+ "name": "skip",
2213
+ "description": "Directs the executor to skip this field or fragment when the `if` argument is true.",
2214
+ "locations": [
2215
+ "FIELD",
2216
+ "FRAGMENT_SPREAD",
2217
+ "INLINE_FRAGMENT"
2218
+ ],
2219
+ "args": [
2220
+ {
2221
+ "name": "if",
2222
+ "description": "Skipped when true.",
2223
+ "type": {
2224
+ "kind": "NON_NULL",
2225
+ "name": null,
2226
+ "ofType": {
2227
+ "kind": "SCALAR",
2228
+ "name": "Boolean",
2229
+ "ofType": null
2230
+ }
2231
+ },
2232
+ "defaultValue": null
2233
+ }
2234
+ ]
2235
+ },
2236
+ {
2237
+ "name": "deprecated",
2238
+ "description": "Marks an element of a GraphQL schema as no longer supported.",
2239
+ "locations": [
2240
+ "FIELD_DEFINITION",
2241
+ "ENUM_VALUE",
2242
+ "ARGUMENT_DEFINITION",
2243
+ "INPUT_FIELD_DEFINITION"
2244
+ ],
2245
+ "args": [
2246
+ {
2247
+ "name": "reason",
2248
+ "description": "Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted in [Markdown](https://daringfireball.net/projects/markdown/).",
2249
+ "type": {
2250
+ "kind": "SCALAR",
2251
+ "name": "String",
2252
+ "ofType": null
2253
+ },
2254
+ "defaultValue": "\"No longer supported\""
2255
+ }
2256
+ ]
2257
+ }
2258
+ ]
2259
+ }
2260
+ }
2261
+ }