stufflog graphql server
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.

18 lines
468 B

  1. "User information."
  2. type User {
  3. "User ID, used when logging in."
  4. id: String!
  5. "User's display name, which can differ from the user ID."
  6. name: String!
  7. "Whether the user is active."
  8. active: Boolean!
  9. "Whether the user has general administrator privileges. This does not grant admin rights on any project."
  10. admin: Boolean!
  11. }
  12. "Input for loginUser."
  13. input UserLoginInput {
  14. userId: String!
  15. password: String!
  16. rememberMe: Boolean!
  17. }