OBJECT

UserDoesNotExist

When resolving a User, the underlying service may claim that no user actually exists for the inputs (i.e. banned, deleted, or there's no record of an account with that login/ID).

link GraphQL Schema definition

1type UserDoesNotExist {
2
3# Key that was used to resolve the user, could be an ID or login.
4key: String!
5
6}