OBJECT

PrivilegesMutation

link GraphQL Schema definition

  • type PrivilegesMutation {
  • # Requires access to resource GRAPHQL_PRIVILEGES_EDIT
  • #
  • # Arguments
  • # input: [Not documented]
  • createRole(input: RoleInput!): Role!
  • # Requires access to resource GRAPHQL_PRIVILEGES_EDIT
  • #
  • # Arguments
  • # roleNid: [Not documented]
  • # input: [Not documented]
  • modifyRole(roleNid: RoleNid!, input: RoleModifyInput!): Boolean!
  • # Requires access to resource GRAPHQL_PRIVILEGES_EDIT.
  • # Requires access to given operator
  • #
  • # Arguments
  • # roleNid: [Not documented]
  • # targetOprNid: [Not documented]
  • # input: [Not documented]
  • modifyRoleForOperator(
  • roleNid: RoleNid!,
  • targetOprNid: OperatorNid!,
  • input: RoleModifyForOperatorInput!
  • ): Boolean!
  • # Requires access to resource GRAPHQL_PRIVILEGES_EDIT
  • #
  • # Arguments
  • # roleNid: [Not documented]
  • deleteRole(roleNid: RoleNid!): Boolean!
  • }