...
1# Cat0 comment
2# Cat0 comment 2
3"""
4Cat0 description
5"""
6scalar Cat0
7# Cat1 comment
8type Cat1 {
9 # Cat1 name comment
10 name: String
11 # end of Cat1 comment
12}
13# Cat2 comment
14interface Cat2 {
15 # Cat2 name comment
16 name: String
17 # end of Cat2 comment
18}
19# Cat3 comment
20union Cat3 = Cat3_0 | Cat3_1 | Cat3_2
21# Cat3_0 comment
22type Cat3_0 {
23 # Cat3_0 name comment
24 name: String
25}
26# Cat3_1 comment
27type Cat3_1 {
28 # Cat3_1 name comment
29 name: String
30}
31# Cat3_2 comment
32type Cat3_2 {
33 # Cat3_2 name comment
34 name: String
35}
36# Cat4 comment
37enum Cat4 {
38 # Cat4 NFC comment
39 NFC
40 # Cat4 MAINECOON comment
41 MAINECOON
42 # end of Cat4 comment
43}
44# Cat5 comment
45input Cat5 {
46 # Cat5 name comment
47 name: String
48 # end of Cat5 comment
49}
View as plain text