when creating a mutaion and tried to test it it always generate the request body with wrong object, after deep debugging I found that the issue was that i named the parameter with 'input' like that
createAccount(input: $account){
id,
user{
name,
},
amount
}
} ```
when I changed it to another name it worked correctly:
``` mutation AccountConformationMutation($account: NewAccount!) {
createAccount(account: $account){
id,
user{
name,
},
amount
}
} ```