INPUT_OBJECT

RoleMutationConfigInput

Role modification payload containing identifier specifying what role to change, and mutation data specifying what fields in the role to change.

link GraphQL Schema definition

  • input RoleMutationConfigInput {
  • # Specifies what the operation type is (Create/Delete/Modify).
  • mutationType: DomainMutationTypeInput!
  • # Name of domain being modified. Validates the intended domain has been opened
  • # first via openDomain. Editing a different domain that has not been explicitly
  • # opened first returns an error.
  • domainName: String!
  • # Unique identifier optionally passed into input object of any query/mutation
  • # call, returned in the corresponding response output.
  • operationId: String
  • # Role to modify/delete. Not required for mutationType=Create.
  • dataIdentifier: String
  • # Role data fields to modify. Services can be added/removed, but service data
  • # modification must be via mutateServiceData.
  • mutationData: PolicyRoleMutationDataInput
  • # DEPRECATED - Replaced by operationId. NBI responses will not return this value
  • # anymore.
  • clientMutationId: String
  • }