This repository was archived by the owner on Oct 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAST.purs
More file actions
2607 lines (2135 loc) · 63.5 KB
/
AST.purs
File metadata and controls
2607 lines (2135 loc) · 63.5 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
module Data.GraphQL.AST where
import Prim hiding (Type)
import Prelude
import Data.Generic.Rep (class Generic)
import Data.Show.Generic (genericShow)
import Data.List (List)
import Data.Maybe (Maybe(..))
import Data.Newtype (class Newtype)
import Data.Tuple (Tuple(..))
derive instance documentGeneric ∷ Generic Document _
instance documentShow ∷ Show Document where
show v = genericShow v
derive instance documentEq ∷ Eq Document
_Document ∷
Tuple
( (List Definition) → Document
)
( Document →
Maybe (List Definition)
)
_Document =
Tuple Document
( case _ of
Document a → Just a
)
derive instance documentNewtype ∷ Newtype Document _
newtype Document
= Document (List Definition)
derive instance definitionGeneric ∷ Generic Definition _
instance definitionShow ∷ Show Definition where
show v = genericShow v
derive instance definitionEq ∷ Eq Definition
_Definition_ExecutableDefinition ∷
Tuple
( ExecutableDefinition → Definition
)
( Definition →
Maybe ExecutableDefinition
)
_Definition_ExecutableDefinition =
Tuple Definition_ExecutableDefinition
( case _ of
Definition_ExecutableDefinition a → Just a
_ → Nothing
)
_Definition_TypeSystemDefinition ∷
Tuple
( TypeSystemDefinition → Definition
)
( Definition →
Maybe TypeSystemDefinition
)
_Definition_TypeSystemDefinition =
Tuple Definition_TypeSystemDefinition
( case _ of
Definition_TypeSystemDefinition a → Just a
_ → Nothing
)
_Definition_TypeSystemExtension ∷
Tuple
( TypeSystemExtension → Definition
)
( Definition →
Maybe TypeSystemExtension
)
_Definition_TypeSystemExtension =
Tuple Definition_TypeSystemExtension
( case _ of
Definition_TypeSystemExtension a → Just a
_ → Nothing
)
data Definition
= Definition_ExecutableDefinition ExecutableDefinition
| Definition_TypeSystemDefinition TypeSystemDefinition
| Definition_TypeSystemExtension TypeSystemExtension
derive instance executableDefinitionGeneric ∷ Generic ExecutableDefinition _
instance executableDefinitionShow ∷ Show ExecutableDefinition where
show v = genericShow v
derive instance executableDefinitionEq ∷ Eq ExecutableDefinition
_ExecutableDefinition_OperationDefinition ∷
Tuple
( OperationDefinition → ExecutableDefinition
)
( ExecutableDefinition →
Maybe OperationDefinition
)
_ExecutableDefinition_OperationDefinition =
Tuple ExecutableDefinition_OperationDefinition
( case _ of
ExecutableDefinition_OperationDefinition a → Just a
_ → Nothing
)
_ExecutableDefinition_FragmentDefinition ∷
Tuple
( FragmentDefinition → ExecutableDefinition
)
( ExecutableDefinition →
Maybe FragmentDefinition
)
_ExecutableDefinition_FragmentDefinition =
Tuple ExecutableDefinition_FragmentDefinition
( case _ of
ExecutableDefinition_FragmentDefinition a → Just a
_ → Nothing
)
data ExecutableDefinition
= ExecutableDefinition_OperationDefinition OperationDefinition
| ExecutableDefinition_FragmentDefinition FragmentDefinition
derive instance operationDefinitionGeneric ∷ Generic OperationDefinition _
instance operationDefinitionShow ∷ Show OperationDefinition where
show v = genericShow v
derive instance operationDefinitionEq ∷ Eq OperationDefinition
_OperationDefinition_SelectionSet ∷
Tuple
( SelectionSet → OperationDefinition
)
( OperationDefinition →
Maybe SelectionSet
)
_OperationDefinition_SelectionSet =
Tuple OperationDefinition_SelectionSet
( case _ of
OperationDefinition_SelectionSet a → Just a
_ → Nothing
)
type T_OperationDefinition_OperationType
= { operationType ∷ OperationType, name ∷ (Maybe String), variableDefinitions ∷ (Maybe VariableDefinitions), directives ∷ (Maybe Directives), selectionSet ∷ SelectionSet }
_OperationDefinition_OperationType ∷
Tuple
( T_OperationDefinition_OperationType → OperationDefinition
)
( OperationDefinition →
Maybe T_OperationDefinition_OperationType
)
_OperationDefinition_OperationType =
Tuple OperationDefinition_OperationType
( case _ of
OperationDefinition_OperationType a → Just a
_ → Nothing
)
data OperationDefinition
= OperationDefinition_SelectionSet SelectionSet
| OperationDefinition_OperationType T_OperationDefinition_OperationType
derive instance operationTypeGeneric ∷ Generic OperationType _
instance operationTypeShow ∷ Show OperationType where
show v = genericShow v
derive instance operationTypeEq ∷ Eq OperationType
_Query ∷
Tuple
( Unit → OperationType
)
( OperationType →
Maybe Unit
)
_Query =
Tuple (\_ → Query)
( case _ of
Query → Just unit
_ → Nothing
)
_Mutation ∷
Tuple
( Unit → OperationType
)
( OperationType →
Maybe Unit
)
_Mutation =
Tuple (\_ → Mutation)
( case _ of
Mutation → Just unit
_ → Nothing
)
_Subscription ∷
Tuple
( Unit → OperationType
)
( OperationType →
Maybe Unit
)
_Subscription =
Tuple (\_ → Subscription)
( case _ of
Subscription → Just unit
_ → Nothing
)
data OperationType
= Query
| Mutation
| Subscription
derive instance selectionSetGeneric ∷ Generic SelectionSet _
instance selectionSetShow ∷ Show SelectionSet where
show v = genericShow v
derive instance selectionSetEq ∷ Eq SelectionSet
_SelectionSet ∷
Tuple
( (List Selection) → SelectionSet
)
( SelectionSet →
Maybe (List Selection)
)
_SelectionSet =
Tuple SelectionSet
( case _ of
SelectionSet a → Just a
)
derive instance selectionSetNewtype ∷ Newtype SelectionSet _
newtype SelectionSet
= SelectionSet (List Selection)
derive instance selectionGeneric ∷ Generic Selection _
instance selectionShow ∷ Show Selection where
show v = genericShow v
derive instance selectionEq ∷ Eq Selection
_Selection_Field ∷
Tuple
( Field → Selection
)
( Selection →
Maybe Field
)
_Selection_Field =
Tuple Selection_Field
( case _ of
Selection_Field a → Just a
_ → Nothing
)
_Selection_FragmentSpread ∷
Tuple
( FragmentSpread → Selection
)
( Selection →
Maybe FragmentSpread
)
_Selection_FragmentSpread =
Tuple Selection_FragmentSpread
( case _ of
Selection_FragmentSpread a → Just a
_ → Nothing
)
_Selection_InlineFragment ∷
Tuple
( InlineFragment → Selection
)
( Selection →
Maybe InlineFragment
)
_Selection_InlineFragment =
Tuple Selection_InlineFragment
( case _ of
Selection_InlineFragment a → Just a
_ → Nothing
)
data Selection
= Selection_Field Field
| Selection_FragmentSpread FragmentSpread
| Selection_InlineFragment InlineFragment
derive instance fieldGeneric ∷ Generic Field _
instance fieldShow ∷ Show Field where
show v = genericShow v
derive instance fieldEq ∷ Eq Field
type T_Field
= { alias ∷ (Maybe String), name ∷ String, arguments ∷ (Maybe Arguments), directives ∷ (Maybe Directives), selectionSet ∷ (Maybe SelectionSet) }
_Field ∷
Tuple
( T_Field → Field
)
( Field →
Maybe T_Field
)
_Field =
Tuple Field
( case _ of
Field a → Just a
)
derive instance fieldNewtype ∷ Newtype Field _
newtype Field
= Field T_Field
derive instance argumentsGeneric ∷ Generic Arguments _
instance argumentsShow ∷ Show Arguments where
show v = genericShow v
derive instance argumentsEq ∷ Eq Arguments
_Arguments ∷
Tuple
( (List Argument) → Arguments
)
( Arguments →
Maybe (List Argument)
)
_Arguments =
Tuple Arguments
( case _ of
Arguments a → Just a
)
derive instance argumentsNewtype ∷ Newtype Arguments _
newtype Arguments
= Arguments (List Argument)
derive instance argumentGeneric ∷ Generic Argument _
instance argumentShow ∷ Show Argument where
show v = genericShow v
derive instance argumentEq ∷ Eq Argument
type T_Argument
= { name :: String, value :: Value }
_Argument ∷
Tuple
( T_Argument → Argument
)
( Argument →
Maybe T_Argument
)
_Argument =
Tuple Argument
( case _ of
Argument a → Just a
)
derive instance argumentNewtype ∷ Newtype Argument _
newtype Argument
= Argument T_Argument
derive instance fragmentSpreadGeneric ∷ Generic FragmentSpread _
instance fragmentSpreadShow ∷ Show FragmentSpread where
show v = genericShow v
derive instance fragmentSpreadEq ∷ Eq FragmentSpread
type T_FragmentSpread
= { fragmentName ∷ String, directives ∷ Maybe Directives }
_FragmentSpread ∷
Tuple
( T_FragmentSpread → FragmentSpread
)
( FragmentSpread →
Maybe T_FragmentSpread
)
_FragmentSpread =
Tuple FragmentSpread
( case _ of
FragmentSpread a → Just a
)
derive instance fragmentSpreadNewtype ∷ Newtype FragmentSpread _
newtype FragmentSpread
= FragmentSpread T_FragmentSpread
derive instance inlineFragmentGeneric ∷ Generic InlineFragment _
instance inlineFragmentShow ∷ Show InlineFragment where
show v = genericShow v
derive instance inlineFragmentEq ∷ Eq InlineFragment
type T_InlineFragment
= { typeCondition ∷ (Maybe TypeCondition), directives ∷ (Maybe Directives), selectionSet ∷ SelectionSet }
_InlineFragment ∷
Tuple
( T_InlineFragment → InlineFragment
)
( InlineFragment →
Maybe T_InlineFragment
)
_InlineFragment =
Tuple InlineFragment
( case _ of
InlineFragment a → Just a
)
derive instance inlineFragmentNewtype ∷ Newtype InlineFragment _
newtype InlineFragment
= InlineFragment T_InlineFragment
derive instance fragmentDefinitionGeneric ∷ Generic FragmentDefinition _
instance fragmentDefinitionShow ∷ Show FragmentDefinition where
show v = genericShow v
derive instance fragmentDefinitionEq ∷ Eq FragmentDefinition
type T_FragmentDefinition
= { fragmentName ∷ String, typeCondition ∷ TypeCondition, directives ∷ (Maybe Directives), selectionSet ∷ SelectionSet }
_FragmentDefinition ∷
Tuple
( T_FragmentDefinition → FragmentDefinition
)
( FragmentDefinition →
Maybe T_FragmentDefinition
)
_FragmentDefinition =
Tuple FragmentDefinition
( case _ of
FragmentDefinition a → Just a
)
derive instance fragmentDefinitionNewtype ∷ Newtype FragmentDefinition _
newtype FragmentDefinition
= FragmentDefinition T_FragmentDefinition
derive instance typeConditionGeneric ∷ Generic TypeCondition _
instance typeConditionShow ∷ Show TypeCondition where
show v = genericShow v
derive instance typeConditionEq ∷ Eq TypeCondition
_TypeCondition ∷
Tuple
( NamedType → TypeCondition
)
( TypeCondition →
Maybe NamedType
)
_TypeCondition =
Tuple TypeCondition
( case _ of
TypeCondition a → Just a
)
derive instance typeConditionNewtype ∷ Newtype TypeCondition _
newtype TypeCondition
= TypeCondition NamedType
derive instance valueGeneric ∷ Generic Value _
instance valueShow ∷ Show Value where
show v = genericShow v
derive instance valueEq ∷ Eq Value
_Value_Variable ∷
Tuple
( Variable → Value
)
( Value →
Maybe Variable
)
_Value_Variable =
Tuple Value_Variable
( case _ of
Value_Variable a → Just a
_ → Nothing
)
_Value_IntValue ∷
Tuple
( IntValue → Value
)
( Value →
Maybe IntValue
)
_Value_IntValue =
Tuple Value_IntValue
( case _ of
Value_IntValue a → Just a
_ → Nothing
)
_Value_FloatValue ∷
Tuple
( FloatValue → Value
)
( Value →
Maybe FloatValue
)
_Value_FloatValue =
Tuple Value_FloatValue
( case _ of
Value_FloatValue a → Just a
_ → Nothing
)
_Value_StringValue ∷
Tuple
( StringValue → Value
)
( Value →
Maybe StringValue
)
_Value_StringValue =
Tuple Value_StringValue
( case _ of
Value_StringValue a → Just a
_ → Nothing
)
_Value_BooleanValue ∷
Tuple
( BooleanValue → Value
)
( Value →
Maybe BooleanValue
)
_Value_BooleanValue =
Tuple Value_BooleanValue
( case _ of
Value_BooleanValue a → Just a
_ → Nothing
)
_Value_NullValue ∷
Tuple
( NullValue → Value
)
( Value →
Maybe NullValue
)
_Value_NullValue =
Tuple Value_NullValue
( case _ of
Value_NullValue a → Just a
_ → Nothing
)
_Value_EnumValue ∷
Tuple
( EnumValue → Value
)
( Value →
Maybe EnumValue
)
_Value_EnumValue =
Tuple Value_EnumValue
( case _ of
Value_EnumValue a → Just a
_ → Nothing
)
_Value_ListValue ∷
Tuple
( ListValue → Value
)
( Value →
Maybe ListValue
)
_Value_ListValue =
Tuple Value_ListValue
( case _ of
Value_ListValue a → Just a
_ → Nothing
)
_Value_ObjectValue ∷
Tuple
( ObjectValue → Value
)
( Value →
Maybe ObjectValue
)
_Value_ObjectValue =
Tuple Value_ObjectValue
( case _ of
Value_ObjectValue a → Just a
_ → Nothing
)
data Value
= Value_Variable Variable
| Value_IntValue IntValue
| Value_FloatValue FloatValue
| Value_StringValue StringValue
| Value_BooleanValue BooleanValue
| Value_NullValue NullValue
| Value_EnumValue EnumValue
| Value_ListValue ListValue
| Value_ObjectValue ObjectValue
derive instance intValueGeneric ∷ Generic IntValue _
instance intValueShow ∷ Show IntValue where
show v = genericShow v
derive instance intValueEq ∷ Eq IntValue
_IntValue ∷
Tuple
( Int → IntValue
)
( IntValue →
Maybe Int
)
_IntValue =
Tuple IntValue
( case _ of
IntValue a → Just a
)
derive instance intValueNewtype ∷ Newtype IntValue _
newtype IntValue
= IntValue Int
derive instance floatValueGeneric ∷ Generic FloatValue _
instance floatValueShow ∷ Show FloatValue where
show v = genericShow v
derive instance floatValueEq ∷ Eq FloatValue
_FloatValue ∷
Tuple
( Number → FloatValue
)
( FloatValue →
Maybe Number
)
_FloatValue =
Tuple FloatValue
( case _ of
FloatValue a → Just a
)
derive instance floatValueNewtype ∷ Newtype FloatValue _
newtype FloatValue
= FloatValue Number
derive instance booleanValueGeneric ∷ Generic BooleanValue _
instance booleanValueShow ∷ Show BooleanValue where
show v = genericShow v
derive instance booleanValueEq ∷ Eq BooleanValue
_BooleanValue ∷
Tuple
( Boolean → BooleanValue
)
( BooleanValue →
Maybe Boolean
)
_BooleanValue =
Tuple BooleanValue
( case _ of
BooleanValue a → Just a
)
derive instance booleanValueNewtype ∷ Newtype BooleanValue _
newtype BooleanValue
= BooleanValue Boolean
derive instance stringValueGeneric ∷ Generic StringValue _
instance stringValueShow ∷ Show StringValue where
show v = genericShow v
derive instance stringValueEq ∷ Eq StringValue
_StringValue ∷
Tuple
( String → StringValue
)
( StringValue →
Maybe String
)
_StringValue =
Tuple StringValue
( case _ of
StringValue a → Just a
)
derive instance stringValueNewtype ∷ Newtype StringValue _
newtype StringValue
= StringValue String
derive instance nullValueGeneric ∷ Generic NullValue _
instance nullValueShow ∷ Show NullValue where
show v = genericShow v
derive instance nullValueEq ∷ Eq NullValue
_NullValue ∷
Tuple
( Unit → NullValue
)
( NullValue →
Maybe Unit
)
_NullValue =
Tuple (\_ → NullValue)
( case _ of
NullValue → Just unit
)
data NullValue
= NullValue
derive instance enumValueGeneric ∷ Generic EnumValue _
instance enumValueShow ∷ Show EnumValue where
show v = genericShow v
derive instance enumValueEq ∷ Eq EnumValue
_EnumValue ∷
Tuple
( String → EnumValue
)
( EnumValue →
Maybe String
)
_EnumValue =
Tuple EnumValue
( case _ of
EnumValue a → Just a
)
derive instance enumValueNewtype ∷ Newtype EnumValue _
newtype EnumValue
= EnumValue String
derive instance listValueGeneric ∷ Generic ListValue _
instance listValueShow ∷ Show ListValue where
show v = genericShow v
derive instance listValueEq ∷ Eq ListValue
_ListValue ∷
Tuple
( (List Value) → ListValue
)
( ListValue →
Maybe (List Value)
)
_ListValue =
Tuple ListValue
( case _ of
ListValue a → Just a
)
derive instance listValueNewtype ∷ Newtype ListValue _
newtype ListValue
= ListValue (List Value)
derive instance objectValueGeneric ∷ Generic ObjectValue _
instance objectValueShow ∷ Show ObjectValue where
show v = genericShow v
derive instance objectValueEq ∷ Eq ObjectValue
_ObjectValue ∷
Tuple
( (List Argument) → ObjectValue
)
( ObjectValue →
Maybe (List Argument)
)
_ObjectValue =
Tuple ObjectValue
( case _ of
ObjectValue a → Just a
)
derive instance objectValueNewtype ∷ Newtype ObjectValue _
newtype ObjectValue
= ObjectValue (List Argument)
derive instance variableDefinitionsGeneric ∷ Generic VariableDefinitions _
instance variableDefinitionsShow ∷ Show VariableDefinitions where
show v = genericShow v
derive instance variableDefinitionsEq ∷ Eq VariableDefinitions
_VariableDefinitions ∷
Tuple
( (List VariableDefinition) → VariableDefinitions
)
( VariableDefinitions →
Maybe (List VariableDefinition)
)
_VariableDefinitions =
Tuple VariableDefinitions
( case _ of
VariableDefinitions a → Just a
)
derive instance variableDefinitionsNewtype ∷ Newtype VariableDefinitions _
newtype VariableDefinitions
= VariableDefinitions (List VariableDefinition)
derive instance variableDefinitionGeneric ∷ Generic VariableDefinition _
instance variableDefinitionShow ∷ Show VariableDefinition where
show v = genericShow v
derive instance variableDefinitionEq ∷ Eq VariableDefinition
type T_VariableDefinition
= { variable ∷ Variable, type ∷ Type, defaultValue ∷ (Maybe DefaultValue) }
_VariableDefinition ∷
Tuple
( T_VariableDefinition → VariableDefinition
)
( VariableDefinition →
Maybe T_VariableDefinition
)
_VariableDefinition =
Tuple VariableDefinition
( case _ of
VariableDefinition a → Just a
)
derive instance variableDefinitionNewtype ∷ Newtype VariableDefinition _
newtype VariableDefinition
= VariableDefinition T_VariableDefinition
derive instance variableGeneric ∷ Generic Variable _
instance variableShow ∷ Show Variable where
show v = genericShow v
derive instance variableEq ∷ Eq Variable
_Variable ∷
Tuple
( String → Variable
)
( Variable →
Maybe String
)
_Variable =
Tuple Variable
( case _ of
Variable a → Just a
)
derive instance variableNewtype ∷ Newtype Variable _
newtype Variable
= Variable String
derive instance defaultValueGeneric ∷ Generic DefaultValue _
instance defaultValueShow ∷ Show DefaultValue where
show v = genericShow v
derive instance defaultValueEq ∷ Eq DefaultValue
_DefaultValue ∷
Tuple
( Value → DefaultValue
)
( DefaultValue →
Maybe Value
)
_DefaultValue =
Tuple DefaultValue
( case _ of
DefaultValue a → Just a
)
derive instance defaultValueNewtype ∷ Newtype DefaultValue _
newtype DefaultValue
= DefaultValue Value
derive instance typeGeneric ∷ Generic Type _
instance typeShow ∷ Show Type where
show v = genericShow v
derive instance typeEq ∷ Eq Type
_Type_NamedType ∷
Tuple
( NamedType → Type
)
( Type →
Maybe NamedType
)
_Type_NamedType =
Tuple Type_NamedType
( case _ of
Type_NamedType a → Just a
_ → Nothing
)
_Type_ListType ∷
Tuple
( ListType → Type
)
( Type →
Maybe ListType
)
_Type_ListType =
Tuple Type_ListType
( case _ of
Type_ListType a → Just a
_ → Nothing
)
_Type_NonNullType ∷
Tuple
( NonNullType → Type
)
( Type →
Maybe NonNullType
)
_Type_NonNullType =
Tuple Type_NonNullType
( case _ of
Type_NonNullType a → Just a
_ → Nothing
)
data Type
= Type_NamedType NamedType
| Type_ListType ListType
| Type_NonNullType NonNullType
derive instance namedTypeGeneric ∷ Generic NamedType _
instance namedTypeShow ∷ Show NamedType where
show v = genericShow v
derive instance namedTypeEq ∷ Eq NamedType