INPUT_OBJECT

GlobalDataMutationConfigInput

Domain modification payload containing mutation data specifying what global fields in the domain to change.

link GraphQL Schema definition

  • input GlobalDataMutationConfigInput {
  • # 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!
  • # DEPRECATED - Replaced by operationId. NBI responses will not return this value
  • # anymore.
  • clientMutationId: String
  • # Global data fields to modify.
  • mutationData: PolicyGlobalMutationDataInput
  • # Unique identifier optionally passed into input object of any query/mutation
  • # call, returned in the corresponding response output.
  • operationId: String
  • }