Skip to content

Commit 5303cf7

Browse files
authored
update validateInputValue to use renamed method (#4307)
1 parent 46f29f4 commit 5303cf7

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
@@ -185,7 +185,7 @@ function validateInputValueImpl(
185185
let caughtError;
186186

187187
try {
188-
result = type.parseValue(inputValue, hideSuggestions);
188+
result = type.coerceInputValue(inputValue, hideSuggestions);
189189
} catch (error) {
190190
if (error instanceof GraphQLError) {
191191
onError(error, pathToArray(path));

0 commit comments

Comments
 (0)