...
1"""
2schema description
3"""
4schema {
5 query: TopQuery
6 mutation: TopMutation
7 subscription: TopSubscription
8}
9type TopMutation {
10 noop: Boolean
11 noop2(
12 """
13 noop2 foo bar
14 """
15 arg: String
16 ): Boolean
17 noop3(
18 """
19 noop3 foo bar
20 """
21 arg: String
22 ): Boolean
23}
24type TopQuery {
25 noop: Boolean
26 noop2(
27 """
28 noop2 foo bar
29 """
30 arg: String
31 ): Boolean
32 noop3(
33 """
34 noop3 foo bar
35 """
36 arg: String
37 ): Boolean
38}
39type TopSubscription {
40 noop: Boolean
41 noop2(
42 """
43 noop2 foo bar
44 """
45 arg: String
46 ): Boolean
47 noop3(
48 """
49 noop3 foo bar
50 """
51 arg1: String
52
53 """
54 noop3 foo bar
55 """
56 arg2: String
57 ): Boolean
58}
View as plain text