CreateRolePayload
ObjectAutogenerated return type of CreateRole.
mutation { organization(id: $organizationId) { createRole } }
Example
mutation CreateRole(
$organizationId: ID!
$input: CreateRoleInput!
) {
organization(id: $organizationId) {
createRole(input: $input) {
errors
}
}
}