Usability issues #105
Replies: 4 comments 4 replies
-
using an invalid supergraph file:
|
Beta Was this translation helpful? Give feedback.
-
Returning structured errorsIf I do this query: query ExampleQuery {
me {
i
}
} I get the response:
The message is not great here, especially the big UNKNOWN |
Beta Was this translation helpful? Give feedback.
-
Subgraph connection errorIf the subgraph is down and I do this query: query ExampleQuery {
me {
id
}
} I get the following response:
I think we should display a more user friendly message. I also think we should hide the backend server's address. In the logs, I see:
That log is not very actionable, we can display something like |
Beta Was this translation helpful? Give feedback.
-
Stacktrace appearing in graphql responsequery ExampleQuery($skip: Boolean) {
me {
id
reviews {
id
author @skip(if: $skip) {
id
reviews {
id
}
}
}
}
} response:
logs:
|
Beta Was this translation helpful? Give feedback.
-
here's a list of small usability issues around errors, messages we can improve, etc
Beta Was this translation helpful? Give feedback.
All reactions