OBJECT

ConfigurationCollection

Describes a collection of configuration sections which form the set of configurations needed to execute a task.

  • type ConfigurationCollection {
  • # Describes the sections contained within the configuration collection.
  • sectionDescriptors: [SectionDescriptor!]!
  • # The GUID that refers to this specific collection of values.
  • collectionId: UUID
  • # The list of values that make up this collection.
  • #
  • # Arguments
  • # sectionKey: The configuration section for which to return
  • # values.
  • # valueId: Return a specific value with the given GUID. This
  • # overrides `sectionKey` if set.
  • values(sectionKey: String, valueId: UUID): [NamedConfigurationValue!]!
  • }