INPUT_OBJECT

SiteConfigMutationInput

link GraphQL Schema definition

  • input SiteConfigMutationInput {
  • # Unique identifier for an existing site.
  • siteId: Long
  • # Unique identifier optionally passed into input object of any query/mutation
  • # call, returned in the corresponding response output.
  • operationId: String
  • # Required when creating a Site, otherwise its optional when a siteId is used.
  • # Example: siteLocation: "/World/Site1"
  • siteLocation: String
  • # DEPRECATED - Replaced by operationId. NBI responses will not return this value
  • # anymore.
  • clientMutationId: String
  • # Site configuration.
  • siteConfig: SiteConfigInput
  • # Request timeout in seconds.Timeout must be >= 5 && <= 3600
  • timeout: Int
  • }