INPUT_OBJECT

DomainObjectInput

link GraphQL Schema definition

  • input DomainObjectInput {
  • # Parent data type requested. Used for data that is not 'top level' to the domain,
  • # for instance returning a rule (PolicyRuleData) object w/ in a given service
  • # (PolicyServiceData).
  • parentDataType: PolicyDomainDataTypeInput
  • # Unique identifier optionally passed into input object of any query/mutation
  • # call, returned in the corresponding response output.
  • operationId: String
  • # Name of the object to query. If dataType is PolicyDomainData or
  • # PolicyHttpRedirectData, name is ignored / not applicable.
  • name: String!
  • # Data type requested
  • dataType: PolicyDomainDataTypeInput!
  • global: Boolean
  • # Name of domain being read.
  • domainName: String!
  • # DEPRECATED - Replaced by operationId. NBI responses will not return this value
  • # anymore.
  • clientQueryId: String
  • # If uniqueness of object is not determined by name, pass that here (ie VLANs use
  • # vid)
  • identifier: String
  • # Name of the parent of the object to query. For a rule, this contains the parent
  • # service.
  • parentName: String
  • }

link Require by