Skip to content

Commit 4da1d0c

Browse files
committed
update validateInputValue to use renamed method (graphql#4307)
1 parent c22f5fa commit 4da1d0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)