Skip to content

Commit 4fc25e1

Browse files
authored
Make specifiedByUrl in IntrospectionScalarType's flow type optional (#2788)
1 parent 419449d commit 4fc25e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utilities/getIntrospectionQuery.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ export type IntrospectionScalarType = {|
173173
+kind: 'SCALAR',
174174
+name: string,
175175
+description?: ?string,
176-
+specifiedByUrl: ?string,
176+
+specifiedByUrl?: ?string,
177177
|};
178178

179179
export type IntrospectionObjectType = {|

0 commit comments

Comments
 (0)