Skip to content

Commit ff9335c

Browse files
committed
update validateInputValue to use renamed method (#4307)
1 parent 3a13fa0 commit ff9335c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/utilities/validateInputValue.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ function validateInputValueImpl(
193193
let caughtError;
194194

195195
try {
196-
result = type.parseValue(inputValue, hideSuggestions);
196+
result = type.coerceInputValue(inputValue, hideSuggestions);
197197
} catch (error) {
198198
if (error instanceof GraphQLError) {
199199
onError(error, pathToArray(path));

0 commit comments

Comments
 (0)