ChangeProjectMembershipRoleInput
InputAutogenerated input type of ChangeProjectMembershipRole
mutation { organization(id: $organizationId) { project(id: $projectId) { changeProjectMembershipRole } } }
Example
mutation ChangeProjectMembershipRole(
$organizationId: ID!
$projectId: ID!
$input: ChangeProjectMembershipRoleInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
changeProjectMembershipRole(input: $input) {
errors
}
}
}
}