13 lines
		
	
	
		
			473 B
		
	
	
	
		
			GraphQL
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			473 B
		
	
	
	
		
			GraphQL
		
	
	
	
	
	
mutation ($providerKey: String!, $email: String!, $name: String!, $passwordRaw: String, $groups: [Int]!, $mustChangePassword: Boolean, $sendWelcomeEmail: Boolean) {
 | 
						|
  users {
 | 
						|
    create(providerKey: $providerKey, email: $email, name: $name, passwordRaw: $passwordRaw, groups: $groups, mustChangePassword: $mustChangePassword, sendWelcomeEmail: $sendWelcomeEmail) {
 | 
						|
      responseResult {
 | 
						|
        succeeded
 | 
						|
        errorCode
 | 
						|
        slug
 | 
						|
        message
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 |