You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thrownewMetaBindParsingError(`argument '${argument.type}' is only applicable to ${inputFieldArgument.getAllowedInputFieldsAsString()} input fields`);
241
+
thrownewMetaBindParsingError(`argument '${argument.type}' is only applicable to '${inputFieldArgument.getAllowedInputFieldsAsString()}' input fields`);
242
242
}
243
243
244
244
if(inputFieldArgument.requiresValue){
245
+
if(!argument.value){
246
+
thrownewMetaBindParsingError(`argument '${argument.type}' requires a non empty value`);
247
+
}
245
248
inputFieldArgument.parseValue(argument.value);
246
249
}
247
250
@@ -259,14 +262,7 @@ export class InputFieldDeclarationParser {
0 commit comments