Parameters

NameTypeRequired?
project_idtextyes
role_nametextyes
user_idtext
email_addresstext

Use

Adds a user to the provided project with the provided role

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

Example

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