We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent caf9b41 commit fa38fe1Copy full SHA for fa38fe1
tests/utilities/test_build_ast_schema.py
@@ -186,6 +186,24 @@ def supports_descriptions():
186
arg: Int
187
) on FIELD
188
189
+ """Who knows what's inside this scalar?"""
190
+ scalar MysteryScalar
191
+
192
+ """This is an input object type"""
193
+ input FooInput {
194
+ """It has a field"""
195
+ field: Int
196
+ }
197
198
+ """This is an interface type"""
199
+ interface Energy {
200
+ """It also has a field"""
201
+ str: String
202
203
204
+ """There is nothing inside!"""
205
+ union BlackHole
206
207
"""With an enum"""
208
enum Color {
209
RED
0 commit comments