Skip to content

Commit 1c28821

Browse files
committed
update validateInputValue to use renamed method
1 parent 3ad80e4 commit 1c28821

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)