We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af39391 commit 71cccf3Copy full SHA for 71cccf3
src/Utilities/InputValues.php
@@ -80,7 +80,7 @@ static function coerceInputValue($inputValue, GraphQLType $type, $path = [])
80
$coercedValue[$field->getName()] = self::coerceInputValue($fieldValue, $field->getType(), [$path, $field->getName(), $type->getName()]);
81
} catch (GraphQLError $error) {
82
// add information about explicit field name of input object type when coersion failed.
83
- throw new GraphQLError("Coercing value of \"{$field->getName()}\" failed explicity. " . $error->getMessage());
+ throw new GraphQLError("Coercing value of \"{$field->getName()}\" failed explicitly. " . $error->getMessage());
84
}
85
86
0 commit comments