@@ -41,6 +41,7 @@ import type {
41
41
FieldNode ,
42
42
FragmentDefinitionNode ,
43
43
ValueNode ,
44
+ ConstValueNode ,
44
45
} from '../language/ast' ;
45
46
46
47
import { valueFromASTUntyped } from '../utilities/valueFromASTUntyped' ;
@@ -971,11 +972,18 @@ export function defineInputValue(
971
972
! ( 'resolve' in config ) ,
972
973
`${ name } has a resolve property, but inputs cannot define resolvers.` ,
973
974
) ;
975
+ let defaultValue ;
976
+ if ( config . defaultValue !== undefined || config . defaultValueLiteral ) {
977
+ defaultValue = {
978
+ value : config . defaultValue ,
979
+ literal : config . defaultValueLiteral ,
980
+ } ;
981
+ }
974
982
return {
975
983
name,
976
984
description : config . description ,
977
985
type : config . type ,
978
- defaultValue : config . defaultValue ,
986
+ defaultValue,
979
987
deprecationReason : config . deprecationReason ,
980
988
extensions : config . extensions && toObjMap ( config . extensions ) ,
981
989
astNode : config . astNode ,
@@ -991,7 +999,8 @@ export function inputValueToConfig(
991
999
return {
992
1000
description : inputValue . description ,
993
1001
type : inputValue . type ,
994
- defaultValue : inputValue . defaultValue ,
1002
+ defaultValue : inputValue . defaultValue ?. value ,
1003
+ defaultValueLiteral : inputValue . defaultValue ?. literal ,
995
1004
deprecationReason : inputValue . deprecationReason ,
996
1005
extensions : inputValue . extensions ,
997
1006
astNode : inputValue . astNode ,
@@ -1002,16 +1011,22 @@ export type GraphQLInputValue = {|
1002
1011
name : string ,
1003
1012
description : ?string ,
1004
1013
type : GraphQLInputType ,
1005
- defaultValue : mixed ,
1014
+ defaultValue : ? GraphQLDefaultValueUsage ,
1006
1015
deprecationReason : ?string ,
1007
1016
extensions : ?ReadOnlyObjMap < mixed > ,
1008
1017
astNode : ?InputValueDefinitionNode ,
1009
1018
| } ;
1010
1019
1020
+ export type GraphQLDefaultValueUsage = { |
1021
+ value : mixed ,
1022
+ literal : ?ConstValueNode ,
1023
+ | } ;
1024
+
1011
1025
export type GraphQLInputValueConfig = { |
1012
1026
description ?: ?string ,
1013
1027
type : GraphQLInputType ,
1014
1028
defaultValue ?: mixed ,
1029
+ defaultValueLiteral ?: ?ConstValueNode ,
1015
1030
deprecationReason ?: ?string ,
1016
1031
extensions ?: ?ReadOnlyObjMapLike < mixed > ,
1017
1032
astNode ?: ?InputValueDefinitionNode ,
0 commit comments