Parameters
Name | Type | Required? |
---|---|---|
project_id | text | yes |
role_name | text | yes |
user_id | text | |
email_address | text |
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
}
}