-
Notifications
You must be signed in to change notification settings - Fork 694
Expand file tree
/
Copy pathapollo-ast.klib.api
More file actions
1755 lines (1457 loc) · 251 KB
/
apollo-ast.klib.api
File metadata and controls
1755 lines (1457 loc) · 251 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Klib ABI Dump
// Targets: [iosArm64, iosSimulatorArm64, iosX64, js, linuxX64.linux, macosArm64, macosX64, tvosArm64, tvosSimulatorArm64, tvosX64, wasmJs, watchosArm32, watchosArm64, watchosDeviceArm64, watchosSimulatorArm64]
// Rendering settings:
// - Signature version: 2
// - Show manifest properties: true
// - Show declarations: true
// Library unique name: <com.apollographql.apollo:apollo-ast>
final enum class com.apollographql.apollo.ast/CatchTo : kotlin/Enum<com.apollographql.apollo.ast/CatchTo> { // com.apollographql.apollo.ast/CatchTo|null[0]
enum entry NULL // com.apollographql.apollo.ast/CatchTo.NULL|null[0]
enum entry RESULT // com.apollographql.apollo.ast/CatchTo.RESULT|null[0]
enum entry THROW // com.apollographql.apollo.ast/CatchTo.THROW|null[0]
final val entries // com.apollographql.apollo.ast/CatchTo.entries|#static{}entries[0]
final fun <get-entries>(): kotlin.enums/EnumEntries<com.apollographql.apollo.ast/CatchTo> // com.apollographql.apollo.ast/CatchTo.entries.<get-entries>|<get-entries>#static(){}[0]
final fun valueOf(kotlin/String): com.apollographql.apollo.ast/CatchTo // com.apollographql.apollo.ast/CatchTo.valueOf|valueOf#static(kotlin.String){}[0]
final fun values(): kotlin/Array<com.apollographql.apollo.ast/CatchTo> // com.apollographql.apollo.ast/CatchTo.values|values#static(){}[0]
}
final enum class com.apollographql.apollo.ast/GQLDirectiveLocation : kotlin/Enum<com.apollographql.apollo.ast/GQLDirectiveLocation> { // com.apollographql.apollo.ast/GQLDirectiveLocation|null[0]
enum entry ARGUMENT_DEFINITION // com.apollographql.apollo.ast/GQLDirectiveLocation.ARGUMENT_DEFINITION|null[0]
enum entry DIRECTIVE_DEFINITION // com.apollographql.apollo.ast/GQLDirectiveLocation.DIRECTIVE_DEFINITION|null[0]
enum entry ENUM // com.apollographql.apollo.ast/GQLDirectiveLocation.ENUM|null[0]
enum entry ENUM_VALUE // com.apollographql.apollo.ast/GQLDirectiveLocation.ENUM_VALUE|null[0]
enum entry FIELD // com.apollographql.apollo.ast/GQLDirectiveLocation.FIELD|null[0]
enum entry FIELD_DEFINITION // com.apollographql.apollo.ast/GQLDirectiveLocation.FIELD_DEFINITION|null[0]
enum entry FRAGMENT_DEFINITION // com.apollographql.apollo.ast/GQLDirectiveLocation.FRAGMENT_DEFINITION|null[0]
enum entry FRAGMENT_SPREAD // com.apollographql.apollo.ast/GQLDirectiveLocation.FRAGMENT_SPREAD|null[0]
enum entry INLINE_FRAGMENT // com.apollographql.apollo.ast/GQLDirectiveLocation.INLINE_FRAGMENT|null[0]
enum entry INPUT_FIELD_DEFINITION // com.apollographql.apollo.ast/GQLDirectiveLocation.INPUT_FIELD_DEFINITION|null[0]
enum entry INPUT_OBJECT // com.apollographql.apollo.ast/GQLDirectiveLocation.INPUT_OBJECT|null[0]
enum entry INTERFACE // com.apollographql.apollo.ast/GQLDirectiveLocation.INTERFACE|null[0]
enum entry MUTATION // com.apollographql.apollo.ast/GQLDirectiveLocation.MUTATION|null[0]
enum entry OBJECT // com.apollographql.apollo.ast/GQLDirectiveLocation.OBJECT|null[0]
enum entry QUERY // com.apollographql.apollo.ast/GQLDirectiveLocation.QUERY|null[0]
enum entry SCALAR // com.apollographql.apollo.ast/GQLDirectiveLocation.SCALAR|null[0]
enum entry SCHEMA // com.apollographql.apollo.ast/GQLDirectiveLocation.SCHEMA|null[0]
enum entry SUBSCRIPTION // com.apollographql.apollo.ast/GQLDirectiveLocation.SUBSCRIPTION|null[0]
enum entry UNION // com.apollographql.apollo.ast/GQLDirectiveLocation.UNION|null[0]
enum entry VARIABLE_DEFINITION // com.apollographql.apollo.ast/GQLDirectiveLocation.VARIABLE_DEFINITION|null[0]
final val entries // com.apollographql.apollo.ast/GQLDirectiveLocation.entries|#static{}entries[0]
final fun <get-entries>(): kotlin.enums/EnumEntries<com.apollographql.apollo.ast/GQLDirectiveLocation> // com.apollographql.apollo.ast/GQLDirectiveLocation.entries.<get-entries>|<get-entries>#static(){}[0]
final fun valueOf(kotlin/String): com.apollographql.apollo.ast/GQLDirectiveLocation // com.apollographql.apollo.ast/GQLDirectiveLocation.valueOf|valueOf#static(kotlin.String){}[0]
final fun values(): kotlin/Array<com.apollographql.apollo.ast/GQLDirectiveLocation> // com.apollographql.apollo.ast/GQLDirectiveLocation.values|values#static(){}[0]
}
abstract fun interface com.apollographql.apollo.ast/NodeTransformer { // com.apollographql.apollo.ast/NodeTransformer|null[0]
abstract fun transform(com.apollographql.apollo.ast/GQLNode): com.apollographql.apollo.ast/TransformResult // com.apollographql.apollo.ast/NodeTransformer.transform|transform(com.apollographql.apollo.ast.GQLNode){}[0]
}
abstract interface com.apollographql.apollo.ast.introspection/IntrospectionSchema // com.apollographql.apollo.ast.introspection/IntrospectionSchema|null[0]
abstract interface com.apollographql.apollo.ast/GQLDescribed { // com.apollographql.apollo.ast/GQLDescribed|null[0]
abstract val description // com.apollographql.apollo.ast/GQLDescribed.description|{}description[0]
abstract fun <get-description>(): kotlin/String? // com.apollographql.apollo.ast/GQLDescribed.description.<get-description>|<get-description>(){}[0]
}
abstract interface com.apollographql.apollo.ast/GQLHasDirectives { // com.apollographql.apollo.ast/GQLHasDirectives|null[0]
abstract val directives // com.apollographql.apollo.ast/GQLHasDirectives.directives|{}directives[0]
abstract fun <get-directives>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> // com.apollographql.apollo.ast/GQLHasDirectives.directives.<get-directives>|<get-directives>(){}[0]
}
abstract interface com.apollographql.apollo.ast/GQLNamed { // com.apollographql.apollo.ast/GQLNamed|null[0]
abstract val name // com.apollographql.apollo.ast/GQLNamed.name|{}name[0]
abstract fun <get-name>(): kotlin/String // com.apollographql.apollo.ast/GQLNamed.name.<get-name>|<get-name>(){}[0]
}
sealed interface com.apollographql.apollo.ast/ApolloIssue : com.apollographql.apollo.ast/Issue // com.apollographql.apollo.ast/ApolloIssue|null[0]
sealed interface com.apollographql.apollo.ast/GQLDefinition : com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLDefinition|null[0]
sealed interface com.apollographql.apollo.ast/GQLExecutableDefinition : com.apollographql.apollo.ast/GQLDefinition // com.apollographql.apollo.ast/GQLExecutableDefinition|null[0]
sealed interface com.apollographql.apollo.ast/GQLNode { // com.apollographql.apollo.ast/GQLNode|null[0]
abstract val children // com.apollographql.apollo.ast/GQLNode.children|{}children[0]
abstract fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLNode> // com.apollographql.apollo.ast/GQLNode.children.<get-children>|<get-children>(){}[0]
abstract val sourceLocation // com.apollographql.apollo.ast/GQLNode.sourceLocation|{}sourceLocation[0]
abstract fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLNode.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
abstract fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLNode.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
abstract fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLNode.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
sealed interface com.apollographql.apollo.ast/GQLSchemaCoordinate // com.apollographql.apollo.ast/GQLSchemaCoordinate|null[0]
sealed interface com.apollographql.apollo.ast/GQLTypeExtension : com.apollographql.apollo.ast/GQLNamed, com.apollographql.apollo.ast/GQLTypeSystemExtension // com.apollographql.apollo.ast/GQLTypeExtension|null[0]
sealed interface com.apollographql.apollo.ast/GQLTypeSystemExtension : com.apollographql.apollo.ast/GQLDefinition // com.apollographql.apollo.ast/GQLTypeSystemExtension|null[0]
sealed interface com.apollographql.apollo.ast/GraphQLIssue : com.apollographql.apollo.ast/Issue // com.apollographql.apollo.ast/GraphQLIssue|null[0]
sealed interface com.apollographql.apollo.ast/GraphQLValidationIssue : com.apollographql.apollo.ast/GraphQLIssue // com.apollographql.apollo.ast/GraphQLValidationIssue|null[0]
sealed interface com.apollographql.apollo.ast/Issue { // com.apollographql.apollo.ast/Issue|null[0]
abstract val message // com.apollographql.apollo.ast/Issue.message|{}message[0]
abstract fun <get-message>(): kotlin/String // com.apollographql.apollo.ast/Issue.message.<get-message>|<get-message>(){}[0]
abstract val sourceLocation // com.apollographql.apollo.ast/Issue.sourceLocation|{}sourceLocation[0]
abstract fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/Issue.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
}
sealed interface com.apollographql.apollo.ast/ResolvedSchemaElement // com.apollographql.apollo.ast/ResolvedSchemaElement|null[0]
sealed interface com.apollographql.apollo.ast/TransformResult { // com.apollographql.apollo.ast/TransformResult|null[0]
final class Replace : com.apollographql.apollo.ast/TransformResult { // com.apollographql.apollo.ast/TransformResult.Replace|null[0]
constructor <init>(com.apollographql.apollo.ast/GQLNode) // com.apollographql.apollo.ast/TransformResult.Replace.<init>|<init>(com.apollographql.apollo.ast.GQLNode){}[0]
final val newNode // com.apollographql.apollo.ast/TransformResult.Replace.newNode|{}newNode[0]
final fun <get-newNode>(): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/TransformResult.Replace.newNode.<get-newNode>|<get-newNode>(){}[0]
}
final object Continue : com.apollographql.apollo.ast/TransformResult // com.apollographql.apollo.ast/TransformResult.Continue|null[0]
final object Delete : com.apollographql.apollo.ast/TransformResult // com.apollographql.apollo.ast/TransformResult.Delete|null[0]
}
final class <#A: out kotlin/Any> com.apollographql.apollo.ast/GQLResult { // com.apollographql.apollo.ast/GQLResult|null[0]
constructor <init>(#A?, kotlin.collections/List<com.apollographql.apollo.ast/Issue>) // com.apollographql.apollo.ast/GQLResult.<init>|<init>(1:0?;kotlin.collections.List<com.apollographql.apollo.ast.Issue>){}[0]
final val issues // com.apollographql.apollo.ast/GQLResult.issues|{}issues[0]
final fun <get-issues>(): kotlin.collections/List<com.apollographql.apollo.ast/Issue> // com.apollographql.apollo.ast/GQLResult.issues.<get-issues>|<get-issues>(){}[0]
final val value // com.apollographql.apollo.ast/GQLResult.value|{}value[0]
final fun <get-value>(): #A? // com.apollographql.apollo.ast/GQLResult.value.<get-value>|<get-value>(){}[0]
final fun getOrThrow(): #A // com.apollographql.apollo.ast/GQLResult.getOrThrow|getOrThrow(){}[0]
final fun valueAssertNoErrors(): #A // com.apollographql.apollo.ast/GQLResult.valueAssertNoErrors|valueAssertNoErrors(){}[0]
}
final class com.apollographql.apollo.ast.introspection/ApolloIntrospectionSchema // com.apollographql.apollo.ast.introspection/ApolloIntrospectionSchema|null[0]
final class com.apollographql.apollo.ast/AnonymousOperation : com.apollographql.apollo.ast/ApolloIssue { // com.apollographql.apollo.ast/AnonymousOperation|null[0]
constructor <init>(kotlin/String, com.apollographql.apollo.ast/SourceLocation?) // com.apollographql.apollo.ast/AnonymousOperation.<init>|<init>(kotlin.String;com.apollographql.apollo.ast.SourceLocation?){}[0]
final val message // com.apollographql.apollo.ast/AnonymousOperation.message|{}message[0]
final fun <get-message>(): kotlin/String // com.apollographql.apollo.ast/AnonymousOperation.message.<get-message>|<get-message>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/AnonymousOperation.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/AnonymousOperation.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
}
final class com.apollographql.apollo.ast/Catch { // com.apollographql.apollo.ast/Catch|null[0]
constructor <init>(com.apollographql.apollo.ast/CatchTo, kotlin.collections/List<kotlin/Int>?) // com.apollographql.apollo.ast/Catch.<init>|<init>(com.apollographql.apollo.ast.CatchTo;kotlin.collections.List<kotlin.Int>?){}[0]
final val levels // com.apollographql.apollo.ast/Catch.levels|{}levels[0]
final fun <get-levels>(): kotlin.collections/List<kotlin/Int>? // com.apollographql.apollo.ast/Catch.levels.<get-levels>|<get-levels>(){}[0]
final val to // com.apollographql.apollo.ast/Catch.to|{}to[0]
final fun <get-to>(): com.apollographql.apollo.ast/CatchTo // com.apollographql.apollo.ast/Catch.to.<get-to>|<get-to>(){}[0]
final fun component1(): com.apollographql.apollo.ast/CatchTo // com.apollographql.apollo.ast/Catch.component1|component1(){}[0]
final fun component2(): kotlin.collections/List<kotlin/Int>? // com.apollographql.apollo.ast/Catch.component2|component2(){}[0]
final fun copy(com.apollographql.apollo.ast/CatchTo = ..., kotlin.collections/List<kotlin/Int>? = ...): com.apollographql.apollo.ast/Catch // com.apollographql.apollo.ast/Catch.copy|copy(com.apollographql.apollo.ast.CatchTo;kotlin.collections.List<kotlin.Int>?){}[0]
final fun equals(kotlin/Any?): kotlin/Boolean // com.apollographql.apollo.ast/Catch.equals|equals(kotlin.Any?){}[0]
final fun hashCode(): kotlin/Int // com.apollographql.apollo.ast/Catch.hashCode|hashCode(){}[0]
final fun toString(): kotlin/String // com.apollographql.apollo.ast/Catch.toString|toString(){}[0]
}
final class com.apollographql.apollo.ast/ConditionalFragment : com.apollographql.apollo.ast/ApolloIssue { // com.apollographql.apollo.ast/ConditionalFragment|null[0]
constructor <init>(kotlin/String, com.apollographql.apollo.ast/SourceLocation?) // com.apollographql.apollo.ast/ConditionalFragment.<init>|<init>(kotlin.String;com.apollographql.apollo.ast.SourceLocation?){}[0]
final val message // com.apollographql.apollo.ast/ConditionalFragment.message|{}message[0]
final fun <get-message>(): kotlin/String // com.apollographql.apollo.ast/ConditionalFragment.message.<get-message>|<get-message>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/ConditionalFragment.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/ConditionalFragment.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
}
final class com.apollographql.apollo.ast/ConversionException : com.apollographql.apollo.ast/SourceAwareException { // com.apollographql.apollo.ast/ConversionException|null[0]
constructor <init>(kotlin/String, com.apollographql.apollo.ast/SourceLocation? = ...) // com.apollographql.apollo.ast/ConversionException.<init>|<init>(kotlin.String;com.apollographql.apollo.ast.SourceLocation?){}[0]
}
final class com.apollographql.apollo.ast/DeprecatedUsage : com.apollographql.apollo.ast/ApolloIssue { // com.apollographql.apollo.ast/DeprecatedUsage|null[0]
constructor <init>(kotlin/String, com.apollographql.apollo.ast/SourceLocation?) // com.apollographql.apollo.ast/DeprecatedUsage.<init>|<init>(kotlin.String;com.apollographql.apollo.ast.SourceLocation?){}[0]
final val message // com.apollographql.apollo.ast/DeprecatedUsage.message|{}message[0]
final fun <get-message>(): kotlin/String // com.apollographql.apollo.ast/DeprecatedUsage.message.<get-message>|<get-message>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/DeprecatedUsage.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/DeprecatedUsage.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
}
final class com.apollographql.apollo.ast/DifferentShape : com.apollographql.apollo.ast/GraphQLValidationIssue { // com.apollographql.apollo.ast/DifferentShape|null[0]
constructor <init>(kotlin/String, com.apollographql.apollo.ast/SourceLocation?) // com.apollographql.apollo.ast/DifferentShape.<init>|<init>(kotlin.String;com.apollographql.apollo.ast.SourceLocation?){}[0]
final val message // com.apollographql.apollo.ast/DifferentShape.message|{}message[0]
final fun <get-message>(): kotlin/String // com.apollographql.apollo.ast/DifferentShape.message.<get-message>|<get-message>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/DifferentShape.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/DifferentShape.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
}
final class com.apollographql.apollo.ast/DirectiveRedefinition : com.apollographql.apollo.ast/GraphQLValidationIssue { // com.apollographql.apollo.ast/DirectiveRedefinition|null[0]
constructor <init>(kotlin/String, com.apollographql.apollo.ast/SourceLocation?, com.apollographql.apollo.ast/SourceLocation?) // com.apollographql.apollo.ast/DirectiveRedefinition.<init>|<init>(kotlin.String;com.apollographql.apollo.ast.SourceLocation?;com.apollographql.apollo.ast.SourceLocation?){}[0]
final val message // com.apollographql.apollo.ast/DirectiveRedefinition.message|{}message[0]
final fun <get-message>(): kotlin/String // com.apollographql.apollo.ast/DirectiveRedefinition.message.<get-message>|<get-message>(){}[0]
final val name // com.apollographql.apollo.ast/DirectiveRedefinition.name|{}name[0]
final fun <get-name>(): kotlin/String // com.apollographql.apollo.ast/DirectiveRedefinition.name.<get-name>|<get-name>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/DirectiveRedefinition.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/DirectiveRedefinition.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
}
final class com.apollographql.apollo.ast/DuplicateDeferLabel : com.apollographql.apollo.ast/ApolloIssue { // com.apollographql.apollo.ast/DuplicateDeferLabel|null[0]
constructor <init>(kotlin/String, com.apollographql.apollo.ast/SourceLocation?) // com.apollographql.apollo.ast/DuplicateDeferLabel.<init>|<init>(kotlin.String;com.apollographql.apollo.ast.SourceLocation?){}[0]
final val message // com.apollographql.apollo.ast/DuplicateDeferLabel.message|{}message[0]
final fun <get-message>(): kotlin/String // com.apollographql.apollo.ast/DuplicateDeferLabel.message.<get-message>|<get-message>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/DuplicateDeferLabel.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/DuplicateDeferLabel.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
}
final class com.apollographql.apollo.ast/DuplicateTypeName : com.apollographql.apollo.ast/GraphQLValidationIssue { // com.apollographql.apollo.ast/DuplicateTypeName|null[0]
constructor <init>(kotlin/String, com.apollographql.apollo.ast/SourceLocation?) // com.apollographql.apollo.ast/DuplicateTypeName.<init>|<init>(kotlin.String;com.apollographql.apollo.ast.SourceLocation?){}[0]
final val message // com.apollographql.apollo.ast/DuplicateTypeName.message|{}message[0]
final fun <get-message>(): kotlin/String // com.apollographql.apollo.ast/DuplicateTypeName.message.<get-message>|<get-message>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/DuplicateTypeName.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/DuplicateTypeName.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
}
final class com.apollographql.apollo.ast/ExecutableValidationResult { // com.apollographql.apollo.ast/ExecutableValidationResult|null[0]
constructor <init>(kotlin.collections/Map<kotlin/String, kotlin.collections/List<com.apollographql.apollo.ast/VariableUsage>>, kotlin.collections/List<com.apollographql.apollo.ast/Issue>) // com.apollographql.apollo.ast/ExecutableValidationResult.<init>|<init>(kotlin.collections.Map<kotlin.String,kotlin.collections.List<com.apollographql.apollo.ast.VariableUsage>>;kotlin.collections.List<com.apollographql.apollo.ast.Issue>){}[0]
final val fragmentVariableUsages // com.apollographql.apollo.ast/ExecutableValidationResult.fragmentVariableUsages|{}fragmentVariableUsages[0]
final fun <get-fragmentVariableUsages>(): kotlin.collections/Map<kotlin/String, kotlin.collections/List<com.apollographql.apollo.ast/VariableUsage>> // com.apollographql.apollo.ast/ExecutableValidationResult.fragmentVariableUsages.<get-fragmentVariableUsages>|<get-fragmentVariableUsages>(){}[0]
final val issues // com.apollographql.apollo.ast/ExecutableValidationResult.issues|{}issues[0]
final fun <get-issues>(): kotlin.collections/List<com.apollographql.apollo.ast/Issue> // com.apollographql.apollo.ast/ExecutableValidationResult.issues.<get-issues>|<get-issues>(){}[0]
}
final class com.apollographql.apollo.ast/ForeignSchema { // com.apollographql.apollo.ast/ForeignSchema|null[0]
constructor <init>(kotlin/String, kotlin/String, kotlin.collections/List<com.apollographql.apollo.ast/GQLDefinition>, kotlin.collections/List<kotlin/String> = ...) // com.apollographql.apollo.ast/ForeignSchema.<init>|<init>(kotlin.String;kotlin.String;kotlin.collections.List<com.apollographql.apollo.ast.GQLDefinition>;kotlin.collections.List<kotlin.String>){}[0]
final val definitions // com.apollographql.apollo.ast/ForeignSchema.definitions|{}definitions[0]
final fun <get-definitions>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLDefinition> // com.apollographql.apollo.ast/ForeignSchema.definitions.<get-definitions>|<get-definitions>(){}[0]
final val directivesToStrip // com.apollographql.apollo.ast/ForeignSchema.directivesToStrip|{}directivesToStrip[0]
final fun <get-directivesToStrip>(): kotlin.collections/List<kotlin/String> // com.apollographql.apollo.ast/ForeignSchema.directivesToStrip.<get-directivesToStrip>|<get-directivesToStrip>(){}[0]
final val name // com.apollographql.apollo.ast/ForeignSchema.name|{}name[0]
final fun <get-name>(): kotlin/String // com.apollographql.apollo.ast/ForeignSchema.name.<get-name>|<get-name>(){}[0]
final val nameWithVersion // com.apollographql.apollo.ast/ForeignSchema.nameWithVersion|{}nameWithVersion[0]
final fun <get-nameWithVersion>(): kotlin/String // com.apollographql.apollo.ast/ForeignSchema.nameWithVersion.<get-nameWithVersion>|<get-nameWithVersion>(){}[0]
final val version // com.apollographql.apollo.ast/ForeignSchema.version|{}version[0]
final fun <get-version>(): kotlin/String // com.apollographql.apollo.ast/ForeignSchema.version.<get-version>|<get-version>(){}[0]
}
final class com.apollographql.apollo.ast/FragmentCycle : com.apollographql.apollo.ast/GraphQLValidationIssue { // com.apollographql.apollo.ast/FragmentCycle|null[0]
constructor <init>(kotlin/String, com.apollographql.apollo.ast/SourceLocation?) // com.apollographql.apollo.ast/FragmentCycle.<init>|<init>(kotlin.String;com.apollographql.apollo.ast.SourceLocation?){}[0]
final val message // com.apollographql.apollo.ast/FragmentCycle.message|{}message[0]
final fun <get-message>(): kotlin/String // com.apollographql.apollo.ast/FragmentCycle.message.<get-message>|<get-message>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/FragmentCycle.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/FragmentCycle.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
}
final class com.apollographql.apollo.ast/GQLArgument : com.apollographql.apollo.ast/GQLNamed, com.apollographql.apollo.ast/GQLNode { // com.apollographql.apollo.ast/GQLArgument|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String, com.apollographql.apollo.ast/GQLValue) // com.apollographql.apollo.ast/GQLArgument.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.String;com.apollographql.apollo.ast.GQLValue){}[0]
final val children // com.apollographql.apollo.ast/GQLArgument.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLValue> // com.apollographql.apollo.ast/GQLArgument.children.<get-children>|<get-children>(){}[0]
final val name // com.apollographql.apollo.ast/GQLArgument.name|{}name[0]
final fun <get-name>(): kotlin/String // com.apollographql.apollo.ast/GQLArgument.name.<get-name>|<get-name>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLArgument.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLArgument.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final val value // com.apollographql.apollo.ast/GQLArgument.value|{}value[0]
final fun <get-value>(): com.apollographql.apollo.ast/GQLValue // com.apollographql.apollo.ast/GQLArgument.value.<get-value>|<get-value>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String = ..., com.apollographql.apollo.ast/GQLValue = ...): com.apollographql.apollo.ast/GQLArgument // com.apollographql.apollo.ast/GQLArgument.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.String;com.apollographql.apollo.ast.GQLValue){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLArgument.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLArgument.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLArgumentCoordinate : com.apollographql.apollo.ast/GQLNode, com.apollographql.apollo.ast/GQLSchemaCoordinate { // com.apollographql.apollo.ast/GQLArgumentCoordinate|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation?, kotlin/String, kotlin/String, kotlin/String) // com.apollographql.apollo.ast/GQLArgumentCoordinate.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.String;kotlin.String;kotlin.String){}[0]
final val argument // com.apollographql.apollo.ast/GQLArgumentCoordinate.argument|{}argument[0]
final fun <get-argument>(): kotlin/String // com.apollographql.apollo.ast/GQLArgumentCoordinate.argument.<get-argument>|<get-argument>(){}[0]
final val children // com.apollographql.apollo.ast/GQLArgumentCoordinate.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLNode> // com.apollographql.apollo.ast/GQLArgumentCoordinate.children.<get-children>|<get-children>(){}[0]
final val field // com.apollographql.apollo.ast/GQLArgumentCoordinate.field|{}field[0]
final fun <get-field>(): kotlin/String // com.apollographql.apollo.ast/GQLArgumentCoordinate.field.<get-field>|<get-field>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLArgumentCoordinate.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLArgumentCoordinate.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final val type // com.apollographql.apollo.ast/GQLArgumentCoordinate.type|{}type[0]
final fun <get-type>(): kotlin/String // com.apollographql.apollo.ast/GQLArgumentCoordinate.type.<get-type>|<get-type>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String = ..., kotlin/String = ..., kotlin/String = ...): com.apollographql.apollo.ast/GQLArgumentCoordinate // com.apollographql.apollo.ast/GQLArgumentCoordinate.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.String;kotlin.String;kotlin.String){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLArgumentCoordinate.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLArgumentCoordinate.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLArguments : com.apollographql.apollo.ast/GQLNode { // com.apollographql.apollo.ast/GQLArguments|null[0]
constructor <init>(kotlin.collections/List<com.apollographql.apollo.ast/GQLArgument>, com.apollographql.apollo.ast/SourceLocation? = ...) // com.apollographql.apollo.ast/GQLArguments.<init>|<init>(kotlin.collections.List<com.apollographql.apollo.ast.GQLArgument>;com.apollographql.apollo.ast.SourceLocation?){}[0]
final val arguments // com.apollographql.apollo.ast/GQLArguments.arguments|{}arguments[0]
final fun <get-arguments>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLArgument> // com.apollographql.apollo.ast/GQLArguments.arguments.<get-arguments>|<get-arguments>(){}[0]
final val children // com.apollographql.apollo.ast/GQLArguments.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLNode> // com.apollographql.apollo.ast/GQLArguments.children.<get-children>|<get-children>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLArguments.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLArguments.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final fun copy(kotlin.collections/List<com.apollographql.apollo.ast/GQLArgument> = ..., com.apollographql.apollo.ast/SourceLocation? = ...): com.apollographql.apollo.ast/GQLArguments // com.apollographql.apollo.ast/GQLArguments.copy|copy(kotlin.collections.List<com.apollographql.apollo.ast.GQLArgument>;com.apollographql.apollo.ast.SourceLocation?){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLArguments.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLArguments.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLBooleanValue : com.apollographql.apollo.ast/GQLValue { // com.apollographql.apollo.ast/GQLBooleanValue|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/Boolean) // com.apollographql.apollo.ast/GQLBooleanValue.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.Boolean){}[0]
final val children // com.apollographql.apollo.ast/GQLBooleanValue.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLNode> // com.apollographql.apollo.ast/GQLBooleanValue.children.<get-children>|<get-children>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLBooleanValue.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLBooleanValue.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final val value // com.apollographql.apollo.ast/GQLBooleanValue.value|{}value[0]
final fun <get-value>(): kotlin/Boolean // com.apollographql.apollo.ast/GQLBooleanValue.value.<get-value>|<get-value>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/Boolean = ...): com.apollographql.apollo.ast/GQLBooleanValue // com.apollographql.apollo.ast/GQLBooleanValue.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.Boolean){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLBooleanValue.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLBooleanValue.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLCapability : com.apollographql.apollo.ast/GQLNode { // com.apollographql.apollo.ast/GQLCapability|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String?, kotlin/String, kotlin/String?) // com.apollographql.apollo.ast/GQLCapability.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.String?;kotlin.String;kotlin.String?){}[0]
final val children // com.apollographql.apollo.ast/GQLCapability.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLNode> // com.apollographql.apollo.ast/GQLCapability.children.<get-children>|<get-children>(){}[0]
final val description // com.apollographql.apollo.ast/GQLCapability.description|{}description[0]
final fun <get-description>(): kotlin/String? // com.apollographql.apollo.ast/GQLCapability.description.<get-description>|<get-description>(){}[0]
final val name // com.apollographql.apollo.ast/GQLCapability.name|{}name[0]
final fun <get-name>(): kotlin/String // com.apollographql.apollo.ast/GQLCapability.name.<get-name>|<get-name>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLCapability.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLCapability.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final val value // com.apollographql.apollo.ast/GQLCapability.value|{}value[0]
final fun <get-value>(): kotlin/String? // com.apollographql.apollo.ast/GQLCapability.value.<get-value>|<get-value>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String? = ..., kotlin/String = ..., kotlin/String? = ...): com.apollographql.apollo.ast/GQLCapability // com.apollographql.apollo.ast/GQLCapability.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.String?;kotlin.String;kotlin.String?){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLCapability.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLCapability.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLDirective : com.apollographql.apollo.ast/GQLNamed, com.apollographql.apollo.ast/GQLNode { // com.apollographql.apollo.ast/GQLDirective|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String, kotlin.collections/List<com.apollographql.apollo.ast/GQLArgument>) // com.apollographql.apollo.ast/GQLDirective.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.String;kotlin.collections.List<com.apollographql.apollo.ast.GQLArgument>){}[0]
final val arguments // com.apollographql.apollo.ast/GQLDirective.arguments|{}arguments[0]
final fun <get-arguments>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLArgument> // com.apollographql.apollo.ast/GQLDirective.arguments.<get-arguments>|<get-arguments>(){}[0]
final val children // com.apollographql.apollo.ast/GQLDirective.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLArgument> // com.apollographql.apollo.ast/GQLDirective.children.<get-children>|<get-children>(){}[0]
final val name // com.apollographql.apollo.ast/GQLDirective.name|{}name[0]
final fun <get-name>(): kotlin/String // com.apollographql.apollo.ast/GQLDirective.name.<get-name>|<get-name>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLDirective.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLDirective.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLArgument> = ...): com.apollographql.apollo.ast/GQLDirective // com.apollographql.apollo.ast/GQLDirective.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.String;kotlin.collections.List<com.apollographql.apollo.ast.GQLArgument>){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLDirective.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLDirective.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLDirectiveArgumentCoordinate : com.apollographql.apollo.ast/GQLNode, com.apollographql.apollo.ast/GQLSchemaCoordinate { // com.apollographql.apollo.ast/GQLDirectiveArgumentCoordinate|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation?, kotlin/String, kotlin/String) // com.apollographql.apollo.ast/GQLDirectiveArgumentCoordinate.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.String;kotlin.String){}[0]
final val argument // com.apollographql.apollo.ast/GQLDirectiveArgumentCoordinate.argument|{}argument[0]
final fun <get-argument>(): kotlin/String // com.apollographql.apollo.ast/GQLDirectiveArgumentCoordinate.argument.<get-argument>|<get-argument>(){}[0]
final val children // com.apollographql.apollo.ast/GQLDirectiveArgumentCoordinate.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLNode> // com.apollographql.apollo.ast/GQLDirectiveArgumentCoordinate.children.<get-children>|<get-children>(){}[0]
final val name // com.apollographql.apollo.ast/GQLDirectiveArgumentCoordinate.name|{}name[0]
final fun <get-name>(): kotlin/String // com.apollographql.apollo.ast/GQLDirectiveArgumentCoordinate.name.<get-name>|<get-name>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLDirectiveArgumentCoordinate.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLDirectiveArgumentCoordinate.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String = ..., kotlin/String = ...): com.apollographql.apollo.ast/GQLDirectiveArgumentCoordinate // com.apollographql.apollo.ast/GQLDirectiveArgumentCoordinate.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.String;kotlin.String){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLDirectiveArgumentCoordinate.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLDirectiveArgumentCoordinate.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLDirectiveCoordinate : com.apollographql.apollo.ast/GQLNode, com.apollographql.apollo.ast/GQLSchemaCoordinate { // com.apollographql.apollo.ast/GQLDirectiveCoordinate|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation?, kotlin/String) // com.apollographql.apollo.ast/GQLDirectiveCoordinate.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.String){}[0]
final val children // com.apollographql.apollo.ast/GQLDirectiveCoordinate.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLNode> // com.apollographql.apollo.ast/GQLDirectiveCoordinate.children.<get-children>|<get-children>(){}[0]
final val name // com.apollographql.apollo.ast/GQLDirectiveCoordinate.name|{}name[0]
final fun <get-name>(): kotlin/String // com.apollographql.apollo.ast/GQLDirectiveCoordinate.name.<get-name>|<get-name>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLDirectiveCoordinate.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLDirectiveCoordinate.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String = ...): com.apollographql.apollo.ast/GQLDirectiveCoordinate // com.apollographql.apollo.ast/GQLDirectiveCoordinate.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.String){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLDirectiveCoordinate.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLDirectiveCoordinate.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLDirectiveDefinition : com.apollographql.apollo.ast/GQLDefinition, com.apollographql.apollo.ast/GQLDescribed, com.apollographql.apollo.ast/GQLHasDirectives, com.apollographql.apollo.ast/GQLNamed { // com.apollographql.apollo.ast/GQLDirectiveDefinition|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String?, kotlin/String, kotlin.collections/List<com.apollographql.apollo.ast/GQLInputValueDefinition>, kotlin/Boolean, kotlin.collections/List<com.apollographql.apollo.ast/GQLDirectiveLocation>) // com.apollographql.apollo.ast/GQLDirectiveDefinition.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.String?;kotlin.String;kotlin.collections.List<com.apollographql.apollo.ast.GQLInputValueDefinition>;kotlin.Boolean;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirectiveLocation>){}[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String?, kotlin/String, kotlin.collections/List<com.apollographql.apollo.ast/GQLInputValueDefinition>, kotlin/Boolean, kotlin.collections/List<com.apollographql.apollo.ast/GQLDirectiveLocation>, kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective>) // com.apollographql.apollo.ast/GQLDirectiveDefinition.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.String?;kotlin.String;kotlin.collections.List<com.apollographql.apollo.ast.GQLInputValueDefinition>;kotlin.Boolean;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirectiveLocation>;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>){}[0]
final val arguments // com.apollographql.apollo.ast/GQLDirectiveDefinition.arguments|{}arguments[0]
final fun <get-arguments>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLInputValueDefinition> // com.apollographql.apollo.ast/GQLDirectiveDefinition.arguments.<get-arguments>|<get-arguments>(){}[0]
final val children // com.apollographql.apollo.ast/GQLDirectiveDefinition.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLNode> // com.apollographql.apollo.ast/GQLDirectiveDefinition.children.<get-children>|<get-children>(){}[0]
final val description // com.apollographql.apollo.ast/GQLDirectiveDefinition.description|{}description[0]
final fun <get-description>(): kotlin/String? // com.apollographql.apollo.ast/GQLDirectiveDefinition.description.<get-description>|<get-description>(){}[0]
final val directives // com.apollographql.apollo.ast/GQLDirectiveDefinition.directives|{}directives[0]
final fun <get-directives>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> // com.apollographql.apollo.ast/GQLDirectiveDefinition.directives.<get-directives>|<get-directives>(){}[0]
final val locations // com.apollographql.apollo.ast/GQLDirectiveDefinition.locations|{}locations[0]
final fun <get-locations>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLDirectiveLocation> // com.apollographql.apollo.ast/GQLDirectiveDefinition.locations.<get-locations>|<get-locations>(){}[0]
final val name // com.apollographql.apollo.ast/GQLDirectiveDefinition.name|{}name[0]
final fun <get-name>(): kotlin/String // com.apollographql.apollo.ast/GQLDirectiveDefinition.name.<get-name>|<get-name>(){}[0]
final val repeatable // com.apollographql.apollo.ast/GQLDirectiveDefinition.repeatable|{}repeatable[0]
final fun <get-repeatable>(): kotlin/Boolean // com.apollographql.apollo.ast/GQLDirectiveDefinition.repeatable.<get-repeatable>|<get-repeatable>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLDirectiveDefinition.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLDirectiveDefinition.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String? = ..., kotlin/String = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLInputValueDefinition> = ..., kotlin/Boolean = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLDirectiveLocation> = ...): com.apollographql.apollo.ast/GQLDirectiveDefinition // com.apollographql.apollo.ast/GQLDirectiveDefinition.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.String?;kotlin.String;kotlin.collections.List<com.apollographql.apollo.ast.GQLInputValueDefinition>;kotlin.Boolean;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirectiveLocation>){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String? = ..., kotlin/String = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLInputValueDefinition> = ..., kotlin/Boolean = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLDirectiveLocation> = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> = ...): com.apollographql.apollo.ast/GQLDirectiveDefinition // com.apollographql.apollo.ast/GQLDirectiveDefinition.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.String?;kotlin.String;kotlin.collections.List<com.apollographql.apollo.ast.GQLInputValueDefinition>;kotlin.Boolean;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirectiveLocation>;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLDirectiveDefinition.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun isBuiltIn(): kotlin/Boolean // com.apollographql.apollo.ast/GQLDirectiveDefinition.isBuiltIn|isBuiltIn(){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLDirectiveDefinition.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
final object Companion { // com.apollographql.apollo.ast/GQLDirectiveDefinition.Companion|null[0]
final val builtInDirectives // com.apollographql.apollo.ast/GQLDirectiveDefinition.Companion.builtInDirectives|{}builtInDirectives[0]
final fun <get-builtInDirectives>(): kotlin.collections/Set<kotlin/String> // com.apollographql.apollo.ast/GQLDirectiveDefinition.Companion.builtInDirectives.<get-builtInDirectives>|<get-builtInDirectives>(){}[0]
}
}
final class com.apollographql.apollo.ast/GQLDirectiveExtension : com.apollographql.apollo.ast/GQLDefinition, com.apollographql.apollo.ast/GQLHasDirectives, com.apollographql.apollo.ast/GQLNamed, com.apollographql.apollo.ast/GQLTypeSystemExtension { // com.apollographql.apollo.ast/GQLDirectiveExtension|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String, kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective>) // com.apollographql.apollo.ast/GQLDirectiveExtension.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.String;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>){}[0]
final val children // com.apollographql.apollo.ast/GQLDirectiveExtension.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLNode> // com.apollographql.apollo.ast/GQLDirectiveExtension.children.<get-children>|<get-children>(){}[0]
final val directives // com.apollographql.apollo.ast/GQLDirectiveExtension.directives|{}directives[0]
final fun <get-directives>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> // com.apollographql.apollo.ast/GQLDirectiveExtension.directives.<get-directives>|<get-directives>(){}[0]
final val name // com.apollographql.apollo.ast/GQLDirectiveExtension.name|{}name[0]
final fun <get-name>(): kotlin/String // com.apollographql.apollo.ast/GQLDirectiveExtension.name.<get-name>|<get-name>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLDirectiveExtension.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLDirectiveExtension.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> = ...): com.apollographql.apollo.ast/GQLDirectiveExtension // com.apollographql.apollo.ast/GQLDirectiveExtension.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.String;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLDirectiveExtension.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLDirectiveExtension.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLDocument : com.apollographql.apollo.ast/GQLNode { // com.apollographql.apollo.ast/GQLDocument|null[0]
constructor <init>(kotlin.collections/List<com.apollographql.apollo.ast/GQLDefinition>, com.apollographql.apollo.ast/SourceLocation?) // com.apollographql.apollo.ast/GQLDocument.<init>|<init>(kotlin.collections.List<com.apollographql.apollo.ast.GQLDefinition>;com.apollographql.apollo.ast.SourceLocation?){}[0]
final val children // com.apollographql.apollo.ast/GQLDocument.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLDefinition> // com.apollographql.apollo.ast/GQLDocument.children.<get-children>|<get-children>(){}[0]
final val definitions // com.apollographql.apollo.ast/GQLDocument.definitions|{}definitions[0]
final fun <get-definitions>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLDefinition> // com.apollographql.apollo.ast/GQLDocument.definitions.<get-definitions>|<get-definitions>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLDocument.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLDocument.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final fun copy(kotlin.collections/List<com.apollographql.apollo.ast/GQLDefinition> = ..., com.apollographql.apollo.ast/SourceLocation? = ...): com.apollographql.apollo.ast/GQLDocument // com.apollographql.apollo.ast/GQLDocument.copy|copy(kotlin.collections.List<com.apollographql.apollo.ast.GQLDefinition>;com.apollographql.apollo.ast.SourceLocation?){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLDocument.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLDocument.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
final object Companion // com.apollographql.apollo.ast/GQLDocument.Companion|null[0]
}
final class com.apollographql.apollo.ast/GQLEnumTypeDefinition : com.apollographql.apollo.ast/GQLTypeDefinition { // com.apollographql.apollo.ast/GQLEnumTypeDefinition|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String?, kotlin/String, kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective>, kotlin.collections/List<com.apollographql.apollo.ast/GQLEnumValueDefinition>) // com.apollographql.apollo.ast/GQLEnumTypeDefinition.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.String?;kotlin.String;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>;kotlin.collections.List<com.apollographql.apollo.ast.GQLEnumValueDefinition>){}[0]
final val children // com.apollographql.apollo.ast/GQLEnumTypeDefinition.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLNode> // com.apollographql.apollo.ast/GQLEnumTypeDefinition.children.<get-children>|<get-children>(){}[0]
final val description // com.apollographql.apollo.ast/GQLEnumTypeDefinition.description|{}description[0]
final fun <get-description>(): kotlin/String? // com.apollographql.apollo.ast/GQLEnumTypeDefinition.description.<get-description>|<get-description>(){}[0]
final val directives // com.apollographql.apollo.ast/GQLEnumTypeDefinition.directives|{}directives[0]
final fun <get-directives>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> // com.apollographql.apollo.ast/GQLEnumTypeDefinition.directives.<get-directives>|<get-directives>(){}[0]
final val enumValues // com.apollographql.apollo.ast/GQLEnumTypeDefinition.enumValues|{}enumValues[0]
final fun <get-enumValues>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLEnumValueDefinition> // com.apollographql.apollo.ast/GQLEnumTypeDefinition.enumValues.<get-enumValues>|<get-enumValues>(){}[0]
final val name // com.apollographql.apollo.ast/GQLEnumTypeDefinition.name|{}name[0]
final fun <get-name>(): kotlin/String // com.apollographql.apollo.ast/GQLEnumTypeDefinition.name.<get-name>|<get-name>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLEnumTypeDefinition.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLEnumTypeDefinition.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String? = ..., kotlin/String = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLEnumValueDefinition> = ...): com.apollographql.apollo.ast/GQLEnumTypeDefinition // com.apollographql.apollo.ast/GQLEnumTypeDefinition.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.String?;kotlin.String;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>;kotlin.collections.List<com.apollographql.apollo.ast.GQLEnumValueDefinition>){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLEnumTypeDefinition.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLEnumTypeDefinition.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLEnumTypeExtension : com.apollographql.apollo.ast/GQLDefinition, com.apollographql.apollo.ast/GQLHasDirectives, com.apollographql.apollo.ast/GQLTypeExtension { // com.apollographql.apollo.ast/GQLEnumTypeExtension|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String, kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective>, kotlin.collections/List<com.apollographql.apollo.ast/GQLEnumValueDefinition>) // com.apollographql.apollo.ast/GQLEnumTypeExtension.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.String;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>;kotlin.collections.List<com.apollographql.apollo.ast.GQLEnumValueDefinition>){}[0]
final val children // com.apollographql.apollo.ast/GQLEnumTypeExtension.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLNode> // com.apollographql.apollo.ast/GQLEnumTypeExtension.children.<get-children>|<get-children>(){}[0]
final val directives // com.apollographql.apollo.ast/GQLEnumTypeExtension.directives|{}directives[0]
final fun <get-directives>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> // com.apollographql.apollo.ast/GQLEnumTypeExtension.directives.<get-directives>|<get-directives>(){}[0]
final val enumValues // com.apollographql.apollo.ast/GQLEnumTypeExtension.enumValues|{}enumValues[0]
final fun <get-enumValues>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLEnumValueDefinition> // com.apollographql.apollo.ast/GQLEnumTypeExtension.enumValues.<get-enumValues>|<get-enumValues>(){}[0]
final val name // com.apollographql.apollo.ast/GQLEnumTypeExtension.name|{}name[0]
final fun <get-name>(): kotlin/String // com.apollographql.apollo.ast/GQLEnumTypeExtension.name.<get-name>|<get-name>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLEnumTypeExtension.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLEnumTypeExtension.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLEnumValueDefinition> = ...): com.apollographql.apollo.ast/GQLEnumTypeExtension // com.apollographql.apollo.ast/GQLEnumTypeExtension.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.String;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>;kotlin.collections.List<com.apollographql.apollo.ast.GQLEnumValueDefinition>){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLEnumTypeExtension.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLEnumTypeExtension.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLEnumValue : com.apollographql.apollo.ast/GQLValue { // com.apollographql.apollo.ast/GQLEnumValue|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String) // com.apollographql.apollo.ast/GQLEnumValue.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.String){}[0]
final val children // com.apollographql.apollo.ast/GQLEnumValue.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLNode> // com.apollographql.apollo.ast/GQLEnumValue.children.<get-children>|<get-children>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLEnumValue.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLEnumValue.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final val value // com.apollographql.apollo.ast/GQLEnumValue.value|{}value[0]
final fun <get-value>(): kotlin/String // com.apollographql.apollo.ast/GQLEnumValue.value.<get-value>|<get-value>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String = ...): com.apollographql.apollo.ast/GQLEnumValue // com.apollographql.apollo.ast/GQLEnumValue.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.String){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLEnumValue.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLEnumValue.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLEnumValueDefinition : com.apollographql.apollo.ast/GQLDescribed, com.apollographql.apollo.ast/GQLHasDirectives, com.apollographql.apollo.ast/GQLNamed, com.apollographql.apollo.ast/GQLNode { // com.apollographql.apollo.ast/GQLEnumValueDefinition|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String?, kotlin/String, kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective>) // com.apollographql.apollo.ast/GQLEnumValueDefinition.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.String?;kotlin.String;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>){}[0]
final val children // com.apollographql.apollo.ast/GQLEnumValueDefinition.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> // com.apollographql.apollo.ast/GQLEnumValueDefinition.children.<get-children>|<get-children>(){}[0]
final val description // com.apollographql.apollo.ast/GQLEnumValueDefinition.description|{}description[0]
final fun <get-description>(): kotlin/String? // com.apollographql.apollo.ast/GQLEnumValueDefinition.description.<get-description>|<get-description>(){}[0]
final val directives // com.apollographql.apollo.ast/GQLEnumValueDefinition.directives|{}directives[0]
final fun <get-directives>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> // com.apollographql.apollo.ast/GQLEnumValueDefinition.directives.<get-directives>|<get-directives>(){}[0]
final val name // com.apollographql.apollo.ast/GQLEnumValueDefinition.name|{}name[0]
final fun <get-name>(): kotlin/String // com.apollographql.apollo.ast/GQLEnumValueDefinition.name.<get-name>|<get-name>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLEnumValueDefinition.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLEnumValueDefinition.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String? = ..., kotlin/String = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> = ...): com.apollographql.apollo.ast/GQLEnumValueDefinition // com.apollographql.apollo.ast/GQLEnumValueDefinition.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.String?;kotlin.String;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLEnumValueDefinition.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLEnumValueDefinition.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLField : com.apollographql.apollo.ast/GQLHasDirectives, com.apollographql.apollo.ast/GQLNamed, com.apollographql.apollo.ast/GQLSelection { // com.apollographql.apollo.ast/GQLField|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String?, kotlin/String, kotlin.collections/List<com.apollographql.apollo.ast/GQLArgument>, kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective>, kotlin.collections/List<com.apollographql.apollo.ast/GQLSelection>) // com.apollographql.apollo.ast/GQLField.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.String?;kotlin.String;kotlin.collections.List<com.apollographql.apollo.ast.GQLArgument>;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>;kotlin.collections.List<com.apollographql.apollo.ast.GQLSelection>){}[0]
final val alias // com.apollographql.apollo.ast/GQLField.alias|{}alias[0]
final fun <get-alias>(): kotlin/String? // com.apollographql.apollo.ast/GQLField.alias.<get-alias>|<get-alias>(){}[0]
final val arguments // com.apollographql.apollo.ast/GQLField.arguments|{}arguments[0]
final fun <get-arguments>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLArgument> // com.apollographql.apollo.ast/GQLField.arguments.<get-arguments>|<get-arguments>(){}[0]
final val children // com.apollographql.apollo.ast/GQLField.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLNode> // com.apollographql.apollo.ast/GQLField.children.<get-children>|<get-children>(){}[0]
final val directives // com.apollographql.apollo.ast/GQLField.directives|{}directives[0]
final fun <get-directives>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> // com.apollographql.apollo.ast/GQLField.directives.<get-directives>|<get-directives>(){}[0]
final val name // com.apollographql.apollo.ast/GQLField.name|{}name[0]
final fun <get-name>(): kotlin/String // com.apollographql.apollo.ast/GQLField.name.<get-name>|<get-name>(){}[0]
final val selectionSet // com.apollographql.apollo.ast/GQLField.selectionSet|{}selectionSet[0]
final fun <get-selectionSet>(): com.apollographql.apollo.ast/GQLSelectionSet // com.apollographql.apollo.ast/GQLField.selectionSet.<get-selectionSet>|<get-selectionSet>(){}[0]
final val selections // com.apollographql.apollo.ast/GQLField.selections|{}selections[0]
final fun <get-selections>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLSelection> // com.apollographql.apollo.ast/GQLField.selections.<get-selections>|<get-selections>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLField.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLField.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String? = ..., kotlin/String = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLArgument> = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLSelection> = ...): com.apollographql.apollo.ast/GQLField // com.apollographql.apollo.ast/GQLField.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.String?;kotlin.String;kotlin.collections.List<com.apollographql.apollo.ast.GQLArgument>;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>;kotlin.collections.List<com.apollographql.apollo.ast.GQLSelection>){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLField.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLField.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLFieldDefinition : com.apollographql.apollo.ast/GQLDescribed, com.apollographql.apollo.ast/GQLHasDirectives, com.apollographql.apollo.ast/GQLNamed, com.apollographql.apollo.ast/GQLNode { // com.apollographql.apollo.ast/GQLFieldDefinition|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String?, kotlin/String, kotlin.collections/List<com.apollographql.apollo.ast/GQLInputValueDefinition>, com.apollographql.apollo.ast/GQLType, kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective>) // com.apollographql.apollo.ast/GQLFieldDefinition.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.String?;kotlin.String;kotlin.collections.List<com.apollographql.apollo.ast.GQLInputValueDefinition>;com.apollographql.apollo.ast.GQLType;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>){}[0]
final val arguments // com.apollographql.apollo.ast/GQLFieldDefinition.arguments|{}arguments[0]
final fun <get-arguments>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLInputValueDefinition> // com.apollographql.apollo.ast/GQLFieldDefinition.arguments.<get-arguments>|<get-arguments>(){}[0]
final val children // com.apollographql.apollo.ast/GQLFieldDefinition.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLNode> // com.apollographql.apollo.ast/GQLFieldDefinition.children.<get-children>|<get-children>(){}[0]
final val description // com.apollographql.apollo.ast/GQLFieldDefinition.description|{}description[0]
final fun <get-description>(): kotlin/String? // com.apollographql.apollo.ast/GQLFieldDefinition.description.<get-description>|<get-description>(){}[0]
final val directives // com.apollographql.apollo.ast/GQLFieldDefinition.directives|{}directives[0]
final fun <get-directives>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> // com.apollographql.apollo.ast/GQLFieldDefinition.directives.<get-directives>|<get-directives>(){}[0]
final val name // com.apollographql.apollo.ast/GQLFieldDefinition.name|{}name[0]
final fun <get-name>(): kotlin/String // com.apollographql.apollo.ast/GQLFieldDefinition.name.<get-name>|<get-name>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLFieldDefinition.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLFieldDefinition.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final val type // com.apollographql.apollo.ast/GQLFieldDefinition.type|{}type[0]
final fun <get-type>(): com.apollographql.apollo.ast/GQLType // com.apollographql.apollo.ast/GQLFieldDefinition.type.<get-type>|<get-type>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String? = ..., kotlin/String = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLInputValueDefinition> = ..., com.apollographql.apollo.ast/GQLType = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> = ...): com.apollographql.apollo.ast/GQLFieldDefinition // com.apollographql.apollo.ast/GQLFieldDefinition.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.String?;kotlin.String;kotlin.collections.List<com.apollographql.apollo.ast.GQLInputValueDefinition>;com.apollographql.apollo.ast.GQLType;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLFieldDefinition.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLFieldDefinition.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLFloatValue : com.apollographql.apollo.ast/GQLValue { // com.apollographql.apollo.ast/GQLFloatValue|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String) // com.apollographql.apollo.ast/GQLFloatValue.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.String){}[0]
final val children // com.apollographql.apollo.ast/GQLFloatValue.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLNode> // com.apollographql.apollo.ast/GQLFloatValue.children.<get-children>|<get-children>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLFloatValue.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLFloatValue.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final val value // com.apollographql.apollo.ast/GQLFloatValue.value|{}value[0]
final fun <get-value>(): kotlin/String // com.apollographql.apollo.ast/GQLFloatValue.value.<get-value>|<get-value>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String = ...): com.apollographql.apollo.ast/GQLFloatValue // com.apollographql.apollo.ast/GQLFloatValue.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.String){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLFloatValue.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLFloatValue.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLFragmentDefinition : com.apollographql.apollo.ast/GQLDescribed, com.apollographql.apollo.ast/GQLExecutableDefinition, com.apollographql.apollo.ast/GQLHasDirectives, com.apollographql.apollo.ast/GQLNamed { // com.apollographql.apollo.ast/GQLFragmentDefinition|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String, kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective>, com.apollographql.apollo.ast/GQLNamedType, kotlin.collections/List<com.apollographql.apollo.ast/GQLSelection>, kotlin/String?) // com.apollographql.apollo.ast/GQLFragmentDefinition.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.String;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>;com.apollographql.apollo.ast.GQLNamedType;kotlin.collections.List<com.apollographql.apollo.ast.GQLSelection>;kotlin.String?){}[0]
final val children // com.apollographql.apollo.ast/GQLFragmentDefinition.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLNode> // com.apollographql.apollo.ast/GQLFragmentDefinition.children.<get-children>|<get-children>(){}[0]
final val description // com.apollographql.apollo.ast/GQLFragmentDefinition.description|{}description[0]
final fun <get-description>(): kotlin/String? // com.apollographql.apollo.ast/GQLFragmentDefinition.description.<get-description>|<get-description>(){}[0]
final val directives // com.apollographql.apollo.ast/GQLFragmentDefinition.directives|{}directives[0]
final fun <get-directives>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> // com.apollographql.apollo.ast/GQLFragmentDefinition.directives.<get-directives>|<get-directives>(){}[0]
final val name // com.apollographql.apollo.ast/GQLFragmentDefinition.name|{}name[0]
final fun <get-name>(): kotlin/String // com.apollographql.apollo.ast/GQLFragmentDefinition.name.<get-name>|<get-name>(){}[0]
final val selectionSet // com.apollographql.apollo.ast/GQLFragmentDefinition.selectionSet|{}selectionSet[0]
final fun <get-selectionSet>(): com.apollographql.apollo.ast/GQLSelectionSet // com.apollographql.apollo.ast/GQLFragmentDefinition.selectionSet.<get-selectionSet>|<get-selectionSet>(){}[0]
final val selections // com.apollographql.apollo.ast/GQLFragmentDefinition.selections|{}selections[0]
final fun <get-selections>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLSelection> // com.apollographql.apollo.ast/GQLFragmentDefinition.selections.<get-selections>|<get-selections>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLFragmentDefinition.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLFragmentDefinition.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final val typeCondition // com.apollographql.apollo.ast/GQLFragmentDefinition.typeCondition|{}typeCondition[0]
final fun <get-typeCondition>(): com.apollographql.apollo.ast/GQLNamedType // com.apollographql.apollo.ast/GQLFragmentDefinition.typeCondition.<get-typeCondition>|<get-typeCondition>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> = ..., com.apollographql.apollo.ast/GQLNamedType = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLSelection> = ..., kotlin/String? = ...): com.apollographql.apollo.ast/GQLFragmentDefinition // com.apollographql.apollo.ast/GQLFragmentDefinition.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.String;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>;com.apollographql.apollo.ast.GQLNamedType;kotlin.collections.List<com.apollographql.apollo.ast.GQLSelection>;kotlin.String?){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLFragmentDefinition.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLFragmentDefinition.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLFragmentSpread : com.apollographql.apollo.ast/GQLHasDirectives, com.apollographql.apollo.ast/GQLNamed, com.apollographql.apollo.ast/GQLSelection { // com.apollographql.apollo.ast/GQLFragmentSpread|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String, kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective>) // com.apollographql.apollo.ast/GQLFragmentSpread.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.String;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>){}[0]
final val children // com.apollographql.apollo.ast/GQLFragmentSpread.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> // com.apollographql.apollo.ast/GQLFragmentSpread.children.<get-children>|<get-children>(){}[0]
final val directives // com.apollographql.apollo.ast/GQLFragmentSpread.directives|{}directives[0]
final fun <get-directives>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> // com.apollographql.apollo.ast/GQLFragmentSpread.directives.<get-directives>|<get-directives>(){}[0]
final val name // com.apollographql.apollo.ast/GQLFragmentSpread.name|{}name[0]
final fun <get-name>(): kotlin/String // com.apollographql.apollo.ast/GQLFragmentSpread.name.<get-name>|<get-name>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLFragmentSpread.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLFragmentSpread.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> = ...): com.apollographql.apollo.ast/GQLFragmentSpread // com.apollographql.apollo.ast/GQLFragmentSpread.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.String;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLFragmentSpread.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLFragmentSpread.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLInlineFragment : com.apollographql.apollo.ast/GQLHasDirectives, com.apollographql.apollo.ast/GQLSelection { // com.apollographql.apollo.ast/GQLInlineFragment|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., com.apollographql.apollo.ast/GQLNamedType?, kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective>, kotlin.collections/List<com.apollographql.apollo.ast/GQLSelection>) // com.apollographql.apollo.ast/GQLInlineFragment.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;com.apollographql.apollo.ast.GQLNamedType?;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>;kotlin.collections.List<com.apollographql.apollo.ast.GQLSelection>){}[0]
final val children // com.apollographql.apollo.ast/GQLInlineFragment.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLNode> // com.apollographql.apollo.ast/GQLInlineFragment.children.<get-children>|<get-children>(){}[0]
final val directives // com.apollographql.apollo.ast/GQLInlineFragment.directives|{}directives[0]
final fun <get-directives>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> // com.apollographql.apollo.ast/GQLInlineFragment.directives.<get-directives>|<get-directives>(){}[0]
final val selectionSet // com.apollographql.apollo.ast/GQLInlineFragment.selectionSet|{}selectionSet[0]
final fun <get-selectionSet>(): com.apollographql.apollo.ast/GQLSelectionSet // com.apollographql.apollo.ast/GQLInlineFragment.selectionSet.<get-selectionSet>|<get-selectionSet>(){}[0]
final val selections // com.apollographql.apollo.ast/GQLInlineFragment.selections|{}selections[0]
final fun <get-selections>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLSelection> // com.apollographql.apollo.ast/GQLInlineFragment.selections.<get-selections>|<get-selections>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLInlineFragment.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLInlineFragment.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final val typeCondition // com.apollographql.apollo.ast/GQLInlineFragment.typeCondition|{}typeCondition[0]
final fun <get-typeCondition>(): com.apollographql.apollo.ast/GQLNamedType? // com.apollographql.apollo.ast/GQLInlineFragment.typeCondition.<get-typeCondition>|<get-typeCondition>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., com.apollographql.apollo.ast/GQLNamedType? = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLSelection> = ...): com.apollographql.apollo.ast/GQLInlineFragment // com.apollographql.apollo.ast/GQLInlineFragment.copy|copy(com.apollographql.apollo.ast.SourceLocation?;com.apollographql.apollo.ast.GQLNamedType?;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>;kotlin.collections.List<com.apollographql.apollo.ast.GQLSelection>){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLInlineFragment.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLInlineFragment.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLInputObjectTypeDefinition : com.apollographql.apollo.ast/GQLTypeDefinition { // com.apollographql.apollo.ast/GQLInputObjectTypeDefinition|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String?, kotlin/String, kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective>, kotlin.collections/List<com.apollographql.apollo.ast/GQLInputValueDefinition>) // com.apollographql.apollo.ast/GQLInputObjectTypeDefinition.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.String?;kotlin.String;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>;kotlin.collections.List<com.apollographql.apollo.ast.GQLInputValueDefinition>){}[0]
final val children // com.apollographql.apollo.ast/GQLInputObjectTypeDefinition.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLNode> // com.apollographql.apollo.ast/GQLInputObjectTypeDefinition.children.<get-children>|<get-children>(){}[0]
final val description // com.apollographql.apollo.ast/GQLInputObjectTypeDefinition.description|{}description[0]
final fun <get-description>(): kotlin/String? // com.apollographql.apollo.ast/GQLInputObjectTypeDefinition.description.<get-description>|<get-description>(){}[0]
final val directives // com.apollographql.apollo.ast/GQLInputObjectTypeDefinition.directives|{}directives[0]
final fun <get-directives>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> // com.apollographql.apollo.ast/GQLInputObjectTypeDefinition.directives.<get-directives>|<get-directives>(){}[0]
final val inputFields // com.apollographql.apollo.ast/GQLInputObjectTypeDefinition.inputFields|{}inputFields[0]
final fun <get-inputFields>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLInputValueDefinition> // com.apollographql.apollo.ast/GQLInputObjectTypeDefinition.inputFields.<get-inputFields>|<get-inputFields>(){}[0]
final val name // com.apollographql.apollo.ast/GQLInputObjectTypeDefinition.name|{}name[0]
final fun <get-name>(): kotlin/String // com.apollographql.apollo.ast/GQLInputObjectTypeDefinition.name.<get-name>|<get-name>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLInputObjectTypeDefinition.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLInputObjectTypeDefinition.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String? = ..., kotlin/String = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLInputValueDefinition> = ...): com.apollographql.apollo.ast/GQLInputObjectTypeDefinition // com.apollographql.apollo.ast/GQLInputObjectTypeDefinition.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.String?;kotlin.String;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>;kotlin.collections.List<com.apollographql.apollo.ast.GQLInputValueDefinition>){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLInputObjectTypeDefinition.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLInputObjectTypeDefinition.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLInputObjectTypeExtension : com.apollographql.apollo.ast/GQLDefinition, com.apollographql.apollo.ast/GQLHasDirectives, com.apollographql.apollo.ast/GQLTypeExtension { // com.apollographql.apollo.ast/GQLInputObjectTypeExtension|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String, kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective>, kotlin.collections/List<com.apollographql.apollo.ast/GQLInputValueDefinition>) // com.apollographql.apollo.ast/GQLInputObjectTypeExtension.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.String;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>;kotlin.collections.List<com.apollographql.apollo.ast.GQLInputValueDefinition>){}[0]
final val children // com.apollographql.apollo.ast/GQLInputObjectTypeExtension.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLNode> // com.apollographql.apollo.ast/GQLInputObjectTypeExtension.children.<get-children>|<get-children>(){}[0]
final val directives // com.apollographql.apollo.ast/GQLInputObjectTypeExtension.directives|{}directives[0]
final fun <get-directives>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> // com.apollographql.apollo.ast/GQLInputObjectTypeExtension.directives.<get-directives>|<get-directives>(){}[0]
final val inputFields // com.apollographql.apollo.ast/GQLInputObjectTypeExtension.inputFields|{}inputFields[0]
final fun <get-inputFields>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLInputValueDefinition> // com.apollographql.apollo.ast/GQLInputObjectTypeExtension.inputFields.<get-inputFields>|<get-inputFields>(){}[0]
final val name // com.apollographql.apollo.ast/GQLInputObjectTypeExtension.name|{}name[0]
final fun <get-name>(): kotlin/String // com.apollographql.apollo.ast/GQLInputObjectTypeExtension.name.<get-name>|<get-name>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLInputObjectTypeExtension.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLInputObjectTypeExtension.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLInputValueDefinition> = ...): com.apollographql.apollo.ast/GQLInputObjectTypeExtension // com.apollographql.apollo.ast/GQLInputObjectTypeExtension.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.String;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>;kotlin.collections.List<com.apollographql.apollo.ast.GQLInputValueDefinition>){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLInputObjectTypeExtension.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLInputObjectTypeExtension.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLInputValueDefinition : com.apollographql.apollo.ast/GQLDescribed, com.apollographql.apollo.ast/GQLHasDirectives, com.apollographql.apollo.ast/GQLNamed, com.apollographql.apollo.ast/GQLNode { // com.apollographql.apollo.ast/GQLInputValueDefinition|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String?, kotlin/String, kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective>, com.apollographql.apollo.ast/GQLType, com.apollographql.apollo.ast/GQLValue?) // com.apollographql.apollo.ast/GQLInputValueDefinition.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.String?;kotlin.String;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>;com.apollographql.apollo.ast.GQLType;com.apollographql.apollo.ast.GQLValue?){}[0]
final val children // com.apollographql.apollo.ast/GQLInputValueDefinition.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLNode> // com.apollographql.apollo.ast/GQLInputValueDefinition.children.<get-children>|<get-children>(){}[0]
final val defaultValue // com.apollographql.apollo.ast/GQLInputValueDefinition.defaultValue|{}defaultValue[0]
final fun <get-defaultValue>(): com.apollographql.apollo.ast/GQLValue? // com.apollographql.apollo.ast/GQLInputValueDefinition.defaultValue.<get-defaultValue>|<get-defaultValue>(){}[0]
final val description // com.apollographql.apollo.ast/GQLInputValueDefinition.description|{}description[0]
final fun <get-description>(): kotlin/String? // com.apollographql.apollo.ast/GQLInputValueDefinition.description.<get-description>|<get-description>(){}[0]
final val directives // com.apollographql.apollo.ast/GQLInputValueDefinition.directives|{}directives[0]
final fun <get-directives>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> // com.apollographql.apollo.ast/GQLInputValueDefinition.directives.<get-directives>|<get-directives>(){}[0]
final val name // com.apollographql.apollo.ast/GQLInputValueDefinition.name|{}name[0]
final fun <get-name>(): kotlin/String // com.apollographql.apollo.ast/GQLInputValueDefinition.name.<get-name>|<get-name>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLInputValueDefinition.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLInputValueDefinition.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final val type // com.apollographql.apollo.ast/GQLInputValueDefinition.type|{}type[0]
final fun <get-type>(): com.apollographql.apollo.ast/GQLType // com.apollographql.apollo.ast/GQLInputValueDefinition.type.<get-type>|<get-type>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String? = ..., kotlin/String = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> = ..., com.apollographql.apollo.ast/GQLType = ..., com.apollographql.apollo.ast/GQLValue? = ...): com.apollographql.apollo.ast/GQLInputValueDefinition // com.apollographql.apollo.ast/GQLInputValueDefinition.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.String?;kotlin.String;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>;com.apollographql.apollo.ast.GQLType;com.apollographql.apollo.ast.GQLValue?){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLInputValueDefinition.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun write(com.apollographql.apollo.ast/SDLWriter, kotlin/Boolean) // com.apollographql.apollo.ast/GQLInputValueDefinition.write|write(com.apollographql.apollo.ast.SDLWriter;kotlin.Boolean){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLInputValueDefinition.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLIntValue : com.apollographql.apollo.ast/GQLValue { // com.apollographql.apollo.ast/GQLIntValue|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String) // com.apollographql.apollo.ast/GQLIntValue.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.String){}[0]
final val children // com.apollographql.apollo.ast/GQLIntValue.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLNode> // com.apollographql.apollo.ast/GQLIntValue.children.<get-children>|<get-children>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLIntValue.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLIntValue.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final val value // com.apollographql.apollo.ast/GQLIntValue.value|{}value[0]
final fun <get-value>(): kotlin/String // com.apollographql.apollo.ast/GQLIntValue.value.<get-value>|<get-value>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String = ...): com.apollographql.apollo.ast/GQLIntValue // com.apollographql.apollo.ast/GQLIntValue.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.String){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLIntValue.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLIntValue.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLInterfaceTypeDefinition : com.apollographql.apollo.ast/GQLTypeDefinition { // com.apollographql.apollo.ast/GQLInterfaceTypeDefinition|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String?, kotlin/String, kotlin.collections/List<kotlin/String>, kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective>, kotlin.collections/List<com.apollographql.apollo.ast/GQLFieldDefinition>) // com.apollographql.apollo.ast/GQLInterfaceTypeDefinition.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.String?;kotlin.String;kotlin.collections.List<kotlin.String>;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>;kotlin.collections.List<com.apollographql.apollo.ast.GQLFieldDefinition>){}[0]
final val children // com.apollographql.apollo.ast/GQLInterfaceTypeDefinition.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLNode> // com.apollographql.apollo.ast/GQLInterfaceTypeDefinition.children.<get-children>|<get-children>(){}[0]
final val description // com.apollographql.apollo.ast/GQLInterfaceTypeDefinition.description|{}description[0]
final fun <get-description>(): kotlin/String? // com.apollographql.apollo.ast/GQLInterfaceTypeDefinition.description.<get-description>|<get-description>(){}[0]
final val directives // com.apollographql.apollo.ast/GQLInterfaceTypeDefinition.directives|{}directives[0]
final fun <get-directives>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> // com.apollographql.apollo.ast/GQLInterfaceTypeDefinition.directives.<get-directives>|<get-directives>(){}[0]
final val fields // com.apollographql.apollo.ast/GQLInterfaceTypeDefinition.fields|{}fields[0]
final fun <get-fields>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLFieldDefinition> // com.apollographql.apollo.ast/GQLInterfaceTypeDefinition.fields.<get-fields>|<get-fields>(){}[0]
final val implementsInterfaces // com.apollographql.apollo.ast/GQLInterfaceTypeDefinition.implementsInterfaces|{}implementsInterfaces[0]
final fun <get-implementsInterfaces>(): kotlin.collections/List<kotlin/String> // com.apollographql.apollo.ast/GQLInterfaceTypeDefinition.implementsInterfaces.<get-implementsInterfaces>|<get-implementsInterfaces>(){}[0]
final val name // com.apollographql.apollo.ast/GQLInterfaceTypeDefinition.name|{}name[0]
final fun <get-name>(): kotlin/String // com.apollographql.apollo.ast/GQLInterfaceTypeDefinition.name.<get-name>|<get-name>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLInterfaceTypeDefinition.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLInterfaceTypeDefinition.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String? = ..., kotlin/String = ..., kotlin.collections/List<kotlin/String> = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLFieldDefinition> = ...): com.apollographql.apollo.ast/GQLInterfaceTypeDefinition // com.apollographql.apollo.ast/GQLInterfaceTypeDefinition.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.String?;kotlin.String;kotlin.collections.List<kotlin.String>;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>;kotlin.collections.List<com.apollographql.apollo.ast.GQLFieldDefinition>){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLInterfaceTypeDefinition.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLInterfaceTypeDefinition.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLInterfaceTypeExtension : com.apollographql.apollo.ast/GQLDefinition, com.apollographql.apollo.ast/GQLHasDirectives, com.apollographql.apollo.ast/GQLNamed, com.apollographql.apollo.ast/GQLTypeExtension { // com.apollographql.apollo.ast/GQLInterfaceTypeExtension|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String, kotlin.collections/List<kotlin/String>, kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective>, kotlin.collections/List<com.apollographql.apollo.ast/GQLFieldDefinition>) // com.apollographql.apollo.ast/GQLInterfaceTypeExtension.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.String;kotlin.collections.List<kotlin.String>;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>;kotlin.collections.List<com.apollographql.apollo.ast.GQLFieldDefinition>){}[0]
final val children // com.apollographql.apollo.ast/GQLInterfaceTypeExtension.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLFieldDefinition> // com.apollographql.apollo.ast/GQLInterfaceTypeExtension.children.<get-children>|<get-children>(){}[0]
final val directives // com.apollographql.apollo.ast/GQLInterfaceTypeExtension.directives|{}directives[0]
final fun <get-directives>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> // com.apollographql.apollo.ast/GQLInterfaceTypeExtension.directives.<get-directives>|<get-directives>(){}[0]
final val fields // com.apollographql.apollo.ast/GQLInterfaceTypeExtension.fields|{}fields[0]
final fun <get-fields>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLFieldDefinition> // com.apollographql.apollo.ast/GQLInterfaceTypeExtension.fields.<get-fields>|<get-fields>(){}[0]
final val implementsInterfaces // com.apollographql.apollo.ast/GQLInterfaceTypeExtension.implementsInterfaces|{}implementsInterfaces[0]
final fun <get-implementsInterfaces>(): kotlin.collections/List<kotlin/String> // com.apollographql.apollo.ast/GQLInterfaceTypeExtension.implementsInterfaces.<get-implementsInterfaces>|<get-implementsInterfaces>(){}[0]
final val name // com.apollographql.apollo.ast/GQLInterfaceTypeExtension.name|{}name[0]
final fun <get-name>(): kotlin/String // com.apollographql.apollo.ast/GQLInterfaceTypeExtension.name.<get-name>|<get-name>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLInterfaceTypeExtension.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLInterfaceTypeExtension.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String = ..., kotlin.collections/List<kotlin/String> = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLFieldDefinition> = ...): com.apollographql.apollo.ast/GQLInterfaceTypeExtension // com.apollographql.apollo.ast/GQLInterfaceTypeExtension.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.String;kotlin.collections.List<kotlin.String>;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>;kotlin.collections.List<com.apollographql.apollo.ast.GQLFieldDefinition>){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLInterfaceTypeExtension.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLInterfaceTypeExtension.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLListType : com.apollographql.apollo.ast/GQLType { // com.apollographql.apollo.ast/GQLListType|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., com.apollographql.apollo.ast/GQLType) // com.apollographql.apollo.ast/GQLListType.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;com.apollographql.apollo.ast.GQLType){}[0]
final val children // com.apollographql.apollo.ast/GQLListType.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLType> // com.apollographql.apollo.ast/GQLListType.children.<get-children>|<get-children>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLListType.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLListType.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final val type // com.apollographql.apollo.ast/GQLListType.type|{}type[0]
final fun <get-type>(): com.apollographql.apollo.ast/GQLType // com.apollographql.apollo.ast/GQLListType.type.<get-type>|<get-type>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., com.apollographql.apollo.ast/GQLType = ...): com.apollographql.apollo.ast/GQLListType // com.apollographql.apollo.ast/GQLListType.copy|copy(com.apollographql.apollo.ast.SourceLocation?;com.apollographql.apollo.ast.GQLType){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLListType.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLListType.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLListValue : com.apollographql.apollo.ast/GQLValue { // com.apollographql.apollo.ast/GQLListValue|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLValue>) // com.apollographql.apollo.ast/GQLListValue.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.collections.List<com.apollographql.apollo.ast.GQLValue>){}[0]
final val children // com.apollographql.apollo.ast/GQLListValue.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLValue> // com.apollographql.apollo.ast/GQLListValue.children.<get-children>|<get-children>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLListValue.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLListValue.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final val values // com.apollographql.apollo.ast/GQLListValue.values|{}values[0]
final fun <get-values>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLValue> // com.apollographql.apollo.ast/GQLListValue.values.<get-values>|<get-values>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLValue> = ...): com.apollographql.apollo.ast/GQLListValue // com.apollographql.apollo.ast/GQLListValue.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.collections.List<com.apollographql.apollo.ast.GQLValue>){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLListValue.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLListValue.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLMemberCoordinate : com.apollographql.apollo.ast/GQLNode, com.apollographql.apollo.ast/GQLSchemaCoordinate { // com.apollographql.apollo.ast/GQLMemberCoordinate|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation?, kotlin/String, kotlin/String) // com.apollographql.apollo.ast/GQLMemberCoordinate.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.String;kotlin.String){}[0]
final val children // com.apollographql.apollo.ast/GQLMemberCoordinate.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLNode> // com.apollographql.apollo.ast/GQLMemberCoordinate.children.<get-children>|<get-children>(){}[0]
final val member // com.apollographql.apollo.ast/GQLMemberCoordinate.member|{}member[0]
final fun <get-member>(): kotlin/String // com.apollographql.apollo.ast/GQLMemberCoordinate.member.<get-member>|<get-member>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLMemberCoordinate.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLMemberCoordinate.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final val type // com.apollographql.apollo.ast/GQLMemberCoordinate.type|{}type[0]
final fun <get-type>(): kotlin/String // com.apollographql.apollo.ast/GQLMemberCoordinate.type.<get-type>|<get-type>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String = ..., kotlin/String = ...): com.apollographql.apollo.ast/GQLMemberCoordinate // com.apollographql.apollo.ast/GQLMemberCoordinate.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.String;kotlin.String){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLMemberCoordinate.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLMemberCoordinate.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLNamedType : com.apollographql.apollo.ast/GQLNamed, com.apollographql.apollo.ast/GQLType { // com.apollographql.apollo.ast/GQLNamedType|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String) // com.apollographql.apollo.ast/GQLNamedType.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.String){}[0]
final val children // com.apollographql.apollo.ast/GQLNamedType.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLNode> // com.apollographql.apollo.ast/GQLNamedType.children.<get-children>|<get-children>(){}[0]
final val name // com.apollographql.apollo.ast/GQLNamedType.name|{}name[0]
final fun <get-name>(): kotlin/String // com.apollographql.apollo.ast/GQLNamedType.name.<get-name>|<get-name>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLNamedType.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLNamedType.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String = ...): com.apollographql.apollo.ast/GQLNamedType // com.apollographql.apollo.ast/GQLNamedType.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.String){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLNamedType.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLNamedType.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLNonNullType : com.apollographql.apollo.ast/GQLType { // com.apollographql.apollo.ast/GQLNonNullType|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., com.apollographql.apollo.ast/GQLType) // com.apollographql.apollo.ast/GQLNonNullType.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;com.apollographql.apollo.ast.GQLType){}[0]
final val children // com.apollographql.apollo.ast/GQLNonNullType.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLType> // com.apollographql.apollo.ast/GQLNonNullType.children.<get-children>|<get-children>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLNonNullType.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLNonNullType.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final val type // com.apollographql.apollo.ast/GQLNonNullType.type|{}type[0]
final fun <get-type>(): com.apollographql.apollo.ast/GQLType // com.apollographql.apollo.ast/GQLNonNullType.type.<get-type>|<get-type>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., com.apollographql.apollo.ast/GQLType = ...): com.apollographql.apollo.ast/GQLNonNullType // com.apollographql.apollo.ast/GQLNonNullType.copy|copy(com.apollographql.apollo.ast.SourceLocation?;com.apollographql.apollo.ast.GQLType){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLNonNullType.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLNonNullType.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLNullValue : com.apollographql.apollo.ast/GQLValue { // com.apollographql.apollo.ast/GQLNullValue|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ...) // com.apollographql.apollo.ast/GQLNullValue.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?){}[0]
final val children // com.apollographql.apollo.ast/GQLNullValue.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLNode> // com.apollographql.apollo.ast/GQLNullValue.children.<get-children>|<get-children>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLNullValue.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLNullValue.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ...): com.apollographql.apollo.ast/GQLNullValue // com.apollographql.apollo.ast/GQLNullValue.copy|copy(com.apollographql.apollo.ast.SourceLocation?){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLNullValue.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLNullValue.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLObjectField : com.apollographql.apollo.ast/GQLNamed, com.apollographql.apollo.ast/GQLNode { // com.apollographql.apollo.ast/GQLObjectField|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String, com.apollographql.apollo.ast/GQLValue) // com.apollographql.apollo.ast/GQLObjectField.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.String;com.apollographql.apollo.ast.GQLValue){}[0]
final val children // com.apollographql.apollo.ast/GQLObjectField.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLValue> // com.apollographql.apollo.ast/GQLObjectField.children.<get-children>|<get-children>(){}[0]
final val name // com.apollographql.apollo.ast/GQLObjectField.name|{}name[0]
final fun <get-name>(): kotlin/String // com.apollographql.apollo.ast/GQLObjectField.name.<get-name>|<get-name>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLObjectField.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLObjectField.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final val value // com.apollographql.apollo.ast/GQLObjectField.value|{}value[0]
final fun <get-value>(): com.apollographql.apollo.ast/GQLValue // com.apollographql.apollo.ast/GQLObjectField.value.<get-value>|<get-value>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String = ..., com.apollographql.apollo.ast/GQLValue = ...): com.apollographql.apollo.ast/GQLObjectField // com.apollographql.apollo.ast/GQLObjectField.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.String;com.apollographql.apollo.ast.GQLValue){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLObjectField.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLObjectField.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLObjectTypeDefinition : com.apollographql.apollo.ast/GQLTypeDefinition { // com.apollographql.apollo.ast/GQLObjectTypeDefinition|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String?, kotlin/String, kotlin.collections/List<kotlin/String>, kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective>, kotlin.collections/List<com.apollographql.apollo.ast/GQLFieldDefinition>) // com.apollographql.apollo.ast/GQLObjectTypeDefinition.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.String?;kotlin.String;kotlin.collections.List<kotlin.String>;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>;kotlin.collections.List<com.apollographql.apollo.ast.GQLFieldDefinition>){}[0]
final val children // com.apollographql.apollo.ast/GQLObjectTypeDefinition.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLNode> // com.apollographql.apollo.ast/GQLObjectTypeDefinition.children.<get-children>|<get-children>(){}[0]
final val description // com.apollographql.apollo.ast/GQLObjectTypeDefinition.description|{}description[0]
final fun <get-description>(): kotlin/String? // com.apollographql.apollo.ast/GQLObjectTypeDefinition.description.<get-description>|<get-description>(){}[0]
final val directives // com.apollographql.apollo.ast/GQLObjectTypeDefinition.directives|{}directives[0]
final fun <get-directives>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> // com.apollographql.apollo.ast/GQLObjectTypeDefinition.directives.<get-directives>|<get-directives>(){}[0]
final val fields // com.apollographql.apollo.ast/GQLObjectTypeDefinition.fields|{}fields[0]
final fun <get-fields>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLFieldDefinition> // com.apollographql.apollo.ast/GQLObjectTypeDefinition.fields.<get-fields>|<get-fields>(){}[0]
final val implementsInterfaces // com.apollographql.apollo.ast/GQLObjectTypeDefinition.implementsInterfaces|{}implementsInterfaces[0]
final fun <get-implementsInterfaces>(): kotlin.collections/List<kotlin/String> // com.apollographql.apollo.ast/GQLObjectTypeDefinition.implementsInterfaces.<get-implementsInterfaces>|<get-implementsInterfaces>(){}[0]
final val name // com.apollographql.apollo.ast/GQLObjectTypeDefinition.name|{}name[0]
final fun <get-name>(): kotlin/String // com.apollographql.apollo.ast/GQLObjectTypeDefinition.name.<get-name>|<get-name>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLObjectTypeDefinition.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLObjectTypeDefinition.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String? = ..., kotlin/String = ..., kotlin.collections/List<kotlin/String> = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLFieldDefinition> = ...): com.apollographql.apollo.ast/GQLObjectTypeDefinition // com.apollographql.apollo.ast/GQLObjectTypeDefinition.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.String?;kotlin.String;kotlin.collections.List<kotlin.String>;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>;kotlin.collections.List<com.apollographql.apollo.ast.GQLFieldDefinition>){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLObjectTypeDefinition.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLObjectTypeDefinition.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLObjectTypeExtension : com.apollographql.apollo.ast/GQLDefinition, com.apollographql.apollo.ast/GQLHasDirectives, com.apollographql.apollo.ast/GQLTypeExtension { // com.apollographql.apollo.ast/GQLObjectTypeExtension|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String, kotlin.collections/List<kotlin/String>, kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective>, kotlin.collections/List<com.apollographql.apollo.ast/GQLFieldDefinition>) // com.apollographql.apollo.ast/GQLObjectTypeExtension.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.String;kotlin.collections.List<kotlin.String>;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>;kotlin.collections.List<com.apollographql.apollo.ast.GQLFieldDefinition>){}[0]
final val children // com.apollographql.apollo.ast/GQLObjectTypeExtension.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLNode> // com.apollographql.apollo.ast/GQLObjectTypeExtension.children.<get-children>|<get-children>(){}[0]
final val directives // com.apollographql.apollo.ast/GQLObjectTypeExtension.directives|{}directives[0]
final fun <get-directives>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> // com.apollographql.apollo.ast/GQLObjectTypeExtension.directives.<get-directives>|<get-directives>(){}[0]
final val fields // com.apollographql.apollo.ast/GQLObjectTypeExtension.fields|{}fields[0]
final fun <get-fields>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLFieldDefinition> // com.apollographql.apollo.ast/GQLObjectTypeExtension.fields.<get-fields>|<get-fields>(){}[0]
final val implementsInterfaces // com.apollographql.apollo.ast/GQLObjectTypeExtension.implementsInterfaces|{}implementsInterfaces[0]
final fun <get-implementsInterfaces>(): kotlin.collections/List<kotlin/String> // com.apollographql.apollo.ast/GQLObjectTypeExtension.implementsInterfaces.<get-implementsInterfaces>|<get-implementsInterfaces>(){}[0]
final val name // com.apollographql.apollo.ast/GQLObjectTypeExtension.name|{}name[0]
final fun <get-name>(): kotlin/String // com.apollographql.apollo.ast/GQLObjectTypeExtension.name.<get-name>|<get-name>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLObjectTypeExtension.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLObjectTypeExtension.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String = ..., kotlin.collections/List<kotlin/String> = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLFieldDefinition> = ...): com.apollographql.apollo.ast/GQLObjectTypeExtension // com.apollographql.apollo.ast/GQLObjectTypeExtension.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.String;kotlin.collections.List<kotlin.String>;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>;kotlin.collections.List<com.apollographql.apollo.ast.GQLFieldDefinition>){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLObjectTypeExtension.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLObjectTypeExtension.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLObjectValue : com.apollographql.apollo.ast/GQLValue { // com.apollographql.apollo.ast/GQLObjectValue|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLObjectField>) // com.apollographql.apollo.ast/GQLObjectValue.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.collections.List<com.apollographql.apollo.ast.GQLObjectField>){}[0]
final val children // com.apollographql.apollo.ast/GQLObjectValue.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLObjectField> // com.apollographql.apollo.ast/GQLObjectValue.children.<get-children>|<get-children>(){}[0]
final val fields // com.apollographql.apollo.ast/GQLObjectValue.fields|{}fields[0]
final fun <get-fields>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLObjectField> // com.apollographql.apollo.ast/GQLObjectValue.fields.<get-fields>|<get-fields>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLObjectValue.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLObjectValue.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLObjectField> = ...): com.apollographql.apollo.ast/GQLObjectValue // com.apollographql.apollo.ast/GQLObjectValue.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.collections.List<com.apollographql.apollo.ast.GQLObjectField>){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLObjectValue.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLObjectValue.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLOperationDefinition : com.apollographql.apollo.ast/GQLDescribed, com.apollographql.apollo.ast/GQLExecutableDefinition, com.apollographql.apollo.ast/GQLHasDirectives { // com.apollographql.apollo.ast/GQLOperationDefinition|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String, kotlin/String?, kotlin.collections/List<com.apollographql.apollo.ast/GQLVariableDefinition>, kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective>, kotlin.collections/List<com.apollographql.apollo.ast/GQLSelection>, kotlin/String?) // com.apollographql.apollo.ast/GQLOperationDefinition.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.String;kotlin.String?;kotlin.collections.List<com.apollographql.apollo.ast.GQLVariableDefinition>;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>;kotlin.collections.List<com.apollographql.apollo.ast.GQLSelection>;kotlin.String?){}[0]
final val children // com.apollographql.apollo.ast/GQLOperationDefinition.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLNode> // com.apollographql.apollo.ast/GQLOperationDefinition.children.<get-children>|<get-children>(){}[0]
final val description // com.apollographql.apollo.ast/GQLOperationDefinition.description|{}description[0]
final fun <get-description>(): kotlin/String? // com.apollographql.apollo.ast/GQLOperationDefinition.description.<get-description>|<get-description>(){}[0]
final val directives // com.apollographql.apollo.ast/GQLOperationDefinition.directives|{}directives[0]
final fun <get-directives>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> // com.apollographql.apollo.ast/GQLOperationDefinition.directives.<get-directives>|<get-directives>(){}[0]
final val name // com.apollographql.apollo.ast/GQLOperationDefinition.name|{}name[0]
final fun <get-name>(): kotlin/String? // com.apollographql.apollo.ast/GQLOperationDefinition.name.<get-name>|<get-name>(){}[0]
final val operationType // com.apollographql.apollo.ast/GQLOperationDefinition.operationType|{}operationType[0]
final fun <get-operationType>(): kotlin/String // com.apollographql.apollo.ast/GQLOperationDefinition.operationType.<get-operationType>|<get-operationType>(){}[0]
final val selectionSet // com.apollographql.apollo.ast/GQLOperationDefinition.selectionSet|{}selectionSet[0]
final fun <get-selectionSet>(): com.apollographql.apollo.ast/GQLSelectionSet // com.apollographql.apollo.ast/GQLOperationDefinition.selectionSet.<get-selectionSet>|<get-selectionSet>(){}[0]
final val selections // com.apollographql.apollo.ast/GQLOperationDefinition.selections|{}selections[0]
final fun <get-selections>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLSelection> // com.apollographql.apollo.ast/GQLOperationDefinition.selections.<get-selections>|<get-selections>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLOperationDefinition.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLOperationDefinition.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final val variableDefinitions // com.apollographql.apollo.ast/GQLOperationDefinition.variableDefinitions|{}variableDefinitions[0]
final fun <get-variableDefinitions>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLVariableDefinition> // com.apollographql.apollo.ast/GQLOperationDefinition.variableDefinitions.<get-variableDefinitions>|<get-variableDefinitions>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String = ..., kotlin/String? = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLVariableDefinition> = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLSelection> = ..., kotlin/String? = ...): com.apollographql.apollo.ast/GQLOperationDefinition // com.apollographql.apollo.ast/GQLOperationDefinition.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.String;kotlin.String?;kotlin.collections.List<com.apollographql.apollo.ast.GQLVariableDefinition>;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>;kotlin.collections.List<com.apollographql.apollo.ast.GQLSelection>;kotlin.String?){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLOperationDefinition.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLOperationDefinition.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLOperationTypeDefinition : com.apollographql.apollo.ast/GQLNode { // com.apollographql.apollo.ast/GQLOperationTypeDefinition|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String, kotlin/String) // com.apollographql.apollo.ast/GQLOperationTypeDefinition.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.String;kotlin.String){}[0]
final val children // com.apollographql.apollo.ast/GQLOperationTypeDefinition.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLNode> // com.apollographql.apollo.ast/GQLOperationTypeDefinition.children.<get-children>|<get-children>(){}[0]
final val namedType // com.apollographql.apollo.ast/GQLOperationTypeDefinition.namedType|{}namedType[0]
final fun <get-namedType>(): kotlin/String // com.apollographql.apollo.ast/GQLOperationTypeDefinition.namedType.<get-namedType>|<get-namedType>(){}[0]
final val operationType // com.apollographql.apollo.ast/GQLOperationTypeDefinition.operationType|{}operationType[0]
final fun <get-operationType>(): kotlin/String // com.apollographql.apollo.ast/GQLOperationTypeDefinition.operationType.<get-operationType>|<get-operationType>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLOperationTypeDefinition.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLOperationTypeDefinition.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String = ..., kotlin/String = ...): com.apollographql.apollo.ast/GQLOperationTypeDefinition // com.apollographql.apollo.ast/GQLOperationTypeDefinition.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.String;kotlin.String){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLOperationTypeDefinition.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]
final fun writeInternal(com.apollographql.apollo.ast/SDLWriter) // com.apollographql.apollo.ast/GQLOperationTypeDefinition.writeInternal|writeInternal(com.apollographql.apollo.ast.SDLWriter){}[0]
}
final class com.apollographql.apollo.ast/GQLScalarTypeDefinition : com.apollographql.apollo.ast/GQLTypeDefinition { // com.apollographql.apollo.ast/GQLScalarTypeDefinition|null[0]
constructor <init>(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String?, kotlin/String, kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective>) // com.apollographql.apollo.ast/GQLScalarTypeDefinition.<init>|<init>(com.apollographql.apollo.ast.SourceLocation?;kotlin.String?;kotlin.String;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>){}[0]
final val children // com.apollographql.apollo.ast/GQLScalarTypeDefinition.children|{}children[0]
final fun <get-children>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> // com.apollographql.apollo.ast/GQLScalarTypeDefinition.children.<get-children>|<get-children>(){}[0]
final val description // com.apollographql.apollo.ast/GQLScalarTypeDefinition.description|{}description[0]
final fun <get-description>(): kotlin/String? // com.apollographql.apollo.ast/GQLScalarTypeDefinition.description.<get-description>|<get-description>(){}[0]
final val directives // com.apollographql.apollo.ast/GQLScalarTypeDefinition.directives|{}directives[0]
final fun <get-directives>(): kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> // com.apollographql.apollo.ast/GQLScalarTypeDefinition.directives.<get-directives>|<get-directives>(){}[0]
final val name // com.apollographql.apollo.ast/GQLScalarTypeDefinition.name|{}name[0]
final fun <get-name>(): kotlin/String // com.apollographql.apollo.ast/GQLScalarTypeDefinition.name.<get-name>|<get-name>(){}[0]
final val sourceLocation // com.apollographql.apollo.ast/GQLScalarTypeDefinition.sourceLocation|{}sourceLocation[0]
final fun <get-sourceLocation>(): com.apollographql.apollo.ast/SourceLocation? // com.apollographql.apollo.ast/GQLScalarTypeDefinition.sourceLocation.<get-sourceLocation>|<get-sourceLocation>(){}[0]
final fun copy(com.apollographql.apollo.ast/SourceLocation? = ..., kotlin/String? = ..., kotlin/String = ..., kotlin.collections/List<com.apollographql.apollo.ast/GQLDirective> = ...): com.apollographql.apollo.ast/GQLScalarTypeDefinition // com.apollographql.apollo.ast/GQLScalarTypeDefinition.copy|copy(com.apollographql.apollo.ast.SourceLocation?;kotlin.String?;kotlin.String;kotlin.collections.List<com.apollographql.apollo.ast.GQLDirective>){}[0]
final fun copyWithNewChildrenInternal(com.apollographql.apollo.ast/NodeContainer): com.apollographql.apollo.ast/GQLNode // com.apollographql.apollo.ast/GQLScalarTypeDefinition.copyWithNewChildrenInternal|copyWithNewChildrenInternal(com.apollographql.apollo.ast.NodeContainer){}[0]