OBJECT

Mutation

Root mutation

link GraphQL Schema definition

  • type Mutation {
  • # Add a new user and set this password.
  • #
  • # Arguments
  • # user:
  • # pass:
  • addUser(user: UserIn!, pass: String!): User
  • # Delete an existing user from this id.
  • #
  • # Arguments
  • # id:
  • deleteUser(id: Int!): User
  • # Edit the information of user from this id.
  • #
  • # Arguments
  • # id:
  • # user:
  • editUser(id: Int!, user: UserIn!): User
  • # Change the user's password from this id.
  • #
  • # Arguments
  • # id:
  • # old_pass:
  • # new_pass:
  • editUserPassword(id: Int!, old_pass: String!, new_pass: String!): User
  • # Add a new group.
  • #
  • # Arguments
  • # name:
  • addGroup(name: String!): Group
  • # Delete an existing group from this id.
  • #
  • # Arguments
  • # id:
  • deleteGroup(id: Int!): Group
  • # Edit an existing group from this id.
  • #
  • # Arguments
  • # id:
  • # name:
  • editGroup(id: Int!, name: String): Group
  • # Add a new permission.
  • #
  • # Arguments
  • # name:
  • # code:
  • addPermission(name: String!, code: String): Permission
  • # Delete an existing permission from this id.
  • #
  • # Arguments
  • # id:
  • deletePermission(id: Int!): Permission
  • # Edit an existing permission from this id.
  • #
  • # Arguments
  • # id:
  • # name:
  • # code:
  • editPermission(id: Int!, name: String!, code: String): Permission
  • # Assign a group to the user.
  • #
  • # Arguments
  • # userId:
  • # groupId:
  • addGroupToUser(userId: Int!, groupId: Int!): User
  • # Assign a permission to the user.
  • #
  • # Arguments
  • # userId:
  • # permId:
  • addPermissionToUser(userId: Int!, permId: Int!): User
  • # Assign a permission to the group.
  • #
  • # Arguments
  • # groupId:
  • # permId:
  • addPermissionToGroup(groupId: Int, permId: Int!): Group
  • # Delete the group of user.
  • #
  • # Arguments
  • # userId:
  • # groupId:
  • deleteGroupFromUser(userId: Int!, groupId: Int!): User
  • # Delete the permission of user.
  • #
  • # Arguments
  • # userId:
  • # permId:
  • deletePermissionFromUser(userId: Int!, permId: Int!): User
  • # Delete the permission of group.
  • #
  • # Arguments
  • # groupId:
  • # permId:
  • deletePermissionFromGroup(groupId: Int!, permId: Int!): Group
  • }

link Require by

This element is not required by anyone