-
Notifications
You must be signed in to change notification settings - Fork 733
Closed
Description
Seems like the variable editor is broken in one of the recent releases.
Error message:
Example:
input UserCreateInput {
role: Role!
email: String
password: String
posts: PostCreateManyWithoutAuthorInput
}
mutation ($_data: UserCreateInput!) {
createUser(data: $_data) {
id
}
}
{
"_data": {
"role": "CUSTOMER",
"email": "testa10",
"password": "testest"
}
}
evenchange4