@@ -3192,6 +3192,11 @@ export class GraphQLArgument implements GraphQLSchemaElement {
31923192 defaultValue : unknown ;
31933193 /** Default value represented as either a runtime value or a GraphQL literal. */
31943194 default : GraphQLDefaultInput | undefined ;
3195+ /**
3196+ * Cached coerced default value.
3197+ * @private
3198+ */
3199+ _memoizedCoercedDefaultValue : unknown ;
31953200 /** Reason this element is deprecated, if one was provided. */
31963201 deprecationReason : Maybe < string > ;
31973202 /** Extension fields to include in the formatted result. */
@@ -3237,6 +3242,7 @@ export class GraphQLArgument implements GraphQLSchemaElement {
32373242 this . type = config . type ;
32383243 this . defaultValue = config . defaultValue ;
32393244 this . default = config . default ;
3245+ this . _memoizedCoercedDefaultValue = undefined ;
32403246 this . deprecationReason = config . deprecationReason ;
32413247 this . extensions = toObjMapWithSymbols ( config . extensions ) ;
32423248 this . astNode = config . astNode ;
@@ -5150,6 +5156,11 @@ export class GraphQLInputField implements GraphQLSchemaElement {
51505156 defaultValue : unknown ;
51515157 /** Default value represented as either a runtime value or a GraphQL literal. */
51525158 default : GraphQLDefaultInput | undefined ;
5159+ /**
5160+ * Cached coerced default value.
5161+ * @private
5162+ */
5163+ _memoizedCoercedDefaultValue : unknown ;
51535164 /** Reason this element is deprecated, if one was provided. */
51545165 deprecationReason : Maybe < string > ;
51555166 /** Extension fields to include in the formatted result. */
@@ -5197,6 +5208,7 @@ export class GraphQLInputField implements GraphQLSchemaElement {
51975208 this . type = config . type ;
51985209 this . defaultValue = config . defaultValue ;
51995210 this . default = config . default ;
5211+ this . _memoizedCoercedDefaultValue = undefined ;
52005212 this . deprecationReason = config . deprecationReason ;
52015213 this . extensions = toObjMapWithSymbols ( config . extensions ) ;
52025214 this . astNode = config . astNode ;
0 commit comments