Hello, I config the login auth using graphql. I found even thought my response is contain errors, the retool still show "Successfully authed!".
here is my graphql response
{
"errors": [
{
"message": "Non-nullable field 'username' (type String!) was not present in result from Dgraph. GraphQL error propagation triggered.",
"locations": [
{
"line": 4,
"column": 3
}
],
"path": [
"Authenticate",
"username"
]
}
],
"data": {
"Authenticate": null
},
"extensions": {
"tracing": {
"version": 1,
"startTime": "2022-01-15T07:31:16.6561004Z",
"endTime": "2022-01-15T07:31:16.7217542Z",
"duration": 65653800
}
}
}
and I found there is no place in UI to config the errors in graphql resource UI.
I read the docs but found no instruction about this.
any help will be appreciated.