Skip to content

Commit 9efa8df

Browse files
committed
update validateInputValue to use renamed method (#4307)
1 parent 732fcd2 commit 9efa8df

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
@@ -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)