OBJECT
Mutation
link GraphQL Schema definition
- type Mutation {
- # Create a new tenant
- #
- # Arguments
- # name: The full name of the tenant
- (: String!): Tenant
- # Delete a tenant
- #
- # Arguments
- # id: The unique id of the tenant
- (: String!): Tenant
- # Create a tenant
- #
- # Arguments
- # tenantId: Tenant unique id
- # email: Email of the user
- # password: Password used to login
- (: String!, : String!, : String!): User
- # Delete a user
- #
- # Arguments
- # id: The unique id of the user
- (: String!): User
- # Login a user
- #
- # Arguments
- # email: Email of the user
- # password: Password for the user
- (: String!, : String!): Login
- # Change the password of a user for login
- #
- # Arguments
- # email: Email of the user
- # currentpassword: Current password for the user
- # newpassword: New password for the user
- (
- : String!,
- : String!,
- : String!
- ): User
- # Send password reset for a user in case of lost password
- #
- # Arguments
- # email: Email of the user to reset
- (: String!): User!
- }
link Require by
This element is not required by anyone