Skip to main content

UpdateRoleInput

Input for updating a custom role. The provided fields replace the role's definition. The role name is taken from the mutation's name argument and cannot be changed here.

input UpdateRoleInput {
title: String
description: String
scopes: [String!]
appliesTo: [String!]
grantsAt: [String!]
}

Fields

UpdateRoleInput.title ● String scalar

Human-readable title (optional).

UpdateRoleInput.description ● String scalar

Optional description.

UpdateRoleInput.scopes ● [String!] list scalar

UMA scopes the role grants.

UpdateRoleInput.appliesTo ● [String!] list scalar

Entity types the role applies to.

UpdateRoleInput.grantsAt ● [String!] list scalar

Tenancy levels at which the role grants access.

Member Of

updateRole mutation