You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
"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 { username: String! password: String! }
input UserCreateInput { username: String! password: String! name: String! active: Boolean admin: Boolean }
input UserEditInput { username: String!
setName: String setPassword: String
currentPassword: String }
|