Parameters

NameTypeRequired?
project_idtextyes
role_nametextyes
user_idtext
email_addresstext

Use

Modify a user in the provided project to the provided role

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

Example

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