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
This in an implementation for a spec proposal:
* Spec proposal: [[RFC] Custom Scalar Specification URIs](graphql/graphql-spec#649)
* Original issue: [[RFC] Custom Scalar Specification URIs](graphql/graphql-spec#635)
Copy file name to clipboardExpand all lines: src/type/introspection.js
+6-1
Original file line number
Diff line number
Diff line change
@@ -195,7 +195,7 @@ export const __DirectiveLocation = new GraphQLEnumType({
195
195
exportconst__Type=newGraphQLObjectType({
196
196
name: '__Type',
197
197
description:
198
-
'The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a nameand description, 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.',
198
+
'The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending 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.',
199
199
fields: ()=>
200
200
({
201
201
kind: {
@@ -239,6 +239,11 @@ export const __Type = new GraphQLObjectType({
0 commit comments