"User information." type User { "User ID, used when logging in." id: String! "User's display name, which can differ from the user ID." name: String! "Whether the user is active." active: Boolean! "Whether the user has general administrator privileges. This does not grant admin rights on any project." admin: Boolean! } "Input for loginUser." input UserLoginInput { userId: String! password: String! rememberMe: Boolean! }