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.

33 lines
693 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. username: String!
  15. password: String!
  16. }
  17. input UserCreateInput {
  18. username: String!
  19. password: String!
  20. name: String!
  21. active: Boolean
  22. admin: Boolean
  23. }
  24. input UserEditInput {
  25. username: String!
  26. setName: String
  27. setPassword: String
  28. currentPassword: String
  29. }