Parameters

NameTypeRequired?
project_idtextyes
user_idtext
email_addresstext

Use

Remove a user from the provided project

Only a user_id OR email_address can be provided (not both)

Example

mutation MyMutation {
	removeProjectUser(projectId: "123abc", emailAddress: "[email protected]") {
	   id
	}
}