INPUT_OBJECT

RoleDataInput

link GraphQL Schema definition

  • input RoleDataInput {
  • # Name of the role to query
  • name: String!
  • # Name of domain being read.
  • domainName: String!
  • # Unique identifier optionally passed into input object of any query/mutation
  • # call, returned in the corresponding response output.
  • operationId: String
  • # The default value is false. If specified as true, it will extract the data from
  • # the policy database regardless of whether the client has a cached copy of the
  • # domain open. This is an expensive operation, so by default, get requests will
  • # cache the DB for later calls. The information in cache may differ from the
  • # database, as the user may not have saved the policy changes yet.
  • fromDatabase: Boolean
  • # DEPRECATED - Replaced by operationId. NBI responses will not return this value
  • # anymore.
  • clientQueryId: String
  • }

link Require by