Skip to content

Commit

Permalink
fix: add space in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
joonlabs committed Sep 7, 2021
1 parent 03ece8b commit d930749
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Execution/Values.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public static function coerceVariableValues(Schema $schema, array $variableDefin
}catch (GraphQLError $error){
// add node to error when coercing input variable failed
throw new ValidationError(
"Cannot coerce input value of type \"{$varType->getName()}\"." .
"Cannot coerce input value of type \"{$varType->getName()}\". " .
$error->getMessage(),
$varDefNode);
}
Expand Down

0 comments on commit d930749

Please sign in to comment.