You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"The fundamental unit of any GraphQL Schema is the type. There are "+
184
-
"many kinds of types in GraphQL as represented by the `__TypeKind` enum."+
185
-
"\n\nDepending on the kind of a type, certain fields describe "+
186
-
"information about that type. Scalar types provide no information "+
187
-
"beyond a name and description, while Enum types provide their values. "+
188
-
"Object and Interface types provide the fields they describe. Abstract "+
189
-
"types, Union and Interface, provide the Object types possible "+
190
-
"at runtime. List and NonNull types compose other types.",
182
+
description:"""
183
+
The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.
184
+
185
+
Depending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name, description and optional `specifiedByURL`, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.
186
+
""",
191
187
fields:[
192
188
"kind":GraphQLField(
193
189
type:GraphQLNonNull(__TypeKind),
@@ -216,6 +212,7 @@ let __Type: GraphQLObjectType = try! GraphQLObjectType(
0 commit comments