Closed Stranger6667 closed 3 years ago
Describe the bug If arguments in the input query type contain required fields, they should be present in generated queries. Otherwise, such a query is invalid.
Example:
input RequiredInput { eq: Float!, } type Query { getData(query: RequiredInput): Float! }
Generated query:
{ getData(query: {}) }
Error: Field 'RequiredInput.eq' of required type 'Float!' was not provided.
Field 'RequiredInput.eq' of required type 'Float!' was not provided.
Describe the bug If arguments in the input query type contain required fields, they should be present in generated queries. Otherwise, such a query is invalid.
Example:
Generated query:
Error:
Field 'RequiredInput.eq' of required type 'Float!' was not provided.