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