diff --git a/Gemfile b/Gemfile index 0188cff..2d23b8d 100644 --- a/Gemfile +++ b/Gemfile @@ -5,6 +5,7 @@ gemspec gem "rake", "~> 12.0" gem "rspec", "~> 3.0" +gem "test_construct" gem "vcr" gem "webmock" gem "coveralls", ">= 0.8.23" diff --git a/Gemfile.lock b/Gemfile.lock index e006d67..a72755d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - kubetruth (0.2.2) + kubetruth (0.3.0) activesupport clamp gem_logger @@ -113,6 +113,7 @@ GEM sync (0.5.0) term-ansicolor (1.7.1) tins (~> 1.0) + test_construct (2.0.2) thor (1.0.1) tins (1.26.0) sync @@ -139,6 +140,7 @@ DEPENDENCIES rake (~> 12.0) rspec (~> 3.0) simplecov + test_construct vcr webmock diff --git a/README.md b/README.md index 2d23004..181bbc0 100644 --- a/README.md +++ b/README.md @@ -34,67 +34,109 @@ Parameterize the helm install with `--set appSettings.**` to control how kubetru |-----------|-------------|------|---------|:--------:| | appSettings.apiKey | The cloudtruth api key. Read only access is sufficient | string | n/a | yes | | appSettings.environment | The cloudtruth environment to lookup parameter values for. Use a separate helm install for each environment | string | `default` | yes | -| appSettings.keyPrefix | Limit the parameters looked up to one of these prefixes | list(string) | n/a | no | -| appSettings.keyPattern | The pattern to match against key names to select params and provide keywords for generating resource names via nameTemplate and keyTemplate | list(regex) | `^(?[^\.]+)\.(?[^\.]+)\.(?.*)` | no | -| appSettings.namespaceTemplate | The template for generating the namespace that resources get created in | string | n/a | no | -| appSettings.nameTemplate | The template for generating resources (ConfigMaps and Secrets) | string | `%{name}` | no | -| appSettings.keyTemplate | The template for generating key names within a resource | string | `%{key}` | no | -| appSettings.skipSecrets | Do not transfer parameters that are marked as secret | flag | false | no | -| appSettings.secretsAsConfig | Place secret parameters alongside plain parameters within a ConfigMap instead of in their own Secret resource | flag | false | no | | appSettings.pollingInterval | Interval to poll cloudtruth api for changes | integer | 300 | no | | appSettings.debug | Debug logging | flag | n/a | no | -For example, for a keyspace that looks like: +By default, Kubetruth maps the parameters from CloudTruth Projects into ConfigMaps and Secrets of the same names as the Projects. + +For example, for a CloudTruth layout that looks like: + +`myProject`: ``` -service.someServiceName.oneParam=value1 -service.someServiceName.twoParam=value2 -service.otherServiceName.someParam=val1 -service.otherServiceName.mySecret=val2 (marked as a secret within CloudTruth) +oneParam=value1 +twoParam=value2 ``` -and parameterization like: +`otherProject`: ``` - --set appSettings.keyPrefix=service \ - --set appSettings.keyPattern=^(?[^\.]+)\.(?[^\.]+)\.(?.*) \ - --set appSettings.nameTemplate=%{name} \ - --set appSettings.keyTemplate=ACME_%{key_upcase} \ +someParam=value3 +mySecret=value4 (marked as a secret within CloudTruth) ``` -Kubetruth will generate the config maps: +Kubetruth will generate the kubernetes resources: -someServiceName: +ConfigMap named `myProject`: ```yaml - ACME_ONEPARAM: value1 - ACME_TWOPARAM: value2 + oneParam: value1 + twoParam: value2 ``` -otherServiceName: +ConfigMap named `otherProject`: ```yaml - ACME_SOMEPARAM: val1 + someParam: value3 ``` -and the Secrets: - -otherServiceName: +Secret named `otherProject`: ```yaml - MYSECRET: val2 + mySecret: val2 ``` -These kubernetes resources can then be referenced in the standard ways, e.g. +These kubernetes resources can then be referenced in the standard ways. +To use them as environment variables in a pod: ```yaml envFrom: - configMapRef: - name: otherServiceName + name: otherProject envFrom: - secretRef: - name: otherServiceName + name: otherProject +``` + +To use them as files on disk in a pod: +```yaml + containers: + - name: myProject + volumeMounts: + - name: config-volume + mountPath: /etc/myConfig + volumes: + - name: config-volume + configMap: + name: myProject ``` Note that config map updates don't get seen by a running pod. You can use something like [Reloader](https://github.com/stakater/Reloader) to automate this, or read config from mounted volumes for configmaps/secrets, which do get -updated automatically in a running pod +updated automatically in a running pod. + +## Additional configuration + +The kubetruth ConfigMap contains a [yaml file for additional config](helm/kubetruth/templates/configmap.yaml) + +### Example Config + +To create the kubernetes Resources in namespaces named after each Project: +```yaml +namespace_template: %{project} +``` + +To include the parameters from a Project named `Base` into all other projects, without creating Resources for `Base` itself: +```yaml +included_projects: + - Base +project_overrides: + - project_selector: Base + skip: true +``` + +To override the naming of kubernetes Resources on a per-Project basis: +```yaml +project_overrides: + - project_selector: funkyProject + configmap_name_template: notSoFunkyConfigMap + secret_name_template: notSoFunkySecret + namespace_template: notSoFunkyNsmespace +``` + +To limit the Projects processed to those whose names start with `service`, except for `serviceOddball`: +```yaml +project_selector: ^service +project_overrides: + - project_selector: serviceOddball + skip: true +``` ## Development diff --git a/helm/kubetruth/Chart.yaml b/helm/kubetruth/Chart.yaml index 9182d66..ac97d8b 100644 --- a/helm/kubetruth/Chart.yaml +++ b/helm/kubetruth/Chart.yaml @@ -15,9 +15,9 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.2.2 +version: 0.3.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. -appVersion: 0.2.2 +appVersion: 0.3.0 diff --git a/helm/kubetruth/templates/configmap.yaml b/helm/kubetruth/templates/configmap.yaml new file mode 100644 index 0000000..47ea15e --- /dev/null +++ b/helm/kubetruth/templates/configmap.yaml @@ -0,0 +1,49 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: {{ include "kubetruth.fullname" . }} + namespace: {{ .Release.Namespace }} + labels: + {{- include "kubetruth.labels" . | nindent 4 }} +data: + kubetruth.yaml: |- + # Configures how kubetruth fetches and maps parameters from CloudTruth to Kubernetes + + # + # The following settings can all be overriden on a per-project basis in project_overrides + # + + # Uses the given regexp to limit the projects acted against (client-side). Supplies any named matches for template evaluation + # project_selector: "" + + # Uses the given regexp to limit the keys acted against (client-side). Supplies any named matches for template evaluation + # key_selector: "" + + # Limits the keys fetched to contain the given substring (server-side, api search param) + # key_filter: "" + + # The template to use in generating ConfigMap names + # configmap_name_template: "%{project}" + # The template to use in generating Secret names + # secret_name_template: "%{project}" + # The template to use in generating namespace names + # namespace_template: "" + # The template to use in generating key names + # key_template: "%{key}" + + # Skips the generation of resources for the selected projects. Useful for + # excluding projects that should only be included into others. + # skip: false + + # Do not transfer secrets to kubernetes resources + # skip_secrets: false + + # Include the data from other projects into the selected ones + # included_projects: [] + + # Override any of the above settings for specific projects by name pattern + # project_overrides: + # - project_selector: oddballProject + # configmap_name_template: special-name + # - project_name: someOtherProject + # key_template: %{key_upcase} diff --git a/helm/kubetruth/templates/deployment.yaml b/helm/kubetruth/templates/deployment.yaml index e5308c6..ac664d7 100644 --- a/helm/kubetruth/templates/deployment.yaml +++ b/helm/kubetruth/templates/deployment.yaml @@ -38,38 +38,15 @@ spec: envFrom: - secretRef: name: {{ include "kubetruth.fullname" . }} + volumeMounts: + - name: config-volume + mountPath: /etc/kubetruth args: - app {{- if .Values.appSettings.environment }} - --environment - {{ .Values.appSettings.environment | quote }} {{- end }} - {{- range .Values.appSettings.keyPrefix }} - - --key-prefix - - {{ . | quote }} - {{- end }} - {{- range .Values.appSettings.keyPattern }} - - --key-pattern - - {{ . | quote }} - {{- end }} - {{- if .Values.appSettings.namespaceTemplate }} - - --namespace-template - - {{ .Values.appSettings.namespaceTemplate | quote }} - {{- end }} - {{- if .Values.appSettings.nameTemplate }} - - --name-template - - {{ .Values.appSettings.nameTemplate | quote }} - {{- end }} - {{- if .Values.appSettings.keyTemplate }} - - --key-template - - {{ .Values.appSettings.keyTemplate | quote }} - {{- end }} - {{- if .Values.appSettings.skipSecrets }} - - --skip-secrets - {{- end }} - {{- if .Values.appSettings.secretsAsConfig }} - - --secrets-as-config - {{- end }} {{- if .Values.appSettings.pollingInterval }} - --polling-interval - "{{ .Values.appSettings.pollingInterval }}" @@ -77,7 +54,10 @@ spec: {{- if .Values.appSettings.debug }} - --debug {{- end }} - + volumes: + - name: config-volume + configMap: + name: {{ include "kubetruth.fullname" . }} {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} diff --git a/helm/kubetruth/values.yaml b/helm/kubetruth/values.yaml index 5bf6df9..f7480b3 100644 --- a/helm/kubetruth/values.yaml +++ b/helm/kubetruth/values.yaml @@ -69,12 +69,6 @@ affinity: {} appSettings: apiKey: environment: - keyPrefix: [] - keyPattern: [] - namespaceTemplate: - nameTemplate: - keyTemplate: - skipSecrets: false - secretsAsConfig: false pollingInterval: debug: false + config: diff --git a/lib/kubetruth/cli.rb b/lib/kubetruth/cli.rb index dc0c654..ad8afcb 100755 --- a/lib/kubetruth/cli.rb +++ b/lib/kubetruth/cli.rb @@ -26,33 +26,9 @@ class CLI < Clamp::Command environment_variable: 'CT_API_KEY', required: true - option "--namespace-template", "TMPL", "the template for generating the namespace name where configmap/secrets are created from key pattern matches. Defaults to the namespace kubetruth is running in" - - option "--name-template", "TMPL", "the template for generating the configmap/secret name from key pattern matches", - default: "%{name}" - - option "--key-template", "TMPL", "the template for generating the configmap/secret keys from key pattern matches", - default: "%{key}" - - option "--key-prefix", "PREFIX", "the key prefix to restrict the keys fetched from cloudtruth", - default: [''], - multivalued: true - - option "--key-pattern", "REGEX", "the key pattern for mapping cloudtruth params to configmap keys. The `name` is used for the config map naming, and the keys in that map come from the matching `key` portion. A pattern like `^(?[^\\.]+.(?[^\\.]+)\\..*)` would make the key be the entire parameter key", - default: [/^(?[^\.]+)\.(?[^\.]+)\.(?.*)/], - multivalued: true do |a| - Regexp.new(a) - rescue RegexpError => e - raise ArgumentError.new(e.message) - end - - option "--skip-secrets", - :flag, "Do not transfer secrets to kubernetes resources", - default: false - - option "--secrets-as-config", - :flag, "Secrets are placed in config maps instead of kube secrets", - default: false + option ["-f", "--config-file"], + 'FILE', "The kubetruth.yml file", + default: "/etc/kubetruth/kubetruth.yaml" option "--kube-namespace", 'NAMESPACE', "The kubernetes namespace. Defaults to runtime namespace when run in kube" @@ -117,14 +93,12 @@ def execute api_url: kube_url } - etl = ETL.new(key_prefixes: key_prefix_list, key_patterns: key_pattern_list, - namespace_template: namespace_template, name_template: name_template, key_template: key_template, - ct_context: ct_context, kube_context: kube_context) + etl = ETL.new(config_file: config_file, ct_context: ct_context, kube_context: kube_context) while true begin - etl.apply(dry_run: dry_run?, skip_secrets: skip_secrets?, secrets_as_config: secrets_as_config?) + etl.apply(dry_run: dry_run?) rescue => e logger.log_exception(e, "Failure while applying config transforms") end diff --git a/lib/kubetruth/config.rb b/lib/kubetruth/config.rb new file mode 100644 index 0000000..3042edb --- /dev/null +++ b/lib/kubetruth/config.rb @@ -0,0 +1,93 @@ +require_relative 'logging' + +module Kubetruth + class Config + + include GemLogger::LoggerSupport + + ProjectSpec = Struct.new( + :project_selector, + :key_selector, + :key_filter, + :configmap_name_template, + :secret_name_template, + :namespace_template, + :key_template, + :skip, + :skip_secrets, + :included_projects, + keyword_init: true + ) + + DEFAULT_SPEC = { + project_selector: '', + key_selector: '', + key_filter: '', + configmap_name_template: '%{project}', + secret_name_template: '%{project}', + namespace_template: '', + key_template: '%{key}', + skip: false, + skip_secrets: false, + included_projects: [] + }.freeze + + def initialize(config_file:) + @config_file = config_file + end + + def convert_types(hash) + selector_key_pattern = /_selector$/ + hash.merge(hash) do |k, v| + k =~ selector_key_pattern ? Regexp.new(v) : v + end + end + + def stale? + @last_read != File.mtime(@config_file) + end + + def load + @config ||= begin + begin + config = YAML.load(File.read(@config_file)) || {} + @last_read = File.mtime(@config_file) + rescue => e + logger.warn("Unable to load config file: #{@config_file}, using defaults") + config = {} + end + overrides = config.delete(:project_overrides) || {} + config = DEFAULT_SPEC.merge(config) + @root_spec = ProjectSpec.new(**convert_types(config)) + @override_specs = overrides.collect { |o| ProjectSpec.new(convert_types(config.merge(o))) } + config + end + end + + def root_spec + load + @root_spec + end + + def override_specs + load + @override_specs + end + + def spec_for_project(project_name) + spec = nil + specs = override_specs.find_all { |o| project_name =~ o.project_selector } + case specs.size + when 0 + spec = root_spec + when 1 + spec = specs.first + else + logger.warn "Multiple configuration specs match the project '#{project_name}', using first: #{specs.collect(&:project_selector).inspect}" + spec = specs.first + end + spec + end + + end +end diff --git a/lib/kubetruth/ctapi.rb b/lib/kubetruth/ctapi.rb index e61d34e..4a223a8 100644 --- a/lib/kubetruth/ctapi.rb +++ b/lib/kubetruth/ctapi.rb @@ -55,17 +55,34 @@ def self.CtApi(api_key:, api_url: nil) } GRAPHQL - self.queries[:ParametersQuery] = client.parse <<~GRAPHQL - query($organizationId: ID, $environmentId: ID, $searchTerm: String) { + self.queries[:ProjectsQuery] = client.parse <<~GRAPHQL + query($organizationId: ID) { viewer { organization(id: $organizationId) { - parameters(searchTerm: $searchTerm, orderBy: { keyName: ASC }) { + projects { nodes { id - keyName - isSecret - environmentValue(environmentId: $environmentId) { - parameterValue + name + } + } + } + } + } + GRAPHQL + + self.queries[:ParametersQuery] = client.parse <<~GRAPHQL + query($organizationId: ID, $environmentId: ID, $projectName: String, $searchTerm: String) { + viewer { + organization(id: $organizationId) { + project(name: $projectName) { + parameters(searchTerm: $searchTerm, orderBy: { keyName: ASC }) { + nodes { + id + keyName + isSecret + environmentValue(environmentId: $environmentId) { + parameterValue + } } } } @@ -101,6 +118,20 @@ def environments end end + def projects + @projects ||= begin + variables = {} + if @organization + org_id = self.organizations[@organization] || raise("Unknown organization: #{@organization}") + variables[:organizationId] = org_id + end + + result = client.query(self.queries[:ProjectsQuery], variables: variables) + logger.debug{"Projects query result: #{result.inspect}"} + Hash[result&.data&.viewer&.organization&.projects&.nodes&.collect {|e| [e.name, e.id] }] + end + end + def organization_names organizations.keys end @@ -109,7 +140,11 @@ def environment_names environments.keys end - def parameters(searchTerm: "") + def project_names + projects.keys + end + + def parameters(searchTerm: "", project: nil) env_id = self.environments[@environment] || raise("Unknown environment: #{@environment}") variables = {searchTerm: searchTerm, environmentId: env_id.to_s} @@ -118,16 +153,18 @@ def parameters(searchTerm: "") variables[:organizationId] = org_id end + variables[:projectName] = project if project.present? + result = client.query(self.queries[:ParametersQuery], variables: variables) logger.debug do cleaned = result&.original_hash&.deep_dup - cleaned&.[]("data")&.[]("viewer")&.[]("organization")&.[]("parameters")&.[]("nodes")&.each do |e| + cleaned&.[]("data")&.[]("viewer")&.[]("organization")&.[]("project")&.[]("parameters")&.[]("nodes")&.each do |e| e["environmentValue"]["parameterValue"] = "" if e["isSecret"] end "Parameters query result: #{cleaned.inspect}, errors: #{result&.errors.inspect}" end - result&.data&.viewer&.organization&.parameters&.nodes&.collect do |e| + result&.data&.viewer&.organization&.project&.parameters&.nodes&.collect do |e| Kubetruth::Parameter.new(key: e.key_name, value: e.environment_value.parameter_value, secret: e.is_secret) end end diff --git a/lib/kubetruth/etl.rb b/lib/kubetruth/etl.rb index caafa16..bd03475 100644 --- a/lib/kubetruth/etl.rb +++ b/lib/kubetruth/etl.rb @@ -1,4 +1,5 @@ require_relative 'logging' +require_relative 'config' require_relative 'ctapi' require_relative 'kubeapi' require 'active_support/core_ext/hash/keys' @@ -7,15 +8,8 @@ module Kubetruth class ETL include GemLogger::LoggerSupport - def initialize(key_prefixes:, key_patterns:, - namespace_template:, name_template:, key_template:, - ct_context:, kube_context:) - - @key_prefixes = key_prefixes - @key_patterns = key_patterns - @name_template = name_template - @namespace_template = namespace_template - @key_template = key_template + def initialize(config_file:, ct_context:, kube_context:) + @config_file = config_file @ct_context = ct_context @kube_context = kube_context @kubeapis = {} @@ -30,97 +24,114 @@ def ctapi end def kubeapi(namespace) - @kubeapis[namespace] ||= KubeApi.new(**@kube_context.merge(namespace: namespace)) + ns_key = namespace.present? ? namespace : "no_namespace" + @kubeapis[ns_key] ||= KubeApi.new(**@kube_context.merge(namespace: namespace)) end - def apply(dry_run: false, skip_secrets: false, secrets_as_config: false) - param_groups = get_param_groups - logger.debug { "Parameter groupings: #{param_groups.keys}" } - - if secrets_as_config && ! skip_secrets - config_param_groups = param_groups - secret_param_groups = {} - else - config_param_groups, secret_param_groups = partition_secrets(param_groups) + def load_config + if @config.nil? || @config.stale? + @config = Kubetruth::Config.new(config_file: @config_file) + @config.load end + @config + end - if dry_run - logger.info("Performing dry-run") + def apply(dry_run: false) + config = load_config - logger.info("Config maps that would be created are:") - logger.info(config_param_groups.pretty_print_inspect) + projects = ctapi.project_names - if ! secrets_as_config && ! skip_secrets - logger.info("Secrets that would be created are:") - logger.info(secret_param_groups.pretty_print_inspect) + projects.each do |project| + + match = project.match(config.root_spec.project_selector) + if match.nil? + logger.info "Project '#{project}' does not match root selector #{config.root_spec.project_selector}" + next + else + logger.info "Project '#{project}' matches root selector #{config.root_spec.project_selector}" end - return - else - apply_config_maps(config_param_groups) + matches_hash = match.named_captures.symbolize_keys - if ! secrets_as_config && ! skip_secrets - apply_secrets(secret_param_groups) + project_spec = config.spec_for_project(project) + if project_spec.skip + logger.info "Skipping project '#{project}'" + next end - end - end - def partition_secrets(param_groups) - config_param_groups = {} - secret_param_groups = {} - param_groups.each do |k, v| - parts = v.group_by(&:secret) - config_param_groups[k] = parts[false] if parts[false].present? - secret_param_groups[k] = parts[true] if parts[true].present? + # Add in matches from project specific selector, the match will always + # succeed as the spec is either the root spec, or its project_selector + # has already matched + match = project.match(project_spec.project_selector) + matches_hash = matches_hash.merge(match.named_captures.symbolize_keys) + matches_hash[:project] = project unless matches_hash.has_key?(:project) + matches_hash = Hash[*matches_hash.collect {|k, v| [k, v, "#{k}_upcase".to_sym, v.upcase]}.flatten] + + namespace = dns_friendly(project_spec.namespace_template % matches_hash) + configmap_name = dns_friendly(project_spec.configmap_name_template % matches_hash) + secret_name = dns_friendly(project_spec.secret_name_template % matches_hash) + + params = get_params(project, project_spec, template_matches: matches_hash) + logger.debug { "Parameters selected for #{project}: #{params.collect {|p| "#{p.original_key} => #{p.key}"}.inspect}" } + + parts = params.group_by(&:secret) + config_params, secret_params = (parts[false] || []), (parts[true] || []) + + if dry_run + logger.info("Performing dry-run") + + logger.info("Config maps that would be created are:") + logger.info(config_params.pretty_print_inspect) + + if ! project_spec.skip_secrets + logger.info("Secrets that would be created are:") + secret_params.each {|p| p.value = "" if p.secret} + logger.info(secret_params.pretty_print_inspect) + end + + next + else + apply_config_map(namespace: namespace, name: configmap_name, params: config_params) + + if ! project_spec.skip_secrets + apply_secret(namespace: namespace, name: secret_name, params: secret_params) + end + end end - return config_param_groups, secret_param_groups end - def get_param_groups + def get_params(project, project_spec, template_matches: {}) + result = [] + # First search for all the selected parameters # - filtered_params = [] - @key_prefixes.each do |key_prefix| - params = ctapi.parameters(searchTerm: key_prefix) - # ct api currently only has a search, not a prefix filter - params = params.select { |param| param.key =~ /^#{key_prefix}/ } - filtered_params = (filtered_params + params).uniq {|param| param.key } - end + params = ctapi.parameters(searchTerm: project_spec.key_filter, project: project) logger.debug do - cleaned = filtered_params.deep_dup + cleaned = params.deep_dup cleaned.each {|p| p.value = "" if p.secret} "Filtered params: #{cleaned.inspect}" end - # Group those parameters by the name selected by the name_pattern - # - param_groups = {} - @key_patterns.each do |key_pattern| - logger.debug {"Looking for key pattern matches to '#{key_pattern}'"} - - filtered_params.each do |param| - if matches = param.key.match(key_pattern) - matches_hash = matches.named_captures.symbolize_keys - matches_hash = Hash[*matches_hash.collect {|k, v| [k, v, "#{k}_upcase".to_sym, v.upcase]}.flatten] - - logger.debug {"Pattern matches '#{param.key}' with: #{matches_hash}"} - - namespace = dns_friendly(@namespace_template % matches_hash) if @namespace_template - name = dns_friendly(@name_template % matches_hash) - key = @key_template % matches_hash - param.original_key, param.key = param.key, key - - group_key = {namespace: namespace, name: name} - param_groups[group_key] ||= [] - param_groups[group_key] << param - else - logger.debug {"Pattern does not match '#{param.key}'"} - end - end + logger.debug {"Looking for key pattern matches to '#{project_spec.key_selector}'"} + + params.each do |param| + if matches = param.key.match(project_spec.key_selector) + matches_hash = matches.named_captures.symbolize_keys + matches_hash[:key] = param.key unless matches_hash.has_key?(:key) + matches_hash = Hash[*matches_hash.collect {|k, v| [k, v, "#{k}_upcase".to_sym, v.upcase]}.flatten] + matches_hash = template_matches.merge(matches_hash) + + logger.debug {"Pattern matches '#{param.key}' with: #{matches_hash}"} + key = project_spec.key_template % matches_hash + param.original_key, param.key = param.key, key + + result << param + else + logger.debug {"Pattern does not match '#{param.key}'"} + end end - # Returns a hash of the group name to a param hash (param_key -> param_value) - param_groups + result end def dns_friendly(str) @@ -129,85 +140,58 @@ def dns_friendly(str) dns_friendly end - def apply_config_maps(param_groups) - logger.info("Applying config maps") - - # For each set of parameters grouped by name, add those parameters - # to the config map with that name - # - - param_groups.collect {|k, v| k[:namespace] }.sort.uniq.each do |ns| - kapi = kubeapi(ns) - # only create namespace when user chooses to use multiple namespaces determined from the pattern - kapi.ensure_namespace if @namespace_template - logger.debug { "Existing config maps (ns=#{ns}): #{kapi.get_config_map_names}" } - end - - param_groups.each do |k, v| - config_map_namespace = k[:namespace] - config_map_name = k[:name] - kapi = kubeapi(config_map_namespace) - param_hash = Hash[v.collect {|param| [param.key, param.value]}] - - begin - logger.debug { "Namespace '#{kapi.namespace}'" } - resource = kapi.get_config_map(config_map_name) - data = resource.data.to_h - logger.debug("Config map for '#{config_map_name}': #{data.inspect}") - if ! kapi.under_management?(resource) - logger.warn "Skipping config map '#{config_map_name}' as it doesn't have a label indicating it is under kubetruth management" - elsif param_hash != data.transform_keys! {|k| k.to_s } - logger.info "Updating config map '#{config_map_name}' with params: #{param_hash.inspect}" - kapi.update_config_map(config_map_name, param_hash) - else - logger.info "No changes needed for config map '#{config_map_name}' with params: #{param_hash.inspect}}" - end - rescue Kubeclient::ResourceNotFoundError - logger.info "Creating config map '#{config_map_name}' with params: #{param_hash.inspect}}" - kapi.create_config_map(config_map_name, param_hash) + def apply_config_map(namespace:, name:, params:) + logger.info("Applying config map #{namespace}:#{name}") + + kapi = kubeapi(namespace) + kapi.ensure_namespace + logger.debug { "Existing config maps (ns=#{kapi.namespace}): #{kapi.get_config_map_names}" } + + param_hash = Hash[params.collect {|param| [param.key, param.value]}] + + begin + resource = kapi.get_config_map(name) + data = resource.data.to_h + logger.debug("Config map for '#{name}': #{data.inspect}") + if ! kapi.under_management?(resource) + logger.warn "Skipping config map '#{name}' as it doesn't have a label indicating it is under kubetruth management" + elsif param_hash != data.transform_keys! {|k| k.to_s } + logger.info "Updating config map '#{name}' with params: #{param_hash.inspect}" + kapi.update_config_map(name, param_hash) + else + logger.info "No changes needed for config map '#{name}' with params: #{param_hash.inspect}}" end + rescue Kubeclient::ResourceNotFoundError + logger.info "Creating config map '#{name}' with params: #{param_hash.inspect}}" + kapi.create_config_map(name, param_hash) end end - def apply_secrets(param_groups) - logger.info("Applying secrets") - - # For each set of parameters grouped by name, add those parameters - # to the secret with that name - # - - param_groups.collect {|k, v| k[:namespace] }.uniq.each do |ns| - kapi = kubeapi(ns) - # only create namespace when user chooses to use multiple namespaces determined from the pattern - kapi.ensure_namespace if @namespace_template - logger.debug { "Existing secrets (ns=#{kapi.namespace}): #{kapi.get_secret_names}" } - end - - param_groups.each do |k, v| - - secret_namespace = k[:namespace] - secret_name = k[:name] - kapi = kubeapi(secret_namespace) - - param_hash = Hash[v.collect {|param| [param.key, param.value]}] - - begin - logger.debug { "Namespace '#{kapi.namespace}'" } - resource = kapi.get_secret(secret_name) - data = kapi.secret_hash(resource) - logger.debug { "Secret keys for '#{secret_name}': #{data.transform_keys! {|k| k.to_s }}" } - if ! kapi.under_management?(resource) - logger.warn "Skipping secret '#{secret_name}' as it doesn't have a label indicating it is under kubetruth management" - elsif param_hash != data.transform_keys! {|k| k.to_s } - logger.info "Updating secret '#{secret_name}' with params: #{param_hash.keys.inspect}" - kapi.update_secret(secret_name, param_hash) - else - logger.info "No changes needed for secret '#{secret_name}' with params: #{param_hash.keys.inspect}}" - end - rescue Kubeclient::ResourceNotFoundError - logger.info "Creating secret '#{secret_name}' with params: #{param_hash.keys.inspect}}" - kapi.create_secret(secret_name, param_hash) + def apply_secret(namespace:, name:, params:) + logger.info("Applying secrets #{namespace}:#{name}") + + kapi = kubeapi(namespace) + kapi.ensure_namespace + logger.debug { "Existing secrets (ns=#{kapi.namespace}): #{kapi.get_secret_names}" } + + param_hash = Hash[params.collect {|param| [param.key, param.value]}] + + begin + logger.debug { "Namespace '#{kapi.namespace}'" } + resource = kapi.get_secret(name) + data = kapi.secret_hash(resource) + logger.debug { "Secret keys for '#{name}': #{data.transform_keys! {|k| k.to_s }}" } + if ! kapi.under_management?(resource) + logger.warn "Skipping secret '#{name}' as it doesn't have a label indicating it is under kubetruth management" + elsif param_hash != data.transform_keys! {|k| k.to_s } + logger.info "Updating secret '#{name}' with params: #{param_hash.keys.inspect}" + kapi.update_secret(name, param_hash) + else + logger.info "No changes needed for secret '#{name}' with params: #{param_hash.keys.inspect}}" end + rescue Kubeclient::ResourceNotFoundError + logger.info "Creating secret '#{name}' with params: #{param_hash.keys.inspect}}" + kapi.create_secret(name, param_hash) end end diff --git a/lib/kubetruth/kubeapi.rb b/lib/kubetruth/kubeapi.rb index db01b77..cf7a6c4 100644 --- a/lib/kubetruth/kubeapi.rb +++ b/lib/kubetruth/kubeapi.rb @@ -16,7 +16,7 @@ def initialize(namespace: nil, token: nil, api_url: nil) ca_path = '/var/run/secrets/kubernetes.io/serviceaccount/ca.crt' token_path = '/var/run/secrets/kubernetes.io/serviceaccount/token' - @namespace = namespace || File.read(namespace_path).chomp + @namespace = namespace.present? ? namespace : File.read(namespace_path).chomp @labels = {MANAGED_LABEL_KEY => MANAGED_LABEL_VALUE} @auth_options = {} diff --git a/lib/kubetruth/version.rb b/lib/kubetruth/version.rb index 16e68a9..f0b7d5c 100644 --- a/lib/kubetruth/version.rb +++ b/lib/kubetruth/version.rb @@ -1,3 +1,3 @@ module Kubetruth - VERSION = "0.2.2" + VERSION = "0.3.0" end diff --git a/spec/fixtures/vcr/CtApi/_environments/gets_environments.yml b/spec/fixtures/vcr/CtApi/_environments/gets_environments.yml index 34899d4..bff18b5 100644 --- a/spec/fixtures/vcr/CtApi/_environments/gets_environments.yml +++ b/spec/fixtures/vcr/CtApi/_environments/gets_environments.yml @@ -25,7 +25,7 @@ http_interactions: Accept: - application/json User-Agent: - - kubetruth/0.2.0 + - kubetruth/0.3.0 Content-Type: - application/json Authorization: @@ -36,7 +36,7 @@ http_interactions: message: OK headers: Date: - - Wed, 17 Feb 2021 15:58:13 GMT + - Tue, 27 Apr 2021 14:10:49 GMT Content-Type: - application/json; charset=utf-8 Transfer-Encoding: @@ -55,19 +55,19 @@ http_interactions: - none Referrer-Policy: - strict-origin-when-cross-origin + Vary: + - Accept, Origin Etag: - - W/"9fb738763ccd7d76282a12d15db153be" + - W/"75ec2b3ba6f57bc364b5a38b5e8f606b" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - 44549554-2cc9-4fc7-ab52-71682a84b2c7 + - 7ce2179d-2a99-475e-a448-a4efde0214f8 X-Runtime: - - '0.637985' - Vary: - - Origin + - '1.632798' body: encoding: UTF-8 - string: '{"data":{"__schema":{"queryType":{"name":"Query"},"mutationType":{"name":"Mutation"},"subscriptionType":null,"types":[{"kind":"OBJECT","name":"AuditLogSnapshot","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fileUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SnapshotStatusEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditLogSnapshotConnection","description":"The + string: '{"data":{"__schema":{"queryType":{"name":"Query"},"mutationType":{"name":"Mutation"},"subscriptionType":null,"types":[{"kind":"OBJECT","name":"AuditLogSnapshot","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fileUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SnapshotStatusEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditLogSnapshotConnection","description":"The connection type for AuditLogSnapshot.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AuditLogSnapshotEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -76,7 +76,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditLogSnapshotEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegration","description":null,"fields":[{"name":"accountId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"enabledServices","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsIntegrationEnum","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"externalId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"roleName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegrationConnection","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegration","description":null,"fields":[{"name":"accountId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"enabledServices","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsIntegrationEnum","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"externalId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"roleName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegrationConnection","description":"The connection type for AwsIntegration.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegrationEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegration","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -85,7 +85,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegrationEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AwsIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AwsIntegrationEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"S3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SSM","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"Boolean","description":"Represents + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AwsIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AwsIntegrationEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"S3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SSM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SECRETS_MANAGER","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INTERFACE","name":"BasePolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"InvitationPolicy","ofType":null},{"kind":"OBJECT","name":"NodePolicy","ofType":null},{"kind":"OBJECT","name":"OrganizationPolicy","ofType":null}]},{"kind":"SCALAR","name":"Boolean","description":"Represents `true` or `false` values.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateAuditLogSnapshotInput","description":"Autogenerated input type of CreateAuditLogSnapshot","fields":null,"inputFields":[{"name":"organizationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateAuditLogSnapshotPayload","description":"Autogenerated @@ -107,19 +107,27 @@ http_interactions: unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateInvitationPayload","description":"Autogenerated return type of CreateInvitation","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"invitation","description":null,"args":[],"type":{"kind":"OBJECT","name":"Invitation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateOrganizationInput","description":"Autogenerated - input type of CreateOrganization","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + input type of CreateOrganization","fields":null,"inputFields":[{"name":"eaorgid","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateOrganizationPayload","description":"Autogenerated return type of CreateOrganization","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateParameterInput","description":"Autogenerated - input type of CreateParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + input type of CreateParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateParameterPayload","description":"Autogenerated return type of CreateParameter","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreatePersonalAccessTokenInput","description":"Autogenerated input type of CreatePersonalAccessToken","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"writeAccess","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreatePersonalAccessTokenPayload","description":"Autogenerated return type of CreatePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","description":"Autogenerated - input type of CreateTemplate","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateProjectInput","description":"Autogenerated + input type of CreateProject","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateProjectPayload","description":"Autogenerated + return type of CreateProject","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateServiceAccountInput","description":"Autogenerated + input type of CreateServiceAccount","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateServiceAccountPayload","description":"Autogenerated + return type of CreateServiceAccount","fields":[{"name":"apiToken","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"serviceAccount","description":null,"args":[],"type":{"kind":"OBJECT","name":"ServiceAccount","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","description":"Autogenerated + input type of CreateTemplate","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateTemplatePayload","description":"Autogenerated return type of CreateTemplate","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteAllPersonalAccessTokensInput","description":"Autogenerated @@ -142,7 +150,11 @@ http_interactions: input type of DeleteInvitation","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteInvitationPayload","description":"Autogenerated return type of DeleteInvitation","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedInvitationId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedInvitationId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteMembershipInput","description":"Autogenerated + input type of DeleteMembership","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteMembershipPayload","description":"Autogenerated + return type of DeleteMembership","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedMembershipId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","description":"Autogenerated input type of DeleteParameter","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteParameterPayload","description":"Autogenerated return type of DeleteParameter","fields":[{"name":"clientMutationId","description":"A @@ -150,7 +162,15 @@ http_interactions: input type of DeletePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeletePersonalAccessTokenPayload","description":"Autogenerated return type of DeletePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedPersonalAccessTokenId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedPersonalAccessTokenId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteProjectInput","description":"Autogenerated + input type of DeleteProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteProjectPayload","description":"Autogenerated + return type of DeleteProject","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteServiceAccountInput","description":"Autogenerated + input type of DeleteServiceAccount","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteServiceAccountPayload","description":"Autogenerated + return type of DeleteServiceAccount","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedServiceAccountId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","description":"Autogenerated input type of DeleteTemplate","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteTemplatePayload","description":"Autogenerated return type of DeleteTemplate","fields":[{"name":"clientMutationId","description":"A @@ -158,7 +178,7 @@ http_interactions: the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[{"name":"parameterId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterValue","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentConnection","description":"The + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[{"name":"parameterId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterValue","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentConnection","description":"The connection type for Environment.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -167,11 +187,11 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentValue","description":null,"fields":[{"name":"environment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integrationFile","description":null,"args":[],"type":{"kind":"OBJECT","name":"IntegrationFile","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"jmesPath","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EnvironmentValueTypeEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"EnvironmentValueTypeEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"STATIC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DYNAMIC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","description":"Autogenerated + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentValue","description":null,"fields":[{"name":"environment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integrationFile","description":null,"args":[],"type":{"kind":"OBJECT","name":"IntegrationFile","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"jmesPath","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EnvironmentValueTypeEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"EnvironmentValueTypeEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"STATIC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DYNAMIC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ExportParameters","description":null,"fields":[{"name":"evaluated","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ExportParametersFormatEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"DOCKER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DOTENV","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SHELL","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ExportParametersOptions","description":null,"fields":null,"inputFields":[{"name":"secrets","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"export","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"startsWith","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"endsWith","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"contains","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","description":"Autogenerated input type of FakeOrganizationData","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FakeOrganizationDataPayload","description":"Autogenerated return type of FakeOrganizationData","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegration","description":null,"fields":[{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"availableRepositoryCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"installationUrl","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegrationConnection","description":"The + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegration","description":null,"fields":[{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"availableRepositoryCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"installationUrl","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegrationConnection","description":"The connection type for GithubIntegration.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"GithubIntegrationEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"GithubIntegration","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -180,7 +200,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegrationEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"GithubIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"ID","description":"Represents + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"GithubIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"HasPolicy","description":null,"fields":[{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"BasePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"ServiceAccount","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null}]},{"kind":"SCALAR","name":"ID","description":"Represents a unique identifier that is Base64 obfuscated. It is often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected @@ -201,7 +221,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"IntegrationTreeEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Invitation","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberEmail","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberRole","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InvitationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationConnection","description":"The + item at the end of the edge.","args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Invitation","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberEmail","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberRole","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationPolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InvitationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationConnection","description":"The connection type for Invitation.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Invitation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -210,7 +230,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Invitation","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"InvitationStateEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ACCEPTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DECLINED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PENDING","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Membership","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pictureUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MembershipConnection","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Invitation","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationPolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resend","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"InvitationStateEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ACCEPTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DECLINED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PENDING","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Membership","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pictureUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MembershipConnection","description":"The connection type for Membership.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Membership","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -219,8 +239,45 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MembershipEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"MembershipRoleEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ADMIN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CONTRIBUTOR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VIEWER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"OWNER","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Mutation","description":null,"fields":[{"name":"createAuditLogSnapshot","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAuditLogSnapshotInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAuditLogSnapshotPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createAwsIntegration","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createEnvironment","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createGithubSetupToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateGithubSetupTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateGithubSetupTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createInvitation","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createOrganization","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrganizationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateOrganizationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createParameter","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createPersonalAccessToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createTemplate","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAllPersonalAccessTokens","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAllPersonalAccessTokensInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAllPersonalAccessTokensPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAwsIntegration","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteEnvironment","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteGithubIntegration","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteGithubIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteGithubIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteInvitation","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteParameter","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deletePersonalAccessToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeletePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeletePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteTemplate","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fakeOrganizationData","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"FakeOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"regeneratePersonalAccessToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RegeneratePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resetOrganizationData","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResetOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateAwsIntegration","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateEnvironment","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateInvitation","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateMembership","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateMembershipInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateMembershipPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateParameter","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatePersonalAccessToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateTemplate","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"upsertParameter","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpsertParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpsertParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"Node","description":"An - object with an ID.","fields":[{"name":"id","description":"ID of the object.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"IntegrationFile","ofType":null},{"kind":"OBJECT","name":"IntegrationFileTree","ofType":null},{"kind":"OBJECT","name":"IntegrationServiceTree","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null},{"kind":"OBJECT","name":"Viewer","ofType":null}]},{"kind":"ENUM","name":"OrderByEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DESC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Organization","description":null,"fields":[{"name":"auditLogSnapshots","description":null,"args":[{"name":"after","description":"Returns + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"MembershipRoleEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ADMIN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CONTRIBUTOR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VIEWER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"OWNER","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Mutation","description":null,"fields":[{"name":"createAuditLogSnapshot","description":null,"args":[{"name":"input","description":"Parameters + for CreateAuditLogSnapshot","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAuditLogSnapshotInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAuditLogSnapshotPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters + for CreateAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createEnvironment","description":null,"args":[{"name":"input","description":"Parameters + for CreateEnvironment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createGithubSetupToken","description":null,"args":[{"name":"input","description":"Parameters + for CreateGithubSetupToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateGithubSetupTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateGithubSetupTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createInvitation","description":null,"args":[{"name":"input","description":"Parameters + for CreateInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createOrganization","description":null,"args":[{"name":"input","description":"Parameters + for CreateOrganization","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrganizationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateOrganizationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createParameter","description":null,"args":[{"name":"input","description":"Parameters + for CreateParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createPersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for CreatePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createProject","description":null,"args":[{"name":"input","description":"Parameters + for CreateProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createServiceAccount","description":null,"args":[{"name":"input","description":"Parameters + for CreateServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateServiceAccountPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createTemplate","description":null,"args":[{"name":"input","description":"Parameters + for CreateTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAllPersonalAccessTokens","description":null,"args":[{"name":"input","description":"Parameters + for DeleteAllPersonalAccessTokens","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAllPersonalAccessTokensInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAllPersonalAccessTokensPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters + for DeleteAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteEnvironment","description":null,"args":[{"name":"input","description":"Parameters + for DeleteEnvironment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteGithubIntegration","description":null,"args":[{"name":"input","description":"Parameters + for DeleteGithubIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteGithubIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteGithubIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteInvitation","description":null,"args":[{"name":"input","description":"Parameters + for DeleteInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteMembership","description":null,"args":[{"name":"input","description":"Parameters + for DeleteMembership","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteMembershipInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteMembershipPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteParameter","description":null,"args":[{"name":"input","description":"Parameters + for DeleteParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deletePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for DeletePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeletePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeletePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteProject","description":null,"args":[{"name":"input","description":"Parameters + for DeleteProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteServiceAccount","description":null,"args":[{"name":"input","description":"Parameters + for DeleteServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteServiceAccountPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteTemplate","description":null,"args":[{"name":"input","description":"Parameters + for DeleteTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fakeOrganizationData","description":null,"args":[{"name":"input","description":"Parameters + for FakeOrganizationData","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"FakeOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refreshServiceAccountApiToken","description":null,"args":[{"name":"input","description":"Parameters + for RefreshServiceAccountApiToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RefreshServiceAccountApiTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RefreshServiceAccountApiTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"regeneratePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for RegeneratePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RegeneratePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resendInvitation","description":null,"args":[{"name":"input","description":"Parameters + for ResendInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResendInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResendInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resetOrganizationData","description":null,"args":[{"name":"input","description":"Parameters + for ResetOrganizationData","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResetOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters + for UpdateAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateEnvironment","description":null,"args":[{"name":"input","description":"Parameters + for UpdateEnvironment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateInvitation","description":null,"args":[{"name":"input","description":"Parameters + for UpdateInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateMembership","description":null,"args":[{"name":"input","description":"Parameters + for UpdateMembership","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateMembershipInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateMembershipPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateOrganization","description":null,"args":[{"name":"input","description":"Parameters + for UpdateOrganization","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateOrganizationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateOrganizationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateParameter","description":null,"args":[{"name":"input","description":"Parameters + for UpdateParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for UpdatePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateProject","description":null,"args":[{"name":"input","description":"Parameters + for UpdateProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateTemplate","description":null,"args":[{"name":"input","description":"Parameters + for UpdateTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"upsertParameter","description":null,"args":[{"name":"input","description":"Parameters + for UpsertParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpsertParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpsertParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"Node","description":"An + object with an ID.","fields":[{"name":"id","description":"ID of the object.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"IntegrationFile","ofType":null},{"kind":"OBJECT","name":"IntegrationFileTree","ofType":null},{"kind":"OBJECT","name":"IntegrationServiceTree","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"ServiceAccount","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null},{"kind":"OBJECT","name":"Viewer","ofType":null}]},{"kind":"OBJECT","name":"NodePolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"OrderByEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DESC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Organization","description":null,"fields":[{"name":"auditLogSnapshots","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns @@ -228,11 +285,12 @@ http_interactions: the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegrationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"environment","description":null,"args":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environments","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegrationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"defaultProject","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"environment","description":null,"args":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environments","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"evaluateTemplate","description":null,"args":[{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TemplateEvaluation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"githubIntegrations","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"evaluateTemplate","description":null,"args":[{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TemplateEvaluation","ofType":null},"isDeprecated":true,"deprecationReason":"Use + project instead."},{"name":"githubIntegrations","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns @@ -244,11 +302,13 @@ http_interactions: the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberships","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"state","description":"Filter + invitation list by state.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InvitationStateEnum","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberships","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"userType","description":"Optionally + filter by user type.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns @@ -256,21 +316,27 @@ http_interactions: order for parameters.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","ofType":null}}},"defaultValue":null},{"name":"searchTerm","description":"Search over parameter names.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"where","description":"Filter parameter list.","type":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null},"defaultValue":null},{"name":"keyNames","description":"List - of key names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + of key names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrganizationPolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projects","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ProjectConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionExpiresAt","description":null,"args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionId","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionPlanId","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionPlanName","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"names","description":"List - of template names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursor","description":null,"fields":[{"name":"cursor","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isCurrent","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageNumber","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursors","description":null,"fields":[{"name":"around","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageCursor","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"first","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"last","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previous","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageInfo","description":"Information + of template names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"vaultId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"OrganizationPolicy","description":null,"fields":[{"name":"createEnvironment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createIntegration","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createInvitation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createParameter","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Everything + will go through project in the near future."},{"name":"createProject","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createTemplate","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Everything + will go through the project in the near future."},{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursor","description":null,"fields":[{"name":"cursor","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isCurrent","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageNumber","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursors","description":null,"fields":[{"name":"around","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageCursor","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"first","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"last","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previous","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageInfo","description":"Information about pagination in a connection.","fields":[{"name":"endCursor","description":"When paginating forwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasNextPage","description":"When paginating forwards, are there more items?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasPreviousPage","description":"When paginating backwards, are there more items?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"startCursor","description":"When - paginating backwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Parameter","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValue","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValues","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"hasDynamicValue","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isSecret","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"keyName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + paginating backwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Parameter","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValue","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValues","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"hasDynamicValue","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isSecret","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"keyName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","description":null,"fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"keyName","description":null,"type":{"kind":"INPUT_OBJECT","name":"StringComparisonExp","ofType":null},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"INPUT_OBJECT","name":"IdComparisonExp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterConnection","description":"The + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","description":null,"fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"keyName","description":null,"type":{"kind":"INPUT_OBJECT","name":"StringComparisonExp","ofType":null},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"INPUT_OBJECT","name":"IdComparisonExp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterConnection","description":"The connection type for Parameter.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Parameter","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -279,7 +345,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","description":null,"fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null},{"name":"updatedAt","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterValue","description":null,"fields":[{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessToken","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastUsed","description":null,"args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"writeAccess","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessTokenConnection","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","description":null,"fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null},{"name":"updatedAt","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterValue","description":null,"fields":[{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessToken","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastUsed","description":null,"args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"writeAccess","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessTokenConnection","description":"The connection type for PersonalAccessToken.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PersonalAccessTokenEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -288,20 +354,51 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessTokenEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Query","description":null,"fields":[{"name":"node","description":"Fetches + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Project","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"defaultForOrganization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"evaluateTemplate","description":null,"args":[{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TemplateEvaluation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"exportParameters","description":null,"args":[{"name":"format","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ExportParametersFormatEnum","ofType":null}},"defaultValue":null},{"name":"options","description":null,"type":{"kind":"INPUT_OBJECT","name":"ExportParametersOptions","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ExportParameters","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"orderBy","description":"Sort + order for parameters.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","ofType":null}}},"defaultValue":null},{"name":"searchTerm","description":"Search + over parameter names.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"where","description":"Filter + parameter list.","type":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null},"defaultValue":null},{"name":"keyNames","description":"List + of key names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"names","description":"List + of template names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectConnection","description":"The + connection type for Project.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ProjectEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Query","description":null,"fields":[{"name":"node","description":"Fetches an object given its ID.","args":[{"name":"id","description":"ID of the object.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"INTERFACE","name":"Node","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"Fetches a list of objects given a list of IDs.","args":[{"name":"ids","description":"IDs - of the objects.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INTERFACE","name":"Node","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","description":"Autogenerated + of the objects.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INTERFACE","name":"Node","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RefreshServiceAccountApiTokenInput","description":"Autogenerated + input type of RefreshServiceAccountApiToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RefreshServiceAccountApiTokenPayload","description":"Autogenerated + return type of RefreshServiceAccountApiToken","fields":[{"name":"apiToken","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"serviceAccount","description":null,"args":[],"type":{"kind":"OBJECT","name":"ServiceAccount","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","description":"Autogenerated input type of RegeneratePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RegeneratePersonalAccessTokenPayload","description":"Autogenerated return type of RegeneratePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ResendInvitationInput","description":"Autogenerated + input type of ResendInvitation","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ResendInvitationPayload","description":"Autogenerated + return type of ResendInvitation","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"invitation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Invitation","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","description":"Autogenerated input type of ResetOrganizationData","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ResetOrganizationDataPayload","description":"Autogenerated return type of ResetOrganizationData","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SnapshotStatusEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"REQUESTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PROCESSING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AVAILABLE","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"String","description":"Represents + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ServiceAccount","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SnapshotStatusEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"REQUESTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PROCESSING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AVAILABLE","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"String","description":"Represents textual data as UTF-8 character sequences. This type is most often used by - GraphQL to represent free-form human-readable text.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"StringComparisonExp","description":null,"fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Template","description":null,"fields":[{"name":"body","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"evaluated","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TemplateConnection","description":"The + GraphQL to represent free-form human-readable text.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"StringComparisonExp","description":null,"fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Template","description":null,"fields":[{"name":"body","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"evaluated","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":true,"deprecationReason":"Use + project instead."},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TemplateConnection","description":"The connection type for Template.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Template","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -326,7 +423,11 @@ http_interactions: input type of UpdateMembership","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateMembershipPayload","description":"Autogenerated return type of UpdateMembership","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"membership","description":null,"args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"membership","description":null,"args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateOrganizationInput","description":"Autogenerated + input type of UpdateOrganization","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateOrganizationPayload","description":"Autogenerated + return type of UpdateOrganization","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","description":"Autogenerated input type of UpdateParameter","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"integrationFileId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"integrationFileFqn","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"jmesPath","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateParameterPayload","description":"Autogenerated return type of UpdateParameter","fields":[{"name":"clientMutationId","description":"A @@ -334,12 +435,16 @@ http_interactions: input type of UpdatePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"writeAccess","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdatePersonalAccessTokenPayload","description":"Autogenerated return type of UpdatePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateProjectInput","description":"Autogenerated + input type of UpdateProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateProjectPayload","description":"Autogenerated + return type of UpdateProject","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","description":"Autogenerated input type of UpdateTemplate","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"body","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateTemplatePayload","description":"Autogenerated return type of UpdateTemplate","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpsertParameterInput","description":"Autogenerated - input type of UpsertParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + input type of UpsertParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpsertParameterPayload","description":"Autogenerated return type of UpsertParameter","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserError","description":"A @@ -358,7 +463,7 @@ http_interactions: validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL''s execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives - provide this by describing additional information to the executor.","fields":[{"name":"args","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locations","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__DirectiveLocation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"onField","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use + provide this by describing additional information to the executor.","fields":[{"name":"args","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locations","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__DirectiveLocation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"onField","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."},{"name":"onFragment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."},{"name":"onOperation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__DirectiveLocation","description":"A @@ -386,11 +491,11 @@ http_interactions: for a string or numeric value. However an Enum value is returned in a JSON response as a string.","fields":[{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Field","description":"Object and Interface types are described by a list of Fields, each of which has a - name, potentially a list of arguments, and a return type.","fields":[{"name":"args","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__InputValue","description":"Arguments + name, potentially a list of arguments, and a return type.","fields":[{"name":"args","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__InputValue","description":"Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.","fields":[{"name":"defaultValue","description":"A GraphQL-formatted - string representing the default value for this input value.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Schema","description":"A + string representing the default value for this input value.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Schema","description":"A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.","fields":[{"name":"directives","description":"A @@ -407,7 +512,7 @@ http_interactions: types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at - runtime. List and NonNull types compose other types.","fields":[{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"enumValues","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__EnumValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"fields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Field","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"inputFields","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"interfaces","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__TypeKind","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"ofType","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"possibleTypes","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__TypeKind","description":"An + runtime. List and NonNull types compose other types.","fields":[{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"enumValues","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__EnumValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"fields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Field","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"inputFields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"interfaces","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__TypeKind","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"ofType","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"possibleTypes","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__TypeKind","description":"An enum describing what kind of type a given `__Type` is.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"SCALAR","description":"Indicates this type is a scalar.","isDeprecated":false,"deprecationReason":null},{"name":"OBJECT","description":"Indicates this type is an object. `fields` and `interfaces` are valid fields.","isDeprecated":false,"deprecationReason":null},{"name":"INTERFACE","description":"Indicates @@ -422,26 +527,26 @@ http_interactions: when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"skip","description":"Directs the executor to skip this field or fragment when the `if` argument is true.","locations":["FIELD","FRAGMENT_SPREAD","INLINE_FRAGMENT"],"args":[{"name":"if","description":"Skipped when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"deprecated","description":"Marks - an element of a GraphQL schema as no longer supported.","locations":["FIELD_DEFINITION","ENUM_VALUE"],"args":[{"name":"reason","description":"Explains + an element of a GraphQL schema as no longer supported.","locations":["FIELD_DEFINITION","ENUM_VALUE","ARGUMENT_DEFINITION","INPUT_FIELD_DEFINITION"],"args":[{"name":"reason","description":"Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted in [Markdown](https://daringfireball.net/projects/markdown/).","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"\"No longer supported\""}]}]}}}' - recorded_at: Wed, 17 Feb 2021 15:58:12 GMT + recorded_at: Tue, 27 Apr 2021 14:10:42 GMT - request: method: post uri: https://api.cloudtruth.com/graphql body: encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_85980($organizationId: + string: '{"query":"query GraphQL__Client__OperationDefinition_94040($organizationId: ID) {\n viewer {\n organization(id: $organizationId) {\n environments - {\n nodes {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_85980"}' + {\n nodes {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_94040"}' headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - application/json User-Agent: - - kubetruth/0.2.0 + - kubetruth/0.3.0 Content-Type: - application/json Authorization: @@ -452,7 +557,7 @@ http_interactions: message: OK headers: Date: - - Wed, 17 Feb 2021 15:58:13 GMT + - Tue, 27 Apr 2021 14:10:49 GMT Content-Type: - application/json; charset=utf-8 Transfer-Encoding: @@ -471,18 +576,18 @@ http_interactions: - none Referrer-Policy: - strict-origin-when-cross-origin + Vary: + - Accept, Origin Etag: - - W/"65ef7ec24337fc3df9a19032eaf15852" + - W/"4216eb2052c7088952da5a9791e740cd" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - c80250f8-e95c-4c2d-919f-a88ea415e9c7 + - 3c01c333-4b2e-4603-9f21-943fb2a4c89a X-Runtime: - - '0.024092' - Vary: - - Origin + - '0.029574' body: encoding: UTF-8 - string: '{"data":{"viewer":{"organization":{"environments":{"nodes":[{"id":"RW52aXJvbm1lbnQtZjk3MDI1NGEtNGQ0NS00YTA1LWJiYjctOTRjZTdhOGRmODky","name":"default"},{"id":"RW52aXJvbm1lbnQtOGRmMTVjMjYtN2FhZi00ODE5LWJlNzYtMTVmMzU2YzQ5YTg1","name":"production"},{"id":"RW52aXJvbm1lbnQtNmI5M2NlMWEtMTVkMS00MzRiLTg1NTAtODhjZDZhY2ZjYzU4","name":"development"},{"id":"RW52aXJvbm1lbnQtY2EyMDA0YzctZjQ3Mi00MzFlLWIyODgtNzg0NmYzMTBmMGZj","name":"ops"},{"id":"RW52aXJvbm1lbnQtMzY4MWRkMjctZDY2YS00NjdlLWI1NzMtYmI2YzU0ZmFjZDM1","name":"staging"},{"id":"RW52aXJvbm1lbnQtZWE3MzBjYmMtYzg1Zi00M2M1LTlkNjgtY2Q5NTlmMmNhYjQ2","name":"Dev1"}]}}}}}' - recorded_at: Wed, 17 Feb 2021 15:58:12 GMT + string: '{"data":{"viewer":{"organization":{"environments":{"nodes":[{"id":"RW52aXJvbm1lbnQtZjk3MDI1NGEtNGQ0NS00YTA1LWJiYjctOTRjZTdhOGRmODky","name":"default"},{"id":"RW52aXJvbm1lbnQtOGRmMTVjMjYtN2FhZi00ODE5LWJlNzYtMTVmMzU2YzQ5YTg1","name":"production"},{"id":"RW52aXJvbm1lbnQtNmI5M2NlMWEtMTVkMS00MzRiLTg1NTAtODhjZDZhY2ZjYzU4","name":"development"},{"id":"RW52aXJvbm1lbnQtY2EyMDA0YzctZjQ3Mi00MzFlLWIyODgtNzg0NmYzMTBmMGZj","name":"ops"},{"id":"RW52aXJvbm1lbnQtMzY4MWRkMjctZDY2YS00NjdlLWI1NzMtYmI2YzU0ZmFjZDM1","name":"staging"},{"id":"RW52aXJvbm1lbnQtZDE4NGQ1ODctYjA2Yi00OWU2LThhMGItNjU1YTM2NDQwYjRj","name":"dev-matt"}]}}}}}' + recorded_at: Tue, 27 Apr 2021 14:10:43 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/CtApi/_environments/uses_organization_to_get_environments.yml b/spec/fixtures/vcr/CtApi/_environments/uses_organization_to_get_environments.yml index 487f9f6..fae9c3a 100644 --- a/spec/fixtures/vcr/CtApi/_environments/uses_organization_to_get_environments.yml +++ b/spec/fixtures/vcr/CtApi/_environments/uses_organization_to_get_environments.yml @@ -25,7 +25,7 @@ http_interactions: Accept: - application/json User-Agent: - - kubetruth/0.2.0 + - kubetruth/0.3.0 Content-Type: - application/json Authorization: @@ -36,7 +36,7 @@ http_interactions: message: OK headers: Date: - - Wed, 17 Feb 2021 15:58:14 GMT + - Tue, 27 Apr 2021 14:10:51 GMT Content-Type: - application/json; charset=utf-8 Transfer-Encoding: @@ -55,19 +55,19 @@ http_interactions: - none Referrer-Policy: - strict-origin-when-cross-origin + Vary: + - Accept, Origin Etag: - - W/"9fb738763ccd7d76282a12d15db153be" + - W/"75ec2b3ba6f57bc364b5a38b5e8f606b" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - 7db9f953-1862-4ff9-9726-2eac85ee3392 + - d4d18bd6-c4df-47d9-9cdb-9e5134210c08 X-Runtime: - - '0.608743' - Vary: - - Origin + - '1.475383' body: encoding: UTF-8 - string: '{"data":{"__schema":{"queryType":{"name":"Query"},"mutationType":{"name":"Mutation"},"subscriptionType":null,"types":[{"kind":"OBJECT","name":"AuditLogSnapshot","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fileUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SnapshotStatusEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditLogSnapshotConnection","description":"The + string: '{"data":{"__schema":{"queryType":{"name":"Query"},"mutationType":{"name":"Mutation"},"subscriptionType":null,"types":[{"kind":"OBJECT","name":"AuditLogSnapshot","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fileUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SnapshotStatusEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditLogSnapshotConnection","description":"The connection type for AuditLogSnapshot.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AuditLogSnapshotEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -76,7 +76,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditLogSnapshotEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegration","description":null,"fields":[{"name":"accountId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"enabledServices","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsIntegrationEnum","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"externalId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"roleName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegrationConnection","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegration","description":null,"fields":[{"name":"accountId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"enabledServices","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsIntegrationEnum","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"externalId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"roleName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegrationConnection","description":"The connection type for AwsIntegration.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegrationEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegration","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -85,7 +85,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegrationEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AwsIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AwsIntegrationEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"S3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SSM","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"Boolean","description":"Represents + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AwsIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AwsIntegrationEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"S3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SSM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SECRETS_MANAGER","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INTERFACE","name":"BasePolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"InvitationPolicy","ofType":null},{"kind":"OBJECT","name":"NodePolicy","ofType":null},{"kind":"OBJECT","name":"OrganizationPolicy","ofType":null}]},{"kind":"SCALAR","name":"Boolean","description":"Represents `true` or `false` values.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateAuditLogSnapshotInput","description":"Autogenerated input type of CreateAuditLogSnapshot","fields":null,"inputFields":[{"name":"organizationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateAuditLogSnapshotPayload","description":"Autogenerated @@ -107,19 +107,27 @@ http_interactions: unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateInvitationPayload","description":"Autogenerated return type of CreateInvitation","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"invitation","description":null,"args":[],"type":{"kind":"OBJECT","name":"Invitation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateOrganizationInput","description":"Autogenerated - input type of CreateOrganization","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + input type of CreateOrganization","fields":null,"inputFields":[{"name":"eaorgid","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateOrganizationPayload","description":"Autogenerated return type of CreateOrganization","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateParameterInput","description":"Autogenerated - input type of CreateParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + input type of CreateParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateParameterPayload","description":"Autogenerated return type of CreateParameter","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreatePersonalAccessTokenInput","description":"Autogenerated input type of CreatePersonalAccessToken","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"writeAccess","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreatePersonalAccessTokenPayload","description":"Autogenerated return type of CreatePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","description":"Autogenerated - input type of CreateTemplate","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateProjectInput","description":"Autogenerated + input type of CreateProject","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateProjectPayload","description":"Autogenerated + return type of CreateProject","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateServiceAccountInput","description":"Autogenerated + input type of CreateServiceAccount","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateServiceAccountPayload","description":"Autogenerated + return type of CreateServiceAccount","fields":[{"name":"apiToken","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"serviceAccount","description":null,"args":[],"type":{"kind":"OBJECT","name":"ServiceAccount","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","description":"Autogenerated + input type of CreateTemplate","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateTemplatePayload","description":"Autogenerated return type of CreateTemplate","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteAllPersonalAccessTokensInput","description":"Autogenerated @@ -142,7 +150,11 @@ http_interactions: input type of DeleteInvitation","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteInvitationPayload","description":"Autogenerated return type of DeleteInvitation","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedInvitationId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedInvitationId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteMembershipInput","description":"Autogenerated + input type of DeleteMembership","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteMembershipPayload","description":"Autogenerated + return type of DeleteMembership","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedMembershipId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","description":"Autogenerated input type of DeleteParameter","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteParameterPayload","description":"Autogenerated return type of DeleteParameter","fields":[{"name":"clientMutationId","description":"A @@ -150,7 +162,15 @@ http_interactions: input type of DeletePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeletePersonalAccessTokenPayload","description":"Autogenerated return type of DeletePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedPersonalAccessTokenId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedPersonalAccessTokenId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteProjectInput","description":"Autogenerated + input type of DeleteProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteProjectPayload","description":"Autogenerated + return type of DeleteProject","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteServiceAccountInput","description":"Autogenerated + input type of DeleteServiceAccount","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteServiceAccountPayload","description":"Autogenerated + return type of DeleteServiceAccount","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedServiceAccountId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","description":"Autogenerated input type of DeleteTemplate","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteTemplatePayload","description":"Autogenerated return type of DeleteTemplate","fields":[{"name":"clientMutationId","description":"A @@ -158,7 +178,7 @@ http_interactions: the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[{"name":"parameterId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterValue","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentConnection","description":"The + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[{"name":"parameterId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterValue","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentConnection","description":"The connection type for Environment.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -167,11 +187,11 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentValue","description":null,"fields":[{"name":"environment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integrationFile","description":null,"args":[],"type":{"kind":"OBJECT","name":"IntegrationFile","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"jmesPath","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EnvironmentValueTypeEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"EnvironmentValueTypeEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"STATIC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DYNAMIC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","description":"Autogenerated + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentValue","description":null,"fields":[{"name":"environment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integrationFile","description":null,"args":[],"type":{"kind":"OBJECT","name":"IntegrationFile","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"jmesPath","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EnvironmentValueTypeEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"EnvironmentValueTypeEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"STATIC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DYNAMIC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ExportParameters","description":null,"fields":[{"name":"evaluated","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ExportParametersFormatEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"DOCKER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DOTENV","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SHELL","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ExportParametersOptions","description":null,"fields":null,"inputFields":[{"name":"secrets","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"export","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"startsWith","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"endsWith","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"contains","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","description":"Autogenerated input type of FakeOrganizationData","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FakeOrganizationDataPayload","description":"Autogenerated return type of FakeOrganizationData","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegration","description":null,"fields":[{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"availableRepositoryCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"installationUrl","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegrationConnection","description":"The + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegration","description":null,"fields":[{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"availableRepositoryCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"installationUrl","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegrationConnection","description":"The connection type for GithubIntegration.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"GithubIntegrationEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"GithubIntegration","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -180,7 +200,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegrationEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"GithubIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"ID","description":"Represents + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"GithubIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"HasPolicy","description":null,"fields":[{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"BasePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"ServiceAccount","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null}]},{"kind":"SCALAR","name":"ID","description":"Represents a unique identifier that is Base64 obfuscated. It is often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected @@ -201,7 +221,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"IntegrationTreeEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Invitation","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberEmail","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberRole","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InvitationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationConnection","description":"The + item at the end of the edge.","args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Invitation","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberEmail","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberRole","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationPolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InvitationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationConnection","description":"The connection type for Invitation.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Invitation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -210,7 +230,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Invitation","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"InvitationStateEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ACCEPTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DECLINED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PENDING","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Membership","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pictureUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MembershipConnection","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Invitation","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationPolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resend","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"InvitationStateEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ACCEPTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DECLINED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PENDING","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Membership","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pictureUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MembershipConnection","description":"The connection type for Membership.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Membership","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -219,8 +239,45 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MembershipEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"MembershipRoleEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ADMIN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CONTRIBUTOR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VIEWER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"OWNER","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Mutation","description":null,"fields":[{"name":"createAuditLogSnapshot","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAuditLogSnapshotInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAuditLogSnapshotPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createAwsIntegration","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createEnvironment","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createGithubSetupToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateGithubSetupTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateGithubSetupTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createInvitation","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createOrganization","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrganizationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateOrganizationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createParameter","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createPersonalAccessToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createTemplate","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAllPersonalAccessTokens","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAllPersonalAccessTokensInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAllPersonalAccessTokensPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAwsIntegration","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteEnvironment","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteGithubIntegration","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteGithubIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteGithubIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteInvitation","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteParameter","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deletePersonalAccessToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeletePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeletePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteTemplate","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fakeOrganizationData","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"FakeOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"regeneratePersonalAccessToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RegeneratePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resetOrganizationData","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResetOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateAwsIntegration","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateEnvironment","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateInvitation","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateMembership","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateMembershipInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateMembershipPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateParameter","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatePersonalAccessToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateTemplate","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"upsertParameter","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpsertParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpsertParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"Node","description":"An - object with an ID.","fields":[{"name":"id","description":"ID of the object.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"IntegrationFile","ofType":null},{"kind":"OBJECT","name":"IntegrationFileTree","ofType":null},{"kind":"OBJECT","name":"IntegrationServiceTree","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null},{"kind":"OBJECT","name":"Viewer","ofType":null}]},{"kind":"ENUM","name":"OrderByEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DESC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Organization","description":null,"fields":[{"name":"auditLogSnapshots","description":null,"args":[{"name":"after","description":"Returns + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"MembershipRoleEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ADMIN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CONTRIBUTOR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VIEWER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"OWNER","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Mutation","description":null,"fields":[{"name":"createAuditLogSnapshot","description":null,"args":[{"name":"input","description":"Parameters + for CreateAuditLogSnapshot","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAuditLogSnapshotInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAuditLogSnapshotPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters + for CreateAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createEnvironment","description":null,"args":[{"name":"input","description":"Parameters + for CreateEnvironment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createGithubSetupToken","description":null,"args":[{"name":"input","description":"Parameters + for CreateGithubSetupToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateGithubSetupTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateGithubSetupTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createInvitation","description":null,"args":[{"name":"input","description":"Parameters + for CreateInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createOrganization","description":null,"args":[{"name":"input","description":"Parameters + for CreateOrganization","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrganizationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateOrganizationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createParameter","description":null,"args":[{"name":"input","description":"Parameters + for CreateParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createPersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for CreatePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createProject","description":null,"args":[{"name":"input","description":"Parameters + for CreateProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createServiceAccount","description":null,"args":[{"name":"input","description":"Parameters + for CreateServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateServiceAccountPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createTemplate","description":null,"args":[{"name":"input","description":"Parameters + for CreateTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAllPersonalAccessTokens","description":null,"args":[{"name":"input","description":"Parameters + for DeleteAllPersonalAccessTokens","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAllPersonalAccessTokensInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAllPersonalAccessTokensPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters + for DeleteAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteEnvironment","description":null,"args":[{"name":"input","description":"Parameters + for DeleteEnvironment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteGithubIntegration","description":null,"args":[{"name":"input","description":"Parameters + for DeleteGithubIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteGithubIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteGithubIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteInvitation","description":null,"args":[{"name":"input","description":"Parameters + for DeleteInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteMembership","description":null,"args":[{"name":"input","description":"Parameters + for DeleteMembership","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteMembershipInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteMembershipPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteParameter","description":null,"args":[{"name":"input","description":"Parameters + for DeleteParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deletePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for DeletePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeletePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeletePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteProject","description":null,"args":[{"name":"input","description":"Parameters + for DeleteProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteServiceAccount","description":null,"args":[{"name":"input","description":"Parameters + for DeleteServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteServiceAccountPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteTemplate","description":null,"args":[{"name":"input","description":"Parameters + for DeleteTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fakeOrganizationData","description":null,"args":[{"name":"input","description":"Parameters + for FakeOrganizationData","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"FakeOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refreshServiceAccountApiToken","description":null,"args":[{"name":"input","description":"Parameters + for RefreshServiceAccountApiToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RefreshServiceAccountApiTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RefreshServiceAccountApiTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"regeneratePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for RegeneratePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RegeneratePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resendInvitation","description":null,"args":[{"name":"input","description":"Parameters + for ResendInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResendInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResendInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resetOrganizationData","description":null,"args":[{"name":"input","description":"Parameters + for ResetOrganizationData","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResetOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters + for UpdateAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateEnvironment","description":null,"args":[{"name":"input","description":"Parameters + for UpdateEnvironment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateInvitation","description":null,"args":[{"name":"input","description":"Parameters + for UpdateInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateMembership","description":null,"args":[{"name":"input","description":"Parameters + for UpdateMembership","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateMembershipInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateMembershipPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateOrganization","description":null,"args":[{"name":"input","description":"Parameters + for UpdateOrganization","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateOrganizationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateOrganizationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateParameter","description":null,"args":[{"name":"input","description":"Parameters + for UpdateParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for UpdatePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateProject","description":null,"args":[{"name":"input","description":"Parameters + for UpdateProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateTemplate","description":null,"args":[{"name":"input","description":"Parameters + for UpdateTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"upsertParameter","description":null,"args":[{"name":"input","description":"Parameters + for UpsertParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpsertParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpsertParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"Node","description":"An + object with an ID.","fields":[{"name":"id","description":"ID of the object.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"IntegrationFile","ofType":null},{"kind":"OBJECT","name":"IntegrationFileTree","ofType":null},{"kind":"OBJECT","name":"IntegrationServiceTree","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"ServiceAccount","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null},{"kind":"OBJECT","name":"Viewer","ofType":null}]},{"kind":"OBJECT","name":"NodePolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"OrderByEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DESC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Organization","description":null,"fields":[{"name":"auditLogSnapshots","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns @@ -228,11 +285,12 @@ http_interactions: the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegrationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"environment","description":null,"args":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environments","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegrationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"defaultProject","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"environment","description":null,"args":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environments","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"evaluateTemplate","description":null,"args":[{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TemplateEvaluation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"githubIntegrations","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"evaluateTemplate","description":null,"args":[{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TemplateEvaluation","ofType":null},"isDeprecated":true,"deprecationReason":"Use + project instead."},{"name":"githubIntegrations","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns @@ -244,11 +302,13 @@ http_interactions: the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberships","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"state","description":"Filter + invitation list by state.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InvitationStateEnum","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberships","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"userType","description":"Optionally + filter by user type.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns @@ -256,21 +316,27 @@ http_interactions: order for parameters.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","ofType":null}}},"defaultValue":null},{"name":"searchTerm","description":"Search over parameter names.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"where","description":"Filter parameter list.","type":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null},"defaultValue":null},{"name":"keyNames","description":"List - of key names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + of key names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrganizationPolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projects","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ProjectConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionExpiresAt","description":null,"args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionId","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionPlanId","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionPlanName","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"names","description":"List - of template names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursor","description":null,"fields":[{"name":"cursor","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isCurrent","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageNumber","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursors","description":null,"fields":[{"name":"around","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageCursor","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"first","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"last","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previous","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageInfo","description":"Information + of template names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"vaultId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"OrganizationPolicy","description":null,"fields":[{"name":"createEnvironment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createIntegration","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createInvitation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createParameter","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Everything + will go through project in the near future."},{"name":"createProject","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createTemplate","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Everything + will go through the project in the near future."},{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursor","description":null,"fields":[{"name":"cursor","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isCurrent","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageNumber","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursors","description":null,"fields":[{"name":"around","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageCursor","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"first","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"last","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previous","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageInfo","description":"Information about pagination in a connection.","fields":[{"name":"endCursor","description":"When paginating forwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasNextPage","description":"When paginating forwards, are there more items?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasPreviousPage","description":"When paginating backwards, are there more items?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"startCursor","description":"When - paginating backwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Parameter","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValue","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValues","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"hasDynamicValue","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isSecret","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"keyName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + paginating backwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Parameter","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValue","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValues","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"hasDynamicValue","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isSecret","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"keyName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","description":null,"fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"keyName","description":null,"type":{"kind":"INPUT_OBJECT","name":"StringComparisonExp","ofType":null},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"INPUT_OBJECT","name":"IdComparisonExp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterConnection","description":"The + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","description":null,"fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"keyName","description":null,"type":{"kind":"INPUT_OBJECT","name":"StringComparisonExp","ofType":null},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"INPUT_OBJECT","name":"IdComparisonExp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterConnection","description":"The connection type for Parameter.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Parameter","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -279,7 +345,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","description":null,"fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null},{"name":"updatedAt","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterValue","description":null,"fields":[{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessToken","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastUsed","description":null,"args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"writeAccess","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessTokenConnection","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","description":null,"fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null},{"name":"updatedAt","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterValue","description":null,"fields":[{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessToken","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastUsed","description":null,"args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"writeAccess","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessTokenConnection","description":"The connection type for PersonalAccessToken.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PersonalAccessTokenEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -288,20 +354,51 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessTokenEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Query","description":null,"fields":[{"name":"node","description":"Fetches + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Project","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"defaultForOrganization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"evaluateTemplate","description":null,"args":[{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TemplateEvaluation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"exportParameters","description":null,"args":[{"name":"format","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ExportParametersFormatEnum","ofType":null}},"defaultValue":null},{"name":"options","description":null,"type":{"kind":"INPUT_OBJECT","name":"ExportParametersOptions","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ExportParameters","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"orderBy","description":"Sort + order for parameters.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","ofType":null}}},"defaultValue":null},{"name":"searchTerm","description":"Search + over parameter names.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"where","description":"Filter + parameter list.","type":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null},"defaultValue":null},{"name":"keyNames","description":"List + of key names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"names","description":"List + of template names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectConnection","description":"The + connection type for Project.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ProjectEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Query","description":null,"fields":[{"name":"node","description":"Fetches an object given its ID.","args":[{"name":"id","description":"ID of the object.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"INTERFACE","name":"Node","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"Fetches a list of objects given a list of IDs.","args":[{"name":"ids","description":"IDs - of the objects.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INTERFACE","name":"Node","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","description":"Autogenerated + of the objects.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INTERFACE","name":"Node","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RefreshServiceAccountApiTokenInput","description":"Autogenerated + input type of RefreshServiceAccountApiToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RefreshServiceAccountApiTokenPayload","description":"Autogenerated + return type of RefreshServiceAccountApiToken","fields":[{"name":"apiToken","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"serviceAccount","description":null,"args":[],"type":{"kind":"OBJECT","name":"ServiceAccount","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","description":"Autogenerated input type of RegeneratePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RegeneratePersonalAccessTokenPayload","description":"Autogenerated return type of RegeneratePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ResendInvitationInput","description":"Autogenerated + input type of ResendInvitation","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ResendInvitationPayload","description":"Autogenerated + return type of ResendInvitation","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"invitation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Invitation","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","description":"Autogenerated input type of ResetOrganizationData","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ResetOrganizationDataPayload","description":"Autogenerated return type of ResetOrganizationData","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SnapshotStatusEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"REQUESTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PROCESSING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AVAILABLE","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"String","description":"Represents + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ServiceAccount","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SnapshotStatusEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"REQUESTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PROCESSING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AVAILABLE","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"String","description":"Represents textual data as UTF-8 character sequences. This type is most often used by - GraphQL to represent free-form human-readable text.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"StringComparisonExp","description":null,"fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Template","description":null,"fields":[{"name":"body","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"evaluated","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TemplateConnection","description":"The + GraphQL to represent free-form human-readable text.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"StringComparisonExp","description":null,"fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Template","description":null,"fields":[{"name":"body","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"evaluated","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":true,"deprecationReason":"Use + project instead."},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TemplateConnection","description":"The connection type for Template.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Template","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -326,7 +423,11 @@ http_interactions: input type of UpdateMembership","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateMembershipPayload","description":"Autogenerated return type of UpdateMembership","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"membership","description":null,"args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"membership","description":null,"args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateOrganizationInput","description":"Autogenerated + input type of UpdateOrganization","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateOrganizationPayload","description":"Autogenerated + return type of UpdateOrganization","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","description":"Autogenerated input type of UpdateParameter","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"integrationFileId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"integrationFileFqn","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"jmesPath","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateParameterPayload","description":"Autogenerated return type of UpdateParameter","fields":[{"name":"clientMutationId","description":"A @@ -334,12 +435,16 @@ http_interactions: input type of UpdatePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"writeAccess","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdatePersonalAccessTokenPayload","description":"Autogenerated return type of UpdatePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateProjectInput","description":"Autogenerated + input type of UpdateProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateProjectPayload","description":"Autogenerated + return type of UpdateProject","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","description":"Autogenerated input type of UpdateTemplate","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"body","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateTemplatePayload","description":"Autogenerated return type of UpdateTemplate","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpsertParameterInput","description":"Autogenerated - input type of UpsertParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + input type of UpsertParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpsertParameterPayload","description":"Autogenerated return type of UpsertParameter","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserError","description":"A @@ -358,7 +463,7 @@ http_interactions: validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL''s execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives - provide this by describing additional information to the executor.","fields":[{"name":"args","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locations","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__DirectiveLocation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"onField","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use + provide this by describing additional information to the executor.","fields":[{"name":"args","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locations","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__DirectiveLocation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"onField","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."},{"name":"onFragment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."},{"name":"onOperation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__DirectiveLocation","description":"A @@ -386,11 +491,11 @@ http_interactions: for a string or numeric value. However an Enum value is returned in a JSON response as a string.","fields":[{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Field","description":"Object and Interface types are described by a list of Fields, each of which has a - name, potentially a list of arguments, and a return type.","fields":[{"name":"args","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__InputValue","description":"Arguments + name, potentially a list of arguments, and a return type.","fields":[{"name":"args","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__InputValue","description":"Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.","fields":[{"name":"defaultValue","description":"A GraphQL-formatted - string representing the default value for this input value.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Schema","description":"A + string representing the default value for this input value.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Schema","description":"A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.","fields":[{"name":"directives","description":"A @@ -407,7 +512,7 @@ http_interactions: types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at - runtime. List and NonNull types compose other types.","fields":[{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"enumValues","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__EnumValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"fields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Field","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"inputFields","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"interfaces","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__TypeKind","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"ofType","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"possibleTypes","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__TypeKind","description":"An + runtime. List and NonNull types compose other types.","fields":[{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"enumValues","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__EnumValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"fields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Field","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"inputFields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"interfaces","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__TypeKind","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"ofType","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"possibleTypes","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__TypeKind","description":"An enum describing what kind of type a given `__Type` is.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"SCALAR","description":"Indicates this type is a scalar.","isDeprecated":false,"deprecationReason":null},{"name":"OBJECT","description":"Indicates this type is an object. `fields` and `interfaces` are valid fields.","isDeprecated":false,"deprecationReason":null},{"name":"INTERFACE","description":"Indicates @@ -422,25 +527,25 @@ http_interactions: when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"skip","description":"Directs the executor to skip this field or fragment when the `if` argument is true.","locations":["FIELD","FRAGMENT_SPREAD","INLINE_FRAGMENT"],"args":[{"name":"if","description":"Skipped when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"deprecated","description":"Marks - an element of a GraphQL schema as no longer supported.","locations":["FIELD_DEFINITION","ENUM_VALUE"],"args":[{"name":"reason","description":"Explains + an element of a GraphQL schema as no longer supported.","locations":["FIELD_DEFINITION","ENUM_VALUE","ARGUMENT_DEFINITION","INPUT_FIELD_DEFINITION"],"args":[{"name":"reason","description":"Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted in [Markdown](https://daringfireball.net/projects/markdown/).","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"\"No longer supported\""}]}]}}}' - recorded_at: Wed, 17 Feb 2021 15:58:13 GMT + recorded_at: Tue, 27 Apr 2021 14:10:45 GMT - request: method: post uri: https://api.cloudtruth.com/graphql body: encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_97520 {\n viewer - {\n memberships {\n nodes {\n organization {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_97520"}' + string: '{"query":"query GraphQL__Client__OperationDefinition_107700 {\n viewer + {\n memberships {\n nodes {\n organization {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_107700"}' headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - application/json User-Agent: - - kubetruth/0.2.0 + - kubetruth/0.3.0 Content-Type: - application/json Authorization: @@ -451,7 +556,7 @@ http_interactions: message: OK headers: Date: - - Wed, 17 Feb 2021 15:58:14 GMT + - Tue, 27 Apr 2021 14:10:51 GMT Content-Type: - application/json; charset=utf-8 Transfer-Encoding: @@ -470,35 +575,36 @@ http_interactions: - none Referrer-Policy: - strict-origin-when-cross-origin + Vary: + - Accept, Origin Etag: - - W/"dd6fbd595565bb739ed3c235c3e1d53c" + - W/"3948b709f7ddb5be738bb5ecc5683449" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - 7f4aaff4-23a3-4c1b-aa05-9d0d67df4f26 + - 88039b40-c375-4059-b245-94bc4b71eef3 X-Runtime: - - '0.016099' - Vary: - - Origin + - '0.036837' body: encoding: UTF-8 - string: '{"data":{"viewer":{"memberships":{"nodes":[{"organization":{"id":"T3JnYW5pemF0aW9uLTE1YzgxYjViLWVlM2ItNDlmNS1iNGVkLTIyYTc0NDI3N2ZiMw==","name":"Personal"}}]}}}}' - recorded_at: Wed, 17 Feb 2021 15:58:13 GMT + string: '{"data":{"viewer":{"memberships":{"nodes":[{"organization":{"id":"T3JnYW5pemF0aW9uLTE1YzgxYjViLWVlM2ItNDlmNS1iNGVkLTIyYTc0NDI3N2ZiMw==","name":"CloudTruth + Demo"}}]}}}}' + recorded_at: Tue, 27 Apr 2021 14:10:45 GMT - request: method: post uri: https://api.cloudtruth.com/graphql body: encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_97560($organizationId: + string: '{"query":"query GraphQL__Client__OperationDefinition_107740($organizationId: ID) {\n viewer {\n organization(id: $organizationId) {\n environments - {\n nodes {\n id\n name\n }\n }\n }\n }\n}","variables":{"organizationId":"T3JnYW5pemF0aW9uLTE1YzgxYjViLWVlM2ItNDlmNS1iNGVkLTIyYTc0NDI3N2ZiMw=="},"operationName":"GraphQL__Client__OperationDefinition_97560"}' + {\n nodes {\n id\n name\n }\n }\n }\n }\n}","variables":{"organizationId":"T3JnYW5pemF0aW9uLTE1YzgxYjViLWVlM2ItNDlmNS1iNGVkLTIyYTc0NDI3N2ZiMw=="},"operationName":"GraphQL__Client__OperationDefinition_107740"}' headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - application/json User-Agent: - - kubetruth/0.2.0 + - kubetruth/0.3.0 Content-Type: - application/json Authorization: @@ -509,7 +615,7 @@ http_interactions: message: OK headers: Date: - - Wed, 17 Feb 2021 15:58:14 GMT + - Tue, 27 Apr 2021 14:10:51 GMT Content-Type: - application/json; charset=utf-8 Transfer-Encoding: @@ -528,18 +634,18 @@ http_interactions: - none Referrer-Policy: - strict-origin-when-cross-origin + Vary: + - Accept, Origin Etag: - - W/"65ef7ec24337fc3df9a19032eaf15852" + - W/"4216eb2052c7088952da5a9791e740cd" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - b8859d6c-443a-45e3-bf3a-3e8e2ca4ecea + - aaf192c4-4169-4e6e-acaa-1223c54fc45c X-Runtime: - - '0.019546' - Vary: - - Origin + - '0.051351' body: encoding: UTF-8 - string: '{"data":{"viewer":{"organization":{"environments":{"nodes":[{"id":"RW52aXJvbm1lbnQtZjk3MDI1NGEtNGQ0NS00YTA1LWJiYjctOTRjZTdhOGRmODky","name":"default"},{"id":"RW52aXJvbm1lbnQtOGRmMTVjMjYtN2FhZi00ODE5LWJlNzYtMTVmMzU2YzQ5YTg1","name":"production"},{"id":"RW52aXJvbm1lbnQtNmI5M2NlMWEtMTVkMS00MzRiLTg1NTAtODhjZDZhY2ZjYzU4","name":"development"},{"id":"RW52aXJvbm1lbnQtY2EyMDA0YzctZjQ3Mi00MzFlLWIyODgtNzg0NmYzMTBmMGZj","name":"ops"},{"id":"RW52aXJvbm1lbnQtMzY4MWRkMjctZDY2YS00NjdlLWI1NzMtYmI2YzU0ZmFjZDM1","name":"staging"},{"id":"RW52aXJvbm1lbnQtZWE3MzBjYmMtYzg1Zi00M2M1LTlkNjgtY2Q5NTlmMmNhYjQ2","name":"Dev1"}]}}}}}' - recorded_at: Wed, 17 Feb 2021 15:58:13 GMT + string: '{"data":{"viewer":{"organization":{"environments":{"nodes":[{"id":"RW52aXJvbm1lbnQtZjk3MDI1NGEtNGQ0NS00YTA1LWJiYjctOTRjZTdhOGRmODky","name":"default"},{"id":"RW52aXJvbm1lbnQtOGRmMTVjMjYtN2FhZi00ODE5LWJlNzYtMTVmMzU2YzQ5YTg1","name":"production"},{"id":"RW52aXJvbm1lbnQtNmI5M2NlMWEtMTVkMS00MzRiLTg1NTAtODhjZDZhY2ZjYzU4","name":"development"},{"id":"RW52aXJvbm1lbnQtY2EyMDA0YzctZjQ3Mi00MzFlLWIyODgtNzg0NmYzMTBmMGZj","name":"ops"},{"id":"RW52aXJvbm1lbnQtMzY4MWRkMjctZDY2YS00NjdlLWI1NzMtYmI2YzU0ZmFjZDM1","name":"staging"},{"id":"RW52aXJvbm1lbnQtZDE4NGQ1ODctYjA2Yi00OWU2LThhMGItNjU1YTM2NDQwYjRj","name":"dev-matt"}]}}}}}' + recorded_at: Tue, 27 Apr 2021 14:10:45 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/CtApi/_organizations/gets_organizations.yml b/spec/fixtures/vcr/CtApi/_organizations/gets_organizations.yml index c0a8e01..32eeff5 100644 --- a/spec/fixtures/vcr/CtApi/_organizations/gets_organizations.yml +++ b/spec/fixtures/vcr/CtApi/_organizations/gets_organizations.yml @@ -25,7 +25,7 @@ http_interactions: Accept: - application/json User-Agent: - - kubetruth/0.2.0 + - kubetruth/0.3.0 Content-Type: - application/json Authorization: @@ -36,7 +36,7 @@ http_interactions: message: OK headers: Date: - - Wed, 17 Feb 2021 15:58:11 GMT + - Tue, 27 Apr 2021 14:10:46 GMT Content-Type: - application/json; charset=utf-8 Transfer-Encoding: @@ -55,19 +55,19 @@ http_interactions: - none Referrer-Policy: - strict-origin-when-cross-origin + Vary: + - Accept, Origin Etag: - - W/"9fb738763ccd7d76282a12d15db153be" + - W/"75ec2b3ba6f57bc364b5a38b5e8f606b" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - f7088d3a-bb25-42ce-ab68-0d0bc4d8d977 + - df3c0a0b-c6d7-4dab-a2ae-3f6efdf8ca8b X-Runtime: - - '0.646941' - Vary: - - Origin + - '1.437171' body: encoding: UTF-8 - string: '{"data":{"__schema":{"queryType":{"name":"Query"},"mutationType":{"name":"Mutation"},"subscriptionType":null,"types":[{"kind":"OBJECT","name":"AuditLogSnapshot","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fileUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SnapshotStatusEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditLogSnapshotConnection","description":"The + string: '{"data":{"__schema":{"queryType":{"name":"Query"},"mutationType":{"name":"Mutation"},"subscriptionType":null,"types":[{"kind":"OBJECT","name":"AuditLogSnapshot","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fileUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SnapshotStatusEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditLogSnapshotConnection","description":"The connection type for AuditLogSnapshot.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AuditLogSnapshotEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -76,7 +76,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditLogSnapshotEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegration","description":null,"fields":[{"name":"accountId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"enabledServices","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsIntegrationEnum","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"externalId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"roleName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegrationConnection","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegration","description":null,"fields":[{"name":"accountId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"enabledServices","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsIntegrationEnum","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"externalId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"roleName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegrationConnection","description":"The connection type for AwsIntegration.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegrationEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegration","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -85,7 +85,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegrationEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AwsIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AwsIntegrationEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"S3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SSM","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"Boolean","description":"Represents + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AwsIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AwsIntegrationEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"S3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SSM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SECRETS_MANAGER","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INTERFACE","name":"BasePolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"InvitationPolicy","ofType":null},{"kind":"OBJECT","name":"NodePolicy","ofType":null},{"kind":"OBJECT","name":"OrganizationPolicy","ofType":null}]},{"kind":"SCALAR","name":"Boolean","description":"Represents `true` or `false` values.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateAuditLogSnapshotInput","description":"Autogenerated input type of CreateAuditLogSnapshot","fields":null,"inputFields":[{"name":"organizationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateAuditLogSnapshotPayload","description":"Autogenerated @@ -107,19 +107,27 @@ http_interactions: unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateInvitationPayload","description":"Autogenerated return type of CreateInvitation","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"invitation","description":null,"args":[],"type":{"kind":"OBJECT","name":"Invitation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateOrganizationInput","description":"Autogenerated - input type of CreateOrganization","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + input type of CreateOrganization","fields":null,"inputFields":[{"name":"eaorgid","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateOrganizationPayload","description":"Autogenerated return type of CreateOrganization","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateParameterInput","description":"Autogenerated - input type of CreateParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + input type of CreateParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateParameterPayload","description":"Autogenerated return type of CreateParameter","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreatePersonalAccessTokenInput","description":"Autogenerated input type of CreatePersonalAccessToken","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"writeAccess","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreatePersonalAccessTokenPayload","description":"Autogenerated return type of CreatePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","description":"Autogenerated - input type of CreateTemplate","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateProjectInput","description":"Autogenerated + input type of CreateProject","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateProjectPayload","description":"Autogenerated + return type of CreateProject","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateServiceAccountInput","description":"Autogenerated + input type of CreateServiceAccount","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateServiceAccountPayload","description":"Autogenerated + return type of CreateServiceAccount","fields":[{"name":"apiToken","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"serviceAccount","description":null,"args":[],"type":{"kind":"OBJECT","name":"ServiceAccount","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","description":"Autogenerated + input type of CreateTemplate","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateTemplatePayload","description":"Autogenerated return type of CreateTemplate","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteAllPersonalAccessTokensInput","description":"Autogenerated @@ -142,7 +150,11 @@ http_interactions: input type of DeleteInvitation","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteInvitationPayload","description":"Autogenerated return type of DeleteInvitation","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedInvitationId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedInvitationId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteMembershipInput","description":"Autogenerated + input type of DeleteMembership","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteMembershipPayload","description":"Autogenerated + return type of DeleteMembership","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedMembershipId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","description":"Autogenerated input type of DeleteParameter","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteParameterPayload","description":"Autogenerated return type of DeleteParameter","fields":[{"name":"clientMutationId","description":"A @@ -150,7 +162,15 @@ http_interactions: input type of DeletePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeletePersonalAccessTokenPayload","description":"Autogenerated return type of DeletePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedPersonalAccessTokenId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedPersonalAccessTokenId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteProjectInput","description":"Autogenerated + input type of DeleteProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteProjectPayload","description":"Autogenerated + return type of DeleteProject","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteServiceAccountInput","description":"Autogenerated + input type of DeleteServiceAccount","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteServiceAccountPayload","description":"Autogenerated + return type of DeleteServiceAccount","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedServiceAccountId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","description":"Autogenerated input type of DeleteTemplate","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteTemplatePayload","description":"Autogenerated return type of DeleteTemplate","fields":[{"name":"clientMutationId","description":"A @@ -158,7 +178,7 @@ http_interactions: the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[{"name":"parameterId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterValue","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentConnection","description":"The + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[{"name":"parameterId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterValue","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentConnection","description":"The connection type for Environment.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -167,11 +187,11 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentValue","description":null,"fields":[{"name":"environment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integrationFile","description":null,"args":[],"type":{"kind":"OBJECT","name":"IntegrationFile","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"jmesPath","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EnvironmentValueTypeEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"EnvironmentValueTypeEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"STATIC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DYNAMIC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","description":"Autogenerated + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentValue","description":null,"fields":[{"name":"environment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integrationFile","description":null,"args":[],"type":{"kind":"OBJECT","name":"IntegrationFile","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"jmesPath","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EnvironmentValueTypeEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"EnvironmentValueTypeEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"STATIC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DYNAMIC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ExportParameters","description":null,"fields":[{"name":"evaluated","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ExportParametersFormatEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"DOCKER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DOTENV","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SHELL","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ExportParametersOptions","description":null,"fields":null,"inputFields":[{"name":"secrets","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"export","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"startsWith","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"endsWith","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"contains","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","description":"Autogenerated input type of FakeOrganizationData","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FakeOrganizationDataPayload","description":"Autogenerated return type of FakeOrganizationData","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegration","description":null,"fields":[{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"availableRepositoryCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"installationUrl","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegrationConnection","description":"The + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegration","description":null,"fields":[{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"availableRepositoryCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"installationUrl","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegrationConnection","description":"The connection type for GithubIntegration.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"GithubIntegrationEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"GithubIntegration","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -180,7 +200,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegrationEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"GithubIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"ID","description":"Represents + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"GithubIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"HasPolicy","description":null,"fields":[{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"BasePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"ServiceAccount","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null}]},{"kind":"SCALAR","name":"ID","description":"Represents a unique identifier that is Base64 obfuscated. It is often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected @@ -201,7 +221,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"IntegrationTreeEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Invitation","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberEmail","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberRole","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InvitationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationConnection","description":"The + item at the end of the edge.","args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Invitation","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberEmail","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberRole","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationPolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InvitationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationConnection","description":"The connection type for Invitation.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Invitation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -210,7 +230,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Invitation","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"InvitationStateEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ACCEPTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DECLINED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PENDING","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Membership","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pictureUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MembershipConnection","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Invitation","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationPolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resend","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"InvitationStateEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ACCEPTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DECLINED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PENDING","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Membership","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pictureUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MembershipConnection","description":"The connection type for Membership.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Membership","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -219,8 +239,45 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MembershipEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"MembershipRoleEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ADMIN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CONTRIBUTOR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VIEWER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"OWNER","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Mutation","description":null,"fields":[{"name":"createAuditLogSnapshot","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAuditLogSnapshotInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAuditLogSnapshotPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createAwsIntegration","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createEnvironment","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createGithubSetupToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateGithubSetupTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateGithubSetupTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createInvitation","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createOrganization","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrganizationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateOrganizationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createParameter","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createPersonalAccessToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createTemplate","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAllPersonalAccessTokens","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAllPersonalAccessTokensInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAllPersonalAccessTokensPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAwsIntegration","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteEnvironment","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteGithubIntegration","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteGithubIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteGithubIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteInvitation","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteParameter","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deletePersonalAccessToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeletePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeletePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteTemplate","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fakeOrganizationData","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"FakeOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"regeneratePersonalAccessToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RegeneratePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resetOrganizationData","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResetOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateAwsIntegration","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateEnvironment","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateInvitation","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateMembership","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateMembershipInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateMembershipPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateParameter","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatePersonalAccessToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateTemplate","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"upsertParameter","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpsertParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpsertParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"Node","description":"An - object with an ID.","fields":[{"name":"id","description":"ID of the object.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"IntegrationFile","ofType":null},{"kind":"OBJECT","name":"IntegrationFileTree","ofType":null},{"kind":"OBJECT","name":"IntegrationServiceTree","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null},{"kind":"OBJECT","name":"Viewer","ofType":null}]},{"kind":"ENUM","name":"OrderByEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DESC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Organization","description":null,"fields":[{"name":"auditLogSnapshots","description":null,"args":[{"name":"after","description":"Returns + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"MembershipRoleEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ADMIN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CONTRIBUTOR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VIEWER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"OWNER","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Mutation","description":null,"fields":[{"name":"createAuditLogSnapshot","description":null,"args":[{"name":"input","description":"Parameters + for CreateAuditLogSnapshot","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAuditLogSnapshotInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAuditLogSnapshotPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters + for CreateAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createEnvironment","description":null,"args":[{"name":"input","description":"Parameters + for CreateEnvironment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createGithubSetupToken","description":null,"args":[{"name":"input","description":"Parameters + for CreateGithubSetupToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateGithubSetupTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateGithubSetupTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createInvitation","description":null,"args":[{"name":"input","description":"Parameters + for CreateInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createOrganization","description":null,"args":[{"name":"input","description":"Parameters + for CreateOrganization","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrganizationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateOrganizationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createParameter","description":null,"args":[{"name":"input","description":"Parameters + for CreateParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createPersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for CreatePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createProject","description":null,"args":[{"name":"input","description":"Parameters + for CreateProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createServiceAccount","description":null,"args":[{"name":"input","description":"Parameters + for CreateServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateServiceAccountPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createTemplate","description":null,"args":[{"name":"input","description":"Parameters + for CreateTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAllPersonalAccessTokens","description":null,"args":[{"name":"input","description":"Parameters + for DeleteAllPersonalAccessTokens","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAllPersonalAccessTokensInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAllPersonalAccessTokensPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters + for DeleteAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteEnvironment","description":null,"args":[{"name":"input","description":"Parameters + for DeleteEnvironment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteGithubIntegration","description":null,"args":[{"name":"input","description":"Parameters + for DeleteGithubIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteGithubIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteGithubIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteInvitation","description":null,"args":[{"name":"input","description":"Parameters + for DeleteInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteMembership","description":null,"args":[{"name":"input","description":"Parameters + for DeleteMembership","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteMembershipInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteMembershipPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteParameter","description":null,"args":[{"name":"input","description":"Parameters + for DeleteParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deletePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for DeletePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeletePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeletePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteProject","description":null,"args":[{"name":"input","description":"Parameters + for DeleteProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteServiceAccount","description":null,"args":[{"name":"input","description":"Parameters + for DeleteServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteServiceAccountPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteTemplate","description":null,"args":[{"name":"input","description":"Parameters + for DeleteTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fakeOrganizationData","description":null,"args":[{"name":"input","description":"Parameters + for FakeOrganizationData","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"FakeOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refreshServiceAccountApiToken","description":null,"args":[{"name":"input","description":"Parameters + for RefreshServiceAccountApiToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RefreshServiceAccountApiTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RefreshServiceAccountApiTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"regeneratePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for RegeneratePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RegeneratePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resendInvitation","description":null,"args":[{"name":"input","description":"Parameters + for ResendInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResendInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResendInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resetOrganizationData","description":null,"args":[{"name":"input","description":"Parameters + for ResetOrganizationData","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResetOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters + for UpdateAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateEnvironment","description":null,"args":[{"name":"input","description":"Parameters + for UpdateEnvironment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateInvitation","description":null,"args":[{"name":"input","description":"Parameters + for UpdateInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateMembership","description":null,"args":[{"name":"input","description":"Parameters + for UpdateMembership","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateMembershipInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateMembershipPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateOrganization","description":null,"args":[{"name":"input","description":"Parameters + for UpdateOrganization","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateOrganizationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateOrganizationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateParameter","description":null,"args":[{"name":"input","description":"Parameters + for UpdateParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for UpdatePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateProject","description":null,"args":[{"name":"input","description":"Parameters + for UpdateProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateTemplate","description":null,"args":[{"name":"input","description":"Parameters + for UpdateTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"upsertParameter","description":null,"args":[{"name":"input","description":"Parameters + for UpsertParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpsertParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpsertParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"Node","description":"An + object with an ID.","fields":[{"name":"id","description":"ID of the object.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"IntegrationFile","ofType":null},{"kind":"OBJECT","name":"IntegrationFileTree","ofType":null},{"kind":"OBJECT","name":"IntegrationServiceTree","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"ServiceAccount","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null},{"kind":"OBJECT","name":"Viewer","ofType":null}]},{"kind":"OBJECT","name":"NodePolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"OrderByEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DESC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Organization","description":null,"fields":[{"name":"auditLogSnapshots","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns @@ -228,11 +285,12 @@ http_interactions: the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegrationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"environment","description":null,"args":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environments","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegrationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"defaultProject","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"environment","description":null,"args":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environments","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"evaluateTemplate","description":null,"args":[{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TemplateEvaluation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"githubIntegrations","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"evaluateTemplate","description":null,"args":[{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TemplateEvaluation","ofType":null},"isDeprecated":true,"deprecationReason":"Use + project instead."},{"name":"githubIntegrations","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns @@ -244,11 +302,13 @@ http_interactions: the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberships","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"state","description":"Filter + invitation list by state.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InvitationStateEnum","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberships","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"userType","description":"Optionally + filter by user type.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns @@ -256,21 +316,27 @@ http_interactions: order for parameters.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","ofType":null}}},"defaultValue":null},{"name":"searchTerm","description":"Search over parameter names.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"where","description":"Filter parameter list.","type":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null},"defaultValue":null},{"name":"keyNames","description":"List - of key names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + of key names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrganizationPolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projects","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ProjectConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionExpiresAt","description":null,"args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionId","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionPlanId","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionPlanName","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"names","description":"List - of template names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursor","description":null,"fields":[{"name":"cursor","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isCurrent","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageNumber","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursors","description":null,"fields":[{"name":"around","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageCursor","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"first","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"last","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previous","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageInfo","description":"Information + of template names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"vaultId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"OrganizationPolicy","description":null,"fields":[{"name":"createEnvironment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createIntegration","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createInvitation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createParameter","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Everything + will go through project in the near future."},{"name":"createProject","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createTemplate","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Everything + will go through the project in the near future."},{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursor","description":null,"fields":[{"name":"cursor","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isCurrent","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageNumber","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursors","description":null,"fields":[{"name":"around","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageCursor","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"first","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"last","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previous","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageInfo","description":"Information about pagination in a connection.","fields":[{"name":"endCursor","description":"When paginating forwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasNextPage","description":"When paginating forwards, are there more items?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasPreviousPage","description":"When paginating backwards, are there more items?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"startCursor","description":"When - paginating backwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Parameter","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValue","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValues","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"hasDynamicValue","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isSecret","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"keyName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + paginating backwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Parameter","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValue","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValues","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"hasDynamicValue","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isSecret","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"keyName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","description":null,"fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"keyName","description":null,"type":{"kind":"INPUT_OBJECT","name":"StringComparisonExp","ofType":null},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"INPUT_OBJECT","name":"IdComparisonExp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterConnection","description":"The + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","description":null,"fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"keyName","description":null,"type":{"kind":"INPUT_OBJECT","name":"StringComparisonExp","ofType":null},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"INPUT_OBJECT","name":"IdComparisonExp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterConnection","description":"The connection type for Parameter.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Parameter","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -279,7 +345,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","description":null,"fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null},{"name":"updatedAt","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterValue","description":null,"fields":[{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessToken","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastUsed","description":null,"args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"writeAccess","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessTokenConnection","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","description":null,"fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null},{"name":"updatedAt","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterValue","description":null,"fields":[{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessToken","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastUsed","description":null,"args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"writeAccess","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessTokenConnection","description":"The connection type for PersonalAccessToken.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PersonalAccessTokenEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -288,20 +354,51 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessTokenEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Query","description":null,"fields":[{"name":"node","description":"Fetches + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Project","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"defaultForOrganization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"evaluateTemplate","description":null,"args":[{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TemplateEvaluation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"exportParameters","description":null,"args":[{"name":"format","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ExportParametersFormatEnum","ofType":null}},"defaultValue":null},{"name":"options","description":null,"type":{"kind":"INPUT_OBJECT","name":"ExportParametersOptions","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ExportParameters","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"orderBy","description":"Sort + order for parameters.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","ofType":null}}},"defaultValue":null},{"name":"searchTerm","description":"Search + over parameter names.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"where","description":"Filter + parameter list.","type":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null},"defaultValue":null},{"name":"keyNames","description":"List + of key names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"names","description":"List + of template names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectConnection","description":"The + connection type for Project.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ProjectEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Query","description":null,"fields":[{"name":"node","description":"Fetches an object given its ID.","args":[{"name":"id","description":"ID of the object.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"INTERFACE","name":"Node","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"Fetches a list of objects given a list of IDs.","args":[{"name":"ids","description":"IDs - of the objects.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INTERFACE","name":"Node","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","description":"Autogenerated + of the objects.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INTERFACE","name":"Node","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RefreshServiceAccountApiTokenInput","description":"Autogenerated + input type of RefreshServiceAccountApiToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RefreshServiceAccountApiTokenPayload","description":"Autogenerated + return type of RefreshServiceAccountApiToken","fields":[{"name":"apiToken","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"serviceAccount","description":null,"args":[],"type":{"kind":"OBJECT","name":"ServiceAccount","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","description":"Autogenerated input type of RegeneratePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RegeneratePersonalAccessTokenPayload","description":"Autogenerated return type of RegeneratePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ResendInvitationInput","description":"Autogenerated + input type of ResendInvitation","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ResendInvitationPayload","description":"Autogenerated + return type of ResendInvitation","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"invitation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Invitation","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","description":"Autogenerated input type of ResetOrganizationData","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ResetOrganizationDataPayload","description":"Autogenerated return type of ResetOrganizationData","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SnapshotStatusEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"REQUESTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PROCESSING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AVAILABLE","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"String","description":"Represents + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ServiceAccount","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SnapshotStatusEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"REQUESTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PROCESSING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AVAILABLE","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"String","description":"Represents textual data as UTF-8 character sequences. This type is most often used by - GraphQL to represent free-form human-readable text.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"StringComparisonExp","description":null,"fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Template","description":null,"fields":[{"name":"body","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"evaluated","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TemplateConnection","description":"The + GraphQL to represent free-form human-readable text.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"StringComparisonExp","description":null,"fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Template","description":null,"fields":[{"name":"body","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"evaluated","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":true,"deprecationReason":"Use + project instead."},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TemplateConnection","description":"The connection type for Template.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Template","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -326,7 +423,11 @@ http_interactions: input type of UpdateMembership","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateMembershipPayload","description":"Autogenerated return type of UpdateMembership","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"membership","description":null,"args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"membership","description":null,"args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateOrganizationInput","description":"Autogenerated + input type of UpdateOrganization","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateOrganizationPayload","description":"Autogenerated + return type of UpdateOrganization","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","description":"Autogenerated input type of UpdateParameter","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"integrationFileId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"integrationFileFqn","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"jmesPath","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateParameterPayload","description":"Autogenerated return type of UpdateParameter","fields":[{"name":"clientMutationId","description":"A @@ -334,12 +435,16 @@ http_interactions: input type of UpdatePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"writeAccess","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdatePersonalAccessTokenPayload","description":"Autogenerated return type of UpdatePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateProjectInput","description":"Autogenerated + input type of UpdateProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateProjectPayload","description":"Autogenerated + return type of UpdateProject","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","description":"Autogenerated input type of UpdateTemplate","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"body","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateTemplatePayload","description":"Autogenerated return type of UpdateTemplate","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpsertParameterInput","description":"Autogenerated - input type of UpsertParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + input type of UpsertParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpsertParameterPayload","description":"Autogenerated return type of UpsertParameter","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserError","description":"A @@ -358,7 +463,7 @@ http_interactions: validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL''s execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives - provide this by describing additional information to the executor.","fields":[{"name":"args","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locations","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__DirectiveLocation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"onField","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use + provide this by describing additional information to the executor.","fields":[{"name":"args","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locations","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__DirectiveLocation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"onField","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."},{"name":"onFragment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."},{"name":"onOperation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__DirectiveLocation","description":"A @@ -386,11 +491,11 @@ http_interactions: for a string or numeric value. However an Enum value is returned in a JSON response as a string.","fields":[{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Field","description":"Object and Interface types are described by a list of Fields, each of which has a - name, potentially a list of arguments, and a return type.","fields":[{"name":"args","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__InputValue","description":"Arguments + name, potentially a list of arguments, and a return type.","fields":[{"name":"args","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__InputValue","description":"Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.","fields":[{"name":"defaultValue","description":"A GraphQL-formatted - string representing the default value for this input value.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Schema","description":"A + string representing the default value for this input value.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Schema","description":"A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.","fields":[{"name":"directives","description":"A @@ -407,7 +512,7 @@ http_interactions: types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at - runtime. List and NonNull types compose other types.","fields":[{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"enumValues","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__EnumValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"fields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Field","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"inputFields","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"interfaces","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__TypeKind","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"ofType","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"possibleTypes","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__TypeKind","description":"An + runtime. List and NonNull types compose other types.","fields":[{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"enumValues","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__EnumValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"fields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Field","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"inputFields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"interfaces","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__TypeKind","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"ofType","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"possibleTypes","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__TypeKind","description":"An enum describing what kind of type a given `__Type` is.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"SCALAR","description":"Indicates this type is a scalar.","isDeprecated":false,"deprecationReason":null},{"name":"OBJECT","description":"Indicates this type is an object. `fields` and `interfaces` are valid fields.","isDeprecated":false,"deprecationReason":null},{"name":"INTERFACE","description":"Indicates @@ -422,25 +527,25 @@ http_interactions: when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"skip","description":"Directs the executor to skip this field or fragment when the `if` argument is true.","locations":["FIELD","FRAGMENT_SPREAD","INLINE_FRAGMENT"],"args":[{"name":"if","description":"Skipped when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"deprecated","description":"Marks - an element of a GraphQL schema as no longer supported.","locations":["FIELD_DEFINITION","ENUM_VALUE"],"args":[{"name":"reason","description":"Explains + an element of a GraphQL schema as no longer supported.","locations":["FIELD_DEFINITION","ENUM_VALUE","ARGUMENT_DEFINITION","INPUT_FIELD_DEFINITION"],"args":[{"name":"reason","description":"Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted in [Markdown](https://daringfireball.net/projects/markdown/).","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"\"No longer supported\""}]}]}}}' - recorded_at: Wed, 17 Feb 2021 15:58:11 GMT + recorded_at: Tue, 27 Apr 2021 14:10:39 GMT - request: method: post uri: https://api.cloudtruth.com/graphql body: encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_74480 {\n viewer - {\n memberships {\n nodes {\n organization {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_74480"}' + string: '{"query":"query GraphQL__Client__OperationDefinition_80420 {\n viewer + {\n memberships {\n nodes {\n organization {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_80420"}' headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - application/json User-Agent: - - kubetruth/0.2.0 + - kubetruth/0.3.0 Content-Type: - application/json Authorization: @@ -451,7 +556,7 @@ http_interactions: message: OK headers: Date: - - Wed, 17 Feb 2021 15:58:12 GMT + - Tue, 27 Apr 2021 14:10:47 GMT Content-Type: - application/json; charset=utf-8 Transfer-Encoding: @@ -470,18 +575,19 @@ http_interactions: - none Referrer-Policy: - strict-origin-when-cross-origin + Vary: + - Accept, Origin Etag: - - W/"dd6fbd595565bb739ed3c235c3e1d53c" + - W/"3948b709f7ddb5be738bb5ecc5683449" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - 58c3fd2a-b46e-4c5b-8dc9-2bd6ec898e54 + - af0fca59-9161-4dc9-a7c1-5379bb42ed27 X-Runtime: - - '0.018094' - Vary: - - Origin + - '0.031481' body: encoding: UTF-8 - string: '{"data":{"viewer":{"memberships":{"nodes":[{"organization":{"id":"T3JnYW5pemF0aW9uLTE1YzgxYjViLWVlM2ItNDlmNS1iNGVkLTIyYTc0NDI3N2ZiMw==","name":"Personal"}}]}}}}' - recorded_at: Wed, 17 Feb 2021 15:58:11 GMT + string: '{"data":{"viewer":{"memberships":{"nodes":[{"organization":{"id":"T3JnYW5pemF0aW9uLTE1YzgxYjViLWVlM2ItNDlmNS1iNGVkLTIyYTc0NDI3N2ZiMw==","name":"CloudTruth + Demo"}}]}}}}' + recorded_at: Tue, 27 Apr 2021 14:10:40 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/CtApi/_parameters/doesn_t_expose_secret_in_debug_log.yml b/spec/fixtures/vcr/CtApi/_parameters/doesn_t_expose_secret_in_debug_log.yml index eb975f9..3e18778 100644 --- a/spec/fixtures/vcr/CtApi/_parameters/doesn_t_expose_secret_in_debug_log.yml +++ b/spec/fixtures/vcr/CtApi/_parameters/doesn_t_expose_secret_in_debug_log.yml @@ -25,7 +25,7 @@ http_interactions: Accept: - application/json User-Agent: - - kubetruth/0.2.2 + - kubetruth/0.3.0 Content-Type: - application/json Authorization: @@ -36,7 +36,7 @@ http_interactions: message: OK headers: Date: - - Thu, 15 Apr 2021 21:12:50 GMT + - Tue, 27 Apr 2021 14:10:59 GMT Content-Type: - application/json; charset=utf-8 Transfer-Encoding: @@ -58,13 +58,13 @@ http_interactions: Vary: - Accept, Origin Etag: - - W/"c3e41a9eb1f6549d3cf248584cc18bc1" + - W/"75ec2b3ba6f57bc364b5a38b5e8f606b" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - 9a0891dd-2970-44c8-b768-aabbc5cf88c1 + - 9a965c5f-0d2b-4325-b80d-32c060c2a184 X-Runtime: - - '1.404646' + - '0.944195' body: encoding: UTF-8 string: '{"data":{"__schema":{"queryType":{"name":"Query"},"mutationType":{"name":"Mutation"},"subscriptionType":null,"types":[{"kind":"OBJECT","name":"AuditLogSnapshot","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fileUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SnapshotStatusEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditLogSnapshotConnection","description":"The @@ -107,7 +107,7 @@ http_interactions: unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateInvitationPayload","description":"Autogenerated return type of CreateInvitation","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"invitation","description":null,"args":[],"type":{"kind":"OBJECT","name":"Invitation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateOrganizationInput","description":"Autogenerated - input type of CreateOrganization","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + input type of CreateOrganization","fields":null,"inputFields":[{"name":"eaorgid","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateOrganizationPayload","description":"Autogenerated return type of CreateOrganization","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateParameterInput","description":"Autogenerated @@ -122,7 +122,11 @@ http_interactions: input type of CreateProject","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateProjectPayload","description":"Autogenerated return type of CreateProject","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateServiceAccountInput","description":"Autogenerated + input type of CreateServiceAccount","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateServiceAccountPayload","description":"Autogenerated + return type of CreateServiceAccount","fields":[{"name":"apiToken","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"serviceAccount","description":null,"args":[],"type":{"kind":"OBJECT","name":"ServiceAccount","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","description":"Autogenerated input type of CreateTemplate","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateTemplatePayload","description":"Autogenerated return type of CreateTemplate","fields":[{"name":"clientMutationId","description":"A @@ -162,7 +166,11 @@ http_interactions: input type of DeleteProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteProjectPayload","description":"Autogenerated return type of DeleteProject","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteServiceAccountInput","description":"Autogenerated + input type of DeleteServiceAccount","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteServiceAccountPayload","description":"Autogenerated + return type of DeleteServiceAccount","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedServiceAccountId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","description":"Autogenerated input type of DeleteTemplate","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteTemplatePayload","description":"Autogenerated return type of DeleteTemplate","fields":[{"name":"clientMutationId","description":"A @@ -179,7 +187,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentValue","description":null,"fields":[{"name":"environment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integrationFile","description":null,"args":[],"type":{"kind":"OBJECT","name":"IntegrationFile","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"jmesPath","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EnvironmentValueTypeEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"EnvironmentValueTypeEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"STATIC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DYNAMIC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","description":"Autogenerated + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentValue","description":null,"fields":[{"name":"environment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integrationFile","description":null,"args":[],"type":{"kind":"OBJECT","name":"IntegrationFile","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"jmesPath","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EnvironmentValueTypeEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"EnvironmentValueTypeEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"STATIC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DYNAMIC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ExportParameters","description":null,"fields":[{"name":"evaluated","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ExportParametersFormatEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"DOCKER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DOTENV","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SHELL","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ExportParametersOptions","description":null,"fields":null,"inputFields":[{"name":"secrets","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"export","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"startsWith","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"endsWith","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"contains","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","description":"Autogenerated input type of FakeOrganizationData","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FakeOrganizationDataPayload","description":"Autogenerated return type of FakeOrganizationData","fields":[{"name":"clientMutationId","description":"A @@ -192,13 +200,13 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegrationEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"GithubIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"HasPolicy","description":null,"fields":[{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"BasePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null}]},{"kind":"SCALAR","name":"ID","description":"Represents + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"GithubIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"HasPolicy","description":null,"fields":[{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"BasePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"ServiceAccount","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null}]},{"kind":"SCALAR","name":"ID","description":"Represents a unique identifier that is Base64 obfuscated. It is often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"VXNlci0xMA==\"`) or integer (such as `4`) input value will be accepted as an ID.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"ISO8601DateTime","description":"An - ISO 8601-encoded datetime","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"IdComparisonExp","description":null,"fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ImplicitTemplate","description":null,"fields":[{"name":"evaluated","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ImplicitTemplateEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"DOCKER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DOTENV","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SHELL","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ImplicitTemplateFilters","description":null,"fields":null,"inputFields":[{"name":"secrets","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"export","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"startsWith","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"endsWith","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"contains","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"Int","description":"Represents + ISO 8601-encoded datetime","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"IdComparisonExp","description":null,"fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"Int","description":"Represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"IntegrationFile","description":null,"fields":[{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"body","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"json","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"mimeType","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"IntegrationFileTree","description":null,"fields":[{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"IntegrationNode","description":"Service base integration nodes (AWS, GitHub)","fields":[{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"ID @@ -240,7 +248,8 @@ http_interactions: for CreateOrganization","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrganizationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateOrganizationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createParameter","description":null,"args":[{"name":"input","description":"Parameters for CreateParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createPersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters for CreatePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createProject","description":null,"args":[{"name":"input","description":"Parameters - for CreateProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createTemplate","description":null,"args":[{"name":"input","description":"Parameters + for CreateProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createServiceAccount","description":null,"args":[{"name":"input","description":"Parameters + for CreateServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateServiceAccountPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createTemplate","description":null,"args":[{"name":"input","description":"Parameters for CreateTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAllPersonalAccessTokens","description":null,"args":[{"name":"input","description":"Parameters for DeleteAllPersonalAccessTokens","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAllPersonalAccessTokensInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAllPersonalAccessTokensPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters for DeleteAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteEnvironment","description":null,"args":[{"name":"input","description":"Parameters @@ -250,9 +259,11 @@ http_interactions: for DeleteMembership","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteMembershipInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteMembershipPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteParameter","description":null,"args":[{"name":"input","description":"Parameters for DeleteParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deletePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters for DeletePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeletePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeletePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteProject","description":null,"args":[{"name":"input","description":"Parameters - for DeleteProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteTemplate","description":null,"args":[{"name":"input","description":"Parameters + for DeleteProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteServiceAccount","description":null,"args":[{"name":"input","description":"Parameters + for DeleteServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteServiceAccountPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteTemplate","description":null,"args":[{"name":"input","description":"Parameters for DeleteTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fakeOrganizationData","description":null,"args":[{"name":"input","description":"Parameters - for FakeOrganizationData","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"FakeOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"regeneratePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for FakeOrganizationData","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"FakeOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refreshServiceAccountApiToken","description":null,"args":[{"name":"input","description":"Parameters + for RefreshServiceAccountApiToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RefreshServiceAccountApiTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RefreshServiceAccountApiTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"regeneratePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters for RegeneratePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RegeneratePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resendInvitation","description":null,"args":[{"name":"input","description":"Parameters for ResendInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResendInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResendInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resetOrganizationData","description":null,"args":[{"name":"input","description":"Parameters for ResetOrganizationData","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResetOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters @@ -266,7 +277,7 @@ http_interactions: for UpdateProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateTemplate","description":null,"args":[{"name":"input","description":"Parameters for UpdateTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"upsertParameter","description":null,"args":[{"name":"input","description":"Parameters for UpsertParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpsertParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpsertParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"Node","description":"An - object with an ID.","fields":[{"name":"id","description":"ID of the object.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"IntegrationFile","ofType":null},{"kind":"OBJECT","name":"IntegrationFileTree","ofType":null},{"kind":"OBJECT","name":"IntegrationServiceTree","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null},{"kind":"OBJECT","name":"Viewer","ofType":null}]},{"kind":"OBJECT","name":"NodePolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"OrderByEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DESC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Organization","description":null,"fields":[{"name":"auditLogSnapshots","description":null,"args":[{"name":"after","description":"Returns + object with an ID.","fields":[{"name":"id","description":"ID of the object.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"IntegrationFile","ofType":null},{"kind":"OBJECT","name":"IntegrationFileTree","ofType":null},{"kind":"OBJECT","name":"IntegrationServiceTree","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"ServiceAccount","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null},{"kind":"OBJECT","name":"Viewer","ofType":null}]},{"kind":"OBJECT","name":"NodePolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"OrderByEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DESC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Organization","description":null,"fields":[{"name":"auditLogSnapshots","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns @@ -274,15 +285,16 @@ http_interactions: the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegrationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"environment","description":null,"args":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environments","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegrationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"defaultProject","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"environment","description":null,"args":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environments","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"evaluateTemplate","description":null,"args":[{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TemplateEvaluation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"githubIntegrations","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"evaluateTemplate","description":null,"args":[{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TemplateEvaluation","ofType":null},"isDeprecated":true,"deprecationReason":"Use + project instead."},{"name":"githubIntegrations","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"GithubIntegrationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"implicitTemplate","description":null,"args":[{"name":"format","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ImplicitTemplateEnum","ofType":null}},"defaultValue":null},{"name":"filters","description":null,"type":{"kind":"INPUT_OBJECT","name":"ImplicitTemplateFilters","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ImplicitTemplate","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integrations","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"GithubIntegrationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"integrations","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns @@ -295,7 +307,8 @@ http_interactions: the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"userType","description":"Optionally + filter by user type.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns @@ -303,16 +316,16 @@ http_interactions: order for parameters.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","ofType":null}}},"defaultValue":null},{"name":"searchTerm","description":"Search over parameter names.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"where","description":"Filter parameter list.","type":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null},"defaultValue":null},{"name":"keyNames","description":"List - of key names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrganizationPolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"projects","description":null,"args":[{"name":"after","description":"Returns + of key names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrganizationPolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projects","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ProjectConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ProjectConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionExpiresAt","description":null,"args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionId","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionPlanId","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionPlanName","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"names","description":"List - of template names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"OrganizationPolicy","description":null,"fields":[{"name":"createEnvironment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createIntegration","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createInvitation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createParameter","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Everything + of template names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"vaultId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"OrganizationPolicy","description":null,"fields":[{"name":"createEnvironment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createIntegration","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createInvitation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createParameter","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Everything will go through project in the near future."},{"name":"createProject","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createTemplate","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Everything will go through the project in the near future."},{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursor","description":null,"fields":[{"name":"cursor","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isCurrent","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageNumber","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursors","description":null,"fields":[{"name":"around","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageCursor","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"first","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"last","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previous","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageInfo","description":"Information about pagination in a connection.","fields":[{"name":"endCursor","description":"When @@ -341,7 +354,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessTokenEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Project","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"defaultForOrganization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Project","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"defaultForOrganization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"evaluateTemplate","description":null,"args":[{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TemplateEvaluation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"exportParameters","description":null,"args":[{"name":"format","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ExportParametersFormatEnum","ofType":null}},"defaultValue":null},{"name":"options","description":null,"type":{"kind":"INPUT_OBJECT","name":"ExportParametersOptions","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ExportParameters","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns @@ -366,7 +379,11 @@ http_interactions: item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Query","description":null,"fields":[{"name":"node","description":"Fetches an object given its ID.","args":[{"name":"id","description":"ID of the object.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"INTERFACE","name":"Node","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"Fetches a list of objects given a list of IDs.","args":[{"name":"ids","description":"IDs - of the objects.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INTERFACE","name":"Node","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","description":"Autogenerated + of the objects.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INTERFACE","name":"Node","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RefreshServiceAccountApiTokenInput","description":"Autogenerated + input type of RefreshServiceAccountApiToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RefreshServiceAccountApiTokenPayload","description":"Autogenerated + return type of RefreshServiceAccountApiToken","fields":[{"name":"apiToken","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"serviceAccount","description":null,"args":[],"type":{"kind":"OBJECT","name":"ServiceAccount","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","description":"Autogenerated input type of RegeneratePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RegeneratePersonalAccessTokenPayload","description":"Autogenerated return type of RegeneratePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A @@ -378,10 +395,10 @@ http_interactions: input type of ResetOrganizationData","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ResetOrganizationDataPayload","description":"Autogenerated return type of ResetOrganizationData","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SnapshotStatusEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"REQUESTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PROCESSING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AVAILABLE","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"String","description":"Represents + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ServiceAccount","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SnapshotStatusEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"REQUESTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PROCESSING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AVAILABLE","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"String","description":"Represents textual data as UTF-8 character sequences. This type is most often used by GraphQL to represent free-form human-readable text.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"StringComparisonExp","description":null,"fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Template","description":null,"fields":[{"name":"body","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"evaluated","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":true,"deprecationReason":"Use - project instead."},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TemplateConnection","description":"The + project instead."},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TemplateConnection","description":"The connection type for Template.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Template","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -422,7 +439,7 @@ http_interactions: input type of UpdateProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateProjectPayload","description":"Autogenerated return type of UpdateProject","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","description":"Autogenerated input type of UpdateTemplate","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"body","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateTemplatePayload","description":"Autogenerated return type of UpdateTemplate","fields":[{"name":"clientMutationId","description":"A @@ -446,7 +463,7 @@ http_interactions: validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL''s execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives - provide this by describing additional information to the executor.","fields":[{"name":"args","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locations","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__DirectiveLocation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"onField","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use + provide this by describing additional information to the executor.","fields":[{"name":"args","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locations","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__DirectiveLocation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"onField","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."},{"name":"onFragment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."},{"name":"onOperation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__DirectiveLocation","description":"A @@ -514,22 +531,22 @@ http_interactions: why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted in [Markdown](https://daringfireball.net/projects/markdown/).","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"\"No longer supported\""}]}]}}}' - recorded_at: Thu, 15 Apr 2021 21:12:47 GMT + recorded_at: Tue, 27 Apr 2021 14:10:53 GMT - request: method: post uri: https://api.cloudtruth.com/graphql body: encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_17680($organizationId: + string: '{"query":"query GraphQL__Client__OperationDefinition_165540($organizationId: ID) {\n viewer {\n organization(id: $organizationId) {\n environments - {\n nodes {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_17680"}' + {\n nodes {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_165540"}' headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - application/json User-Agent: - - kubetruth/0.2.2 + - kubetruth/0.3.0 Content-Type: - application/json Authorization: @@ -540,7 +557,7 @@ http_interactions: message: OK headers: Date: - - Thu, 15 Apr 2021 21:12:50 GMT + - Tue, 27 Apr 2021 14:10:59 GMT Content-Type: - application/json; charset=utf-8 Transfer-Encoding: @@ -566,30 +583,31 @@ http_interactions: Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - 1fdd0ec7-cb82-49f6-b52f-4033b3cd2352 + - a514493f-c7b2-4be3-886f-88b71b0edd42 X-Runtime: - - '0.028716' + - '0.035920' body: encoding: UTF-8 string: '{"data":{"viewer":{"organization":{"environments":{"nodes":[{"id":"RW52aXJvbm1lbnQtZjk3MDI1NGEtNGQ0NS00YTA1LWJiYjctOTRjZTdhOGRmODky","name":"default"},{"id":"RW52aXJvbm1lbnQtOGRmMTVjMjYtN2FhZi00ODE5LWJlNzYtMTVmMzU2YzQ5YTg1","name":"production"},{"id":"RW52aXJvbm1lbnQtNmI5M2NlMWEtMTVkMS00MzRiLTg1NTAtODhjZDZhY2ZjYzU4","name":"development"},{"id":"RW52aXJvbm1lbnQtY2EyMDA0YzctZjQ3Mi00MzFlLWIyODgtNzg0NmYzMTBmMGZj","name":"ops"},{"id":"RW52aXJvbm1lbnQtMzY4MWRkMjctZDY2YS00NjdlLWI1NzMtYmI2YzU0ZmFjZDM1","name":"staging"},{"id":"RW52aXJvbm1lbnQtZDE4NGQ1ODctYjA2Yi00OWU2LThhMGItNjU1YTM2NDQwYjRj","name":"dev-matt"}]}}}}}' - recorded_at: Thu, 15 Apr 2021 21:12:48 GMT + recorded_at: Tue, 27 Apr 2021 14:10:53 GMT - request: method: post uri: https://api.cloudtruth.com/graphql body: encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_17720($organizationId: - ID, $environmentId: ID, $searchTerm: String) {\n viewer {\n organization(id: - $organizationId) {\n parameters(searchTerm: $searchTerm, orderBy: {keyName: - ASC}) {\n nodes {\n id\n keyName\n isSecret\n environmentValue(environmentId: - $environmentId) {\n parameterValue\n }\n }\n }\n }\n }\n}","variables":{"searchTerm":"","environmentId":"RW52aXJvbm1lbnQtZjk3MDI1NGEtNGQ0NS00YTA1LWJiYjctOTRjZTdhOGRmODky"},"operationName":"GraphQL__Client__OperationDefinition_17720"}' + string: '{"query":"query GraphQL__Client__OperationDefinition_165580($organizationId: + ID, $environmentId: ID, $projectName: String, $searchTerm: String) {\n viewer + {\n organization(id: $organizationId) {\n project(name: $projectName) + {\n parameters(searchTerm: $searchTerm, orderBy: {keyName: ASC}) {\n nodes + {\n id\n keyName\n isSecret\n environmentValue(environmentId: + $environmentId) {\n parameterValue\n }\n }\n }\n }\n }\n }\n}","variables":{"searchTerm":"","environmentId":"RW52aXJvbm1lbnQtZjk3MDI1NGEtNGQ0NS00YTA1LWJiYjctOTRjZTdhOGRmODky"},"operationName":"GraphQL__Client__OperationDefinition_165580"}' headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - application/json User-Agent: - - kubetruth/0.2.2 + - kubetruth/0.3.0 Content-Type: - application/json Authorization: @@ -600,7 +618,7 @@ http_interactions: message: OK headers: Date: - - Thu, 15 Apr 2021 21:12:51 GMT + - Tue, 27 Apr 2021 14:11:00 GMT Content-Type: - application/json; charset=utf-8 Transfer-Encoding: @@ -622,15 +640,15 @@ http_interactions: Vary: - Accept, Origin Etag: - - W/"1fb37b066919494587d88cfd9dc15a8c" + - W/"fe60a28a77577e7f2c8c439ebbfce64b" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - e62ada43-25b2-48fc-876e-e24af0224aa0 + - 433c9637-7689-4051-9f7c-6620d9d76d54 X-Runtime: - - '0.724478' + - '0.957543' body: encoding: UTF-8 - string: '{"data":{"viewer":{"organization":{"parameters":{"nodes":[{"id":"UGFyYW1ldGVyLTFlZGRhNTRiLTYzOTItNDFhMS1iOTU0LWRhMjUyNjE2MzZhZQ==","keyName":"app.demo.color0","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWUxN2M2ZGIwLWU4NjYtNGM5Yi1iNmRjLTE2MjE2ZTJlM2MxZQ==","keyName":"app.demo.color1","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTQ0MTZhYzIyLTIxOGEtNGQ0Ni1iNjhjLTY4MmFmYTJiNmJmMw==","keyName":"app.demo.color2","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTk4NGQ4MDc2LWIxNGQtNGI1My05MmE0LTY4ZjllMDEwOGZhMw==","keyName":"app.demo.delay","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTliNmU4NzJkLTFiNjYtNDVlNS04ZmY0LTA3ZDcyMDEyOThjNw==","keyName":"app.demo.height","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWUyMzFkZmUyLWRmYTUtNDY5NS05NDc0LWFlOWI5MGEyZWYzYg==","keyName":"app.demo.label0","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTk1OGJjMmM4LTgwZjEtNDU2OC1hODY3LWYzMjEzOGFhODJmYg==","keyName":"app.demo.label1","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWVlM2JhY2E0LWEyNzQtNDMzOC05NGQyLWUyNzdjMGJhYTJhMQ==","keyName":"app.demo.label2","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTdjNjcwOTJhLTkzNTgtNGFkYy04NDI5LTExOWUxNGI1NmExMw==","keyName":"app.demo.max_instances","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTM4NjJhNzIxLTNkNGUtNDY2NC1iMTQ2LTBjOWUxMDM5ZjIyMw==","keyName":"app.demo.num_frames","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTRjZjJjOGViLTE4NzUtNDU0YS05MjZiLWY3Mzc0NWUxZWQ4Mw==","keyName":"app.demo.num_retries","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWM1ZmQzYWVmLWFkODUtNDRhMi1hYjFlLTVkODM3ZGQ1YjE3Yg==","keyName":"app.demo.series0","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTFmMWI1NWUzLWExNDMtNDg4NC1iYTk5LTA5YTc1NmQ4ZTRiNQ==","keyName":"app.demo.series1","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWMwNWFlYzgyLTJjNjYtNGViNS1hNjc5LWIwNTkzZjZkYjRmYw==","keyName":"app.demo.series2","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWNiMzU2YmE2LTkzZmEtNDk3NC1hMDQ3LTU3NWU3OTEzMzExZA==","keyName":"app.demo.timeout","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWVmMWE0OTI5LTJlMzgtNDliZi1iYzlmLWI3OWMyOTIyZjJiOA==","keyName":"app.demo.width","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWE5ZThjMTViLTk4ZTgtNGI5Mi1hNDFkLWNkMmNmOTk4MTUwOQ==","keyName":"aws_account_id","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY1YmMzMWY2LTdlNzgtNGQ2OC1iMzU5LWE5ZDcyNzlmMzA3Zg==","keyName":"aws_region","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWFlOTgzZjhiLTk3NTQtNGM2YS1hOTgyLWE3ZTI4MTIwOGYxMQ==","keyName":"cfdemo.bucket","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTg4MWE4ZmQyLTRjY2UtNDM3Ni05MWZkLTU1MjU4YmUzOTg5OA==","keyName":"cfdemo.message","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWE1ODZlY2I3LWMxMzQtNDA5Yi05ZTBiLTU1Yzc1MGIyZDc0MA==","keyName":"deploy.services.kubecfg","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTRhODkzMzgxLTE0NGUtNDZhNC04YTdmLWRmYjEzYWFkNDZiZQ==","keyName":"deployer_aws_access_key","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWIxMjNjZDJjLWEyYmUtNDdmOC05MzEwLWIwOTAwMDNlM2M1Yg==","keyName":"deployer_aws_access_secret","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLThlYjQ5NGFlLTc3NTUtNGNjNy04ODUzLTZmYTc5OTEyMDc1Mw==","keyName":"domain","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTFkMDNkMzU3LWJjODEtNGZkNy05YWIwLWFmZGU1OGViODIyYw==","keyName":"environment","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY5M2FiZTY0LTIxMzItNDA5MS05MWQ5LWZlNTJhMzg4ODEwNg==","keyName":"foo","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWEzYzhiYzkxLWE1ODUtNDFmNi1hMTE3LTMyYzU5NzcxOGMwMQ==","keyName":"myvalue","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTcyMGRkNDNjLTkwZGQtNDNjMi04MjJlLWU0YmQ3OGY2ZDkwMA==","keyName":"ops.az_count","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTI0NDBjYWUyLTAwOGYtNDVmYS05YmE2LTBjMmVmOGM0NGRlYg==","keyName":"ops.db_sizing.some-rds.count","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTA3YjY4ZGM3LTVlZmQtNGFmNS04NzhiLTNmODkzYjU5MzA1Ng==","keyName":"ops.db_sizing.some-rds.type","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTZiZjBhM2E5LTQzNmUtNDA1OS1iNjMzLWQzMDc2Nzk1NGNhZg==","keyName":"ops.force_destroy_buckets","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTE0YjkxNzRlLTRhNDgtNGQ1OS05ZTIwLTU1MGRiOWEyZGIxYg==","keyName":"ops.force_destroy_zones","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWEzNjkwYmJlLTM2YTktNGFjYy1iZTliLTdlM2M3ZDc2Yzg5Yw==","keyName":"ops.global_name_prefix","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTQyZjRmZWQ3LWQ4MzAtNDczZC1iYTAzLTYxOTViMThkNWIyZA==","keyName":"ops.is_dev","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTgzOTkzZDFkLTE5ZjgtNDBiMC1iM2E5LTA4ZmUxNDFmMThmYg==","keyName":"ops.local_name_prefix","isSecret":false,"environmentValue":{"parameterValue":null}},{"id":"UGFyYW1ldGVyLWQzMmNhOGU2LWRmNDYtNGU2YS04ZjExLTU5YjUwYTJlM2QwMg==","keyName":"ops.logs_bucket","isSecret":false,"environmentValue":{"parameterValue":null}},{"id":"UGFyYW1ldGVyLWU4MDgwYjFjLWNhYjAtNDk0My1hZDIzLWYwZjRjYmFlNjBkMg==","keyName":"ops.ops_email","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTYzY2YxNDY0LWIxMTgtNDc5NS1hNDRmLWY4OWVmMzkxMzczMQ==","keyName":"ops.org","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTU3M2QzYzRhLTcwYTItNDA1Ni04YWY5LTJhYjEyNTZjMGQzNQ==","keyName":"ops.org_prefix","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTIxZjFjODkzLTg0NzEtNDA1Yy04YWJmLTQxOTNhM2E2ZTBlZg==","keyName":"ops.service_sizing.bigboy.cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTllMjIzNjc5LWRhZjAtNDliNy1hMzk1LTVjYTEzZDYzN2I5OQ==","keyName":"ops.service_sizing.bigboy.max_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTM0MDY4ZDEwLTQyYTEtNDBlZS1hNmVhLTAwNGM2ZjQxMjJjYg==","keyName":"ops.service_sizing.bigboy.memory","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWQ0NWQzZjY0LTJkNGEtNDU4ZC05MTM5LTg1ZmFjYTBlMTNkMg==","keyName":"ops.service_sizing.bigboy.min_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTUzYzRjZTAwLWE1MGMtNDQyNS1iMjUzLTJiNmM1MmNiN2Q5Mg==","keyName":"ops.service_sizing_default.cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTNiMGFjMGNjLWZlMGUtNDM3Mi1iZDQ0LTI1NGVlNmM0NjA5ZQ==","keyName":"ops.service_sizing_default.max_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTRlMTY4MzRmLWEyZGMtNDNlZS04ZmQ1LTNlZTZlMmM3MzQ5OA==","keyName":"ops.service_sizing_default.memory","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTNkODI1NjM1LWM4MDAtNDVlYS1hYjEwLWRhZTU3MTc5ZGIzMQ==","keyName":"ops.service_sizing_default.min_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTA5NTRjZDYzLTM0N2MtNGRlOC1iOTE4LTdlNDVmYjA2ZTIxMw==","keyName":"ops.skip_final_snapshot","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWYyN2VhNjc5LTg4YjEtNGNiMi05M2QwLTc3Y2ZiYjkyNDYzNQ==","keyName":"ops.vpc_cidr","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWYzYTc1ZjUwLWRlYmItNDc2NC1hMzE4LTBiYmM5NTJjMmMzMg==","keyName":"ops.vpc_enable_nat","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWJlZDllMjg1LTM5Y2EtNDM0Yy04ODVjLWQ0NmFkODAxMjkxYw==","keyName":"ops.vpc_enable_redundant_nat","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTdlZDJhNjUzLTI3YjgtNGU1ZS1hZWEyLWZlY2FlMjYzNzE5Nw==","keyName":"ops.website_bucket","isSecret":false,"environmentValue":{"parameterValue":null}},{"id":"UGFyYW1ldGVyLTNhODAxNDNjLTQ2YTUtNDgyNi05ZmM0LWQzZTg3ZjE0MDhmNA==","keyName":"service.demo1.live_config_tid","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWFhN2VmZWQyLTQyM2EtNGRlMy05MjAxLTU5NTYxNTU1MjA3NQ==","keyName":"service.demo1.token","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWNmM2I4NjI2LWNlZWMtNDBiMS05YjkwLTYxMjEyYjQ4YjRjNQ==","keyName":"service.demo2.limit","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWQ0Mzg5YzdkLTI3ZDUtNGFkNC1hMjQwLWRhYTM5OTBlNzM4Yw==","keyName":"service.demo2.min","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWYwMzkzYmIzLWZhY2QtNDY0MS04MmUwLWNiMTJhYzNiN2VlYg==","keyName":"service.demo2.mykey","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLThkYWQ5NDZlLTdjMDQtNDI1OS05YTJmLTRhYmZkOGFiMmM3NQ==","keyName":"service.demo2.other","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWNlNTViNDY0LWExZTMtNGJmYi05MjRhLWRlOTYzNDQ3ZGRlZQ==","keyName":"service.demo3.foo","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY3YzYzMjc5LWY1M2ItNDUzYi1hNmI2LTc5NGJmNjE1ZTI5Nw==","keyName":"service.demo4.bar","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTI1ZmVmNDRiLWI2ZTMtNDg1Zi05MjQ0LWFjMzg0YjBjMzAwZQ==","keyName":"some_config","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTgxMWNmOTJjLTk4Y2MtNGZlYi04M2I1LTc3MmMzMTEzNjZiMg==","keyName":"svc.demo.active","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWU4YWNmMDIwLWEyNWUtNDgyOS04ZTdhLTU4ZGU1YWE4Zjg2Yg==","keyName":"svc.demo.enable_logging","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWFjZGVkMTQyLWIyZGYtNDkxMy1hZjU3LTY0ODJjNjhjYjVjOA==","keyName":"svc.demo.max_cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWJiZTZmNTcyLTVkM2UtNDZkYS1iMmQ1LTJkODlkODVhNGU0MQ==","keyName":"svc.demo.max_retries","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWUxNmJhYjM3LWFjYjItNGJiOS1iODc0LWMxYWFiNjA2OTFjNA==","keyName":"svc.demo.min_cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWJhYmFhZTM3LTMyNTMtNDE5NC05N2E1LWIyNDYyZjNiNTAyYw==","keyName":"svc.demo.region","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTI0ZGI2MGY2LWU2ODMtNDIzNi1iYmRmLTQ1ZWUzMGU3MDFjZA==","keyName":"svc.demo.timeout","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTUwODMzMWI3LThjNDAtNDkyYi05NjUyLWI4ZTc2MDM0YzIxMQ==","keyName":"web.app.background_color","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWQ4OWQ3NmMwLTFlODYtNDVhZi1hZWRjLTdkY2UyNjkxOTU1NQ==","keyName":"web.app.live_config_tid","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTJhNzI2MDUxLTRkNTEtNDBiZi05ZmJiLTQ4Mjg3NTBmMjAwMQ==","keyName":"web.app.polling_interval","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY4MjNlYWFkLWE4ZTEtNGRhYy05YTJlLTBjZWFkMDYzZjliZg==","keyName":"web_bucket","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTBjZWFjZjZiLTg4MzItNGZkZi1hNDk1LTQzNWJlNGRkNWFkOQ==","keyName":"web_distribution_id","isSecret":false,"environmentValue":{"parameterValue":""}}]}}}}}' - recorded_at: Thu, 15 Apr 2021 21:12:48 GMT + string: '{"data":{"viewer":{"organization":{"project":{"parameters":{"nodes":[{"id":"UGFyYW1ldGVyLTFlZGRhNTRiLTYzOTItNDFhMS1iOTU0LWRhMjUyNjE2MzZhZQ==","keyName":"app.demo.color0","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWUxN2M2ZGIwLWU4NjYtNGM5Yi1iNmRjLTE2MjE2ZTJlM2MxZQ==","keyName":"app.demo.color1","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTQ0MTZhYzIyLTIxOGEtNGQ0Ni1iNjhjLTY4MmFmYTJiNmJmMw==","keyName":"app.demo.color2","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTk4NGQ4MDc2LWIxNGQtNGI1My05MmE0LTY4ZjllMDEwOGZhMw==","keyName":"app.demo.delay","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTliNmU4NzJkLTFiNjYtNDVlNS04ZmY0LTA3ZDcyMDEyOThjNw==","keyName":"app.demo.height","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWUyMzFkZmUyLWRmYTUtNDY5NS05NDc0LWFlOWI5MGEyZWYzYg==","keyName":"app.demo.label0","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTk1OGJjMmM4LTgwZjEtNDU2OC1hODY3LWYzMjEzOGFhODJmYg==","keyName":"app.demo.label1","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWVlM2JhY2E0LWEyNzQtNDMzOC05NGQyLWUyNzdjMGJhYTJhMQ==","keyName":"app.demo.label2","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTdjNjcwOTJhLTkzNTgtNGFkYy04NDI5LTExOWUxNGI1NmExMw==","keyName":"app.demo.max_instances","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTM4NjJhNzIxLTNkNGUtNDY2NC1iMTQ2LTBjOWUxMDM5ZjIyMw==","keyName":"app.demo.num_frames","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTRjZjJjOGViLTE4NzUtNDU0YS05MjZiLWY3Mzc0NWUxZWQ4Mw==","keyName":"app.demo.num_retries","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWM1ZmQzYWVmLWFkODUtNDRhMi1hYjFlLTVkODM3ZGQ1YjE3Yg==","keyName":"app.demo.series0","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTFmMWI1NWUzLWExNDMtNDg4NC1iYTk5LTA5YTc1NmQ4ZTRiNQ==","keyName":"app.demo.series1","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWMwNWFlYzgyLTJjNjYtNGViNS1hNjc5LWIwNTkzZjZkYjRmYw==","keyName":"app.demo.series2","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWNiMzU2YmE2LTkzZmEtNDk3NC1hMDQ3LTU3NWU3OTEzMzExZA==","keyName":"app.demo.timeout","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWVmMWE0OTI5LTJlMzgtNDliZi1iYzlmLWI3OWMyOTIyZjJiOA==","keyName":"app.demo.width","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWE5ZThjMTViLTk4ZTgtNGI5Mi1hNDFkLWNkMmNmOTk4MTUwOQ==","keyName":"aws_account_id","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY1YmMzMWY2LTdlNzgtNGQ2OC1iMzU5LWE5ZDcyNzlmMzA3Zg==","keyName":"aws_region","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWFlOTgzZjhiLTk3NTQtNGM2YS1hOTgyLWE3ZTI4MTIwOGYxMQ==","keyName":"cfdemo.bucket","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTg4MWE4ZmQyLTRjY2UtNDM3Ni05MWZkLTU1MjU4YmUzOTg5OA==","keyName":"cfdemo.message","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWE1ODZlY2I3LWMxMzQtNDA5Yi05ZTBiLTU1Yzc1MGIyZDc0MA==","keyName":"deploy.services.kubecfg","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTRhODkzMzgxLTE0NGUtNDZhNC04YTdmLWRmYjEzYWFkNDZiZQ==","keyName":"deployer_aws_access_key","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWIxMjNjZDJjLWEyYmUtNDdmOC05MzEwLWIwOTAwMDNlM2M1Yg==","keyName":"deployer_aws_access_secret","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLThlYjQ5NGFlLTc3NTUtNGNjNy04ODUzLTZmYTc5OTEyMDc1Mw==","keyName":"domain","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTFkMDNkMzU3LWJjODEtNGZkNy05YWIwLWFmZGU1OGViODIyYw==","keyName":"environment","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY5M2FiZTY0LTIxMzItNDA5MS05MWQ5LWZlNTJhMzg4ODEwNg==","keyName":"foo","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWEzYzhiYzkxLWE1ODUtNDFmNi1hMTE3LTMyYzU5NzcxOGMwMQ==","keyName":"myvalue","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTcyMGRkNDNjLTkwZGQtNDNjMi04MjJlLWU0YmQ3OGY2ZDkwMA==","keyName":"ops.az_count","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTI0NDBjYWUyLTAwOGYtNDVmYS05YmE2LTBjMmVmOGM0NGRlYg==","keyName":"ops.db_sizing.some-rds.count","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTA3YjY4ZGM3LTVlZmQtNGFmNS04NzhiLTNmODkzYjU5MzA1Ng==","keyName":"ops.db_sizing.some-rds.type","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTZiZjBhM2E5LTQzNmUtNDA1OS1iNjMzLWQzMDc2Nzk1NGNhZg==","keyName":"ops.force_destroy_buckets","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTE0YjkxNzRlLTRhNDgtNGQ1OS05ZTIwLTU1MGRiOWEyZGIxYg==","keyName":"ops.force_destroy_zones","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWEzNjkwYmJlLTM2YTktNGFjYy1iZTliLTdlM2M3ZDc2Yzg5Yw==","keyName":"ops.global_name_prefix","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTQyZjRmZWQ3LWQ4MzAtNDczZC1iYTAzLTYxOTViMThkNWIyZA==","keyName":"ops.is_dev","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTgzOTkzZDFkLTE5ZjgtNDBiMC1iM2E5LTA4ZmUxNDFmMThmYg==","keyName":"ops.local_name_prefix","isSecret":false,"environmentValue":{"parameterValue":null}},{"id":"UGFyYW1ldGVyLWQzMmNhOGU2LWRmNDYtNGU2YS04ZjExLTU5YjUwYTJlM2QwMg==","keyName":"ops.logs_bucket","isSecret":false,"environmentValue":{"parameterValue":null}},{"id":"UGFyYW1ldGVyLWU4MDgwYjFjLWNhYjAtNDk0My1hZDIzLWYwZjRjYmFlNjBkMg==","keyName":"ops.ops_email","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTYzY2YxNDY0LWIxMTgtNDc5NS1hNDRmLWY4OWVmMzkxMzczMQ==","keyName":"ops.org","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTU3M2QzYzRhLTcwYTItNDA1Ni04YWY5LTJhYjEyNTZjMGQzNQ==","keyName":"ops.org_prefix","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTIxZjFjODkzLTg0NzEtNDA1Yy04YWJmLTQxOTNhM2E2ZTBlZg==","keyName":"ops.service_sizing.bigboy.cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTllMjIzNjc5LWRhZjAtNDliNy1hMzk1LTVjYTEzZDYzN2I5OQ==","keyName":"ops.service_sizing.bigboy.max_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTM0MDY4ZDEwLTQyYTEtNDBlZS1hNmVhLTAwNGM2ZjQxMjJjYg==","keyName":"ops.service_sizing.bigboy.memory","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWQ0NWQzZjY0LTJkNGEtNDU4ZC05MTM5LTg1ZmFjYTBlMTNkMg==","keyName":"ops.service_sizing.bigboy.min_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTUzYzRjZTAwLWE1MGMtNDQyNS1iMjUzLTJiNmM1MmNiN2Q5Mg==","keyName":"ops.service_sizing_default.cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTNiMGFjMGNjLWZlMGUtNDM3Mi1iZDQ0LTI1NGVlNmM0NjA5ZQ==","keyName":"ops.service_sizing_default.max_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTRlMTY4MzRmLWEyZGMtNDNlZS04ZmQ1LTNlZTZlMmM3MzQ5OA==","keyName":"ops.service_sizing_default.memory","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTNkODI1NjM1LWM4MDAtNDVlYS1hYjEwLWRhZTU3MTc5ZGIzMQ==","keyName":"ops.service_sizing_default.min_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTA5NTRjZDYzLTM0N2MtNGRlOC1iOTE4LTdlNDVmYjA2ZTIxMw==","keyName":"ops.skip_final_snapshot","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWYyN2VhNjc5LTg4YjEtNGNiMi05M2QwLTc3Y2ZiYjkyNDYzNQ==","keyName":"ops.vpc_cidr","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWYzYTc1ZjUwLWRlYmItNDc2NC1hMzE4LTBiYmM5NTJjMmMzMg==","keyName":"ops.vpc_enable_nat","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWJlZDllMjg1LTM5Y2EtNDM0Yy04ODVjLWQ0NmFkODAxMjkxYw==","keyName":"ops.vpc_enable_redundant_nat","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTdlZDJhNjUzLTI3YjgtNGU1ZS1hZWEyLWZlY2FlMjYzNzE5Nw==","keyName":"ops.website_bucket","isSecret":false,"environmentValue":{"parameterValue":null}},{"id":"UGFyYW1ldGVyLWFhN2VmZWQyLTQyM2EtNGRlMy05MjAxLTU5NTYxNTU1MjA3NQ==","keyName":"service.demo1.token","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWNmM2I4NjI2LWNlZWMtNDBiMS05YjkwLTYxMjEyYjQ4YjRjNQ==","keyName":"service.demo2.limit","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWQ0Mzg5YzdkLTI3ZDUtNGFkNC1hMjQwLWRhYTM5OTBlNzM4Yw==","keyName":"service.demo2.min","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWYwMzkzYmIzLWZhY2QtNDY0MS04MmUwLWNiMTJhYzNiN2VlYg==","keyName":"service.demo2.mykey","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLThkYWQ5NDZlLTdjMDQtNDI1OS05YTJmLTRhYmZkOGFiMmM3NQ==","keyName":"service.demo2.other","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWNlNTViNDY0LWExZTMtNGJmYi05MjRhLWRlOTYzNDQ3ZGRlZQ==","keyName":"service.demo3.foo","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY3YzYzMjc5LWY1M2ItNDUzYi1hNmI2LTc5NGJmNjE1ZTI5Nw==","keyName":"service.demo4.bar","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTI1ZmVmNDRiLWI2ZTMtNDg1Zi05MjQ0LWFjMzg0YjBjMzAwZQ==","keyName":"some_config","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTgxMWNmOTJjLTk4Y2MtNGZlYi04M2I1LTc3MmMzMTEzNjZiMg==","keyName":"svc.demo.active","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWU4YWNmMDIwLWEyNWUtNDgyOS04ZTdhLTU4ZGU1YWE4Zjg2Yg==","keyName":"svc.demo.enable_logging","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWFjZGVkMTQyLWIyZGYtNDkxMy1hZjU3LTY0ODJjNjhjYjVjOA==","keyName":"svc.demo.max_cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWJiZTZmNTcyLTVkM2UtNDZkYS1iMmQ1LTJkODlkODVhNGU0MQ==","keyName":"svc.demo.max_retries","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWUxNmJhYjM3LWFjYjItNGJiOS1iODc0LWMxYWFiNjA2OTFjNA==","keyName":"svc.demo.min_cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWJhYmFhZTM3LTMyNTMtNDE5NC05N2E1LWIyNDYyZjNiNTAyYw==","keyName":"svc.demo.region","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTI0ZGI2MGY2LWU2ODMtNDIzNi1iYmRmLTQ1ZWUzMGU3MDFjZA==","keyName":"svc.demo.timeout","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTUwODMzMWI3LThjNDAtNDkyYi05NjUyLWI4ZTc2MDM0YzIxMQ==","keyName":"web.app.background_color","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTJhNzI2MDUxLTRkNTEtNDBiZi05ZmJiLTQ4Mjg3NTBmMjAwMQ==","keyName":"web.app.polling_interval","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY4MjNlYWFkLWE4ZTEtNGRhYy05YTJlLTBjZWFkMDYzZjliZg==","keyName":"web_bucket","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTBjZWFjZjZiLTg4MzItNGZkZi1hNDk1LTQzNWJlNGRkNWFkOQ==","keyName":"web_distribution_id","isSecret":false,"environmentValue":{"parameterValue":""}}]}}}}}}' + recorded_at: Tue, 27 Apr 2021 14:10:54 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/CtApi/_parameters/gets_parameters_without_a_search.yml b/spec/fixtures/vcr/CtApi/_parameters/gets_parameters_without_a_search.yml index e484ab9..6b58a23 100644 --- a/spec/fixtures/vcr/CtApi/_parameters/gets_parameters_without_a_search.yml +++ b/spec/fixtures/vcr/CtApi/_parameters/gets_parameters_without_a_search.yml @@ -25,7 +25,7 @@ http_interactions: Accept: - application/json User-Agent: - - kubetruth/0.2.0 + - kubetruth/0.3.0 Content-Type: - application/json Authorization: @@ -36,7 +36,7 @@ http_interactions: message: OK headers: Date: - - Wed, 17 Feb 2021 15:58:15 GMT + - Tue, 27 Apr 2021 14:10:56 GMT Content-Type: - application/json; charset=utf-8 Transfer-Encoding: @@ -55,19 +55,19 @@ http_interactions: - none Referrer-Policy: - strict-origin-when-cross-origin + Vary: + - Accept, Origin Etag: - - W/"9fb738763ccd7d76282a12d15db153be" + - W/"75ec2b3ba6f57bc364b5a38b5e8f606b" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - b3273cc6-5d75-4bc0-846a-b8227bff2132 + - a857254e-58b5-42c5-9ad1-d4a97de01212 X-Runtime: - - '0.615909' - Vary: - - Origin + - '0.954585' body: encoding: UTF-8 - string: '{"data":{"__schema":{"queryType":{"name":"Query"},"mutationType":{"name":"Mutation"},"subscriptionType":null,"types":[{"kind":"OBJECT","name":"AuditLogSnapshot","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fileUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SnapshotStatusEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditLogSnapshotConnection","description":"The + string: '{"data":{"__schema":{"queryType":{"name":"Query"},"mutationType":{"name":"Mutation"},"subscriptionType":null,"types":[{"kind":"OBJECT","name":"AuditLogSnapshot","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fileUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SnapshotStatusEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditLogSnapshotConnection","description":"The connection type for AuditLogSnapshot.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AuditLogSnapshotEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -76,7 +76,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditLogSnapshotEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegration","description":null,"fields":[{"name":"accountId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"enabledServices","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsIntegrationEnum","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"externalId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"roleName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegrationConnection","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegration","description":null,"fields":[{"name":"accountId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"enabledServices","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsIntegrationEnum","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"externalId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"roleName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegrationConnection","description":"The connection type for AwsIntegration.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegrationEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegration","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -85,7 +85,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegrationEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AwsIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AwsIntegrationEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"S3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SSM","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"Boolean","description":"Represents + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AwsIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AwsIntegrationEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"S3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SSM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SECRETS_MANAGER","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INTERFACE","name":"BasePolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"InvitationPolicy","ofType":null},{"kind":"OBJECT","name":"NodePolicy","ofType":null},{"kind":"OBJECT","name":"OrganizationPolicy","ofType":null}]},{"kind":"SCALAR","name":"Boolean","description":"Represents `true` or `false` values.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateAuditLogSnapshotInput","description":"Autogenerated input type of CreateAuditLogSnapshot","fields":null,"inputFields":[{"name":"organizationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateAuditLogSnapshotPayload","description":"Autogenerated @@ -107,19 +107,27 @@ http_interactions: unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateInvitationPayload","description":"Autogenerated return type of CreateInvitation","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"invitation","description":null,"args":[],"type":{"kind":"OBJECT","name":"Invitation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateOrganizationInput","description":"Autogenerated - input type of CreateOrganization","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + input type of CreateOrganization","fields":null,"inputFields":[{"name":"eaorgid","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateOrganizationPayload","description":"Autogenerated return type of CreateOrganization","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateParameterInput","description":"Autogenerated - input type of CreateParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + input type of CreateParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateParameterPayload","description":"Autogenerated return type of CreateParameter","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreatePersonalAccessTokenInput","description":"Autogenerated input type of CreatePersonalAccessToken","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"writeAccess","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreatePersonalAccessTokenPayload","description":"Autogenerated return type of CreatePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","description":"Autogenerated - input type of CreateTemplate","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateProjectInput","description":"Autogenerated + input type of CreateProject","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateProjectPayload","description":"Autogenerated + return type of CreateProject","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateServiceAccountInput","description":"Autogenerated + input type of CreateServiceAccount","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateServiceAccountPayload","description":"Autogenerated + return type of CreateServiceAccount","fields":[{"name":"apiToken","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"serviceAccount","description":null,"args":[],"type":{"kind":"OBJECT","name":"ServiceAccount","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","description":"Autogenerated + input type of CreateTemplate","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateTemplatePayload","description":"Autogenerated return type of CreateTemplate","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteAllPersonalAccessTokensInput","description":"Autogenerated @@ -142,7 +150,11 @@ http_interactions: input type of DeleteInvitation","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteInvitationPayload","description":"Autogenerated return type of DeleteInvitation","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedInvitationId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedInvitationId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteMembershipInput","description":"Autogenerated + input type of DeleteMembership","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteMembershipPayload","description":"Autogenerated + return type of DeleteMembership","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedMembershipId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","description":"Autogenerated input type of DeleteParameter","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteParameterPayload","description":"Autogenerated return type of DeleteParameter","fields":[{"name":"clientMutationId","description":"A @@ -150,7 +162,15 @@ http_interactions: input type of DeletePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeletePersonalAccessTokenPayload","description":"Autogenerated return type of DeletePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedPersonalAccessTokenId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedPersonalAccessTokenId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteProjectInput","description":"Autogenerated + input type of DeleteProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteProjectPayload","description":"Autogenerated + return type of DeleteProject","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteServiceAccountInput","description":"Autogenerated + input type of DeleteServiceAccount","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteServiceAccountPayload","description":"Autogenerated + return type of DeleteServiceAccount","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedServiceAccountId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","description":"Autogenerated input type of DeleteTemplate","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteTemplatePayload","description":"Autogenerated return type of DeleteTemplate","fields":[{"name":"clientMutationId","description":"A @@ -158,7 +178,7 @@ http_interactions: the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[{"name":"parameterId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterValue","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentConnection","description":"The + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[{"name":"parameterId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterValue","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentConnection","description":"The connection type for Environment.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -167,11 +187,11 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentValue","description":null,"fields":[{"name":"environment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integrationFile","description":null,"args":[],"type":{"kind":"OBJECT","name":"IntegrationFile","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"jmesPath","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EnvironmentValueTypeEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"EnvironmentValueTypeEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"STATIC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DYNAMIC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","description":"Autogenerated + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentValue","description":null,"fields":[{"name":"environment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integrationFile","description":null,"args":[],"type":{"kind":"OBJECT","name":"IntegrationFile","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"jmesPath","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EnvironmentValueTypeEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"EnvironmentValueTypeEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"STATIC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DYNAMIC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ExportParameters","description":null,"fields":[{"name":"evaluated","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ExportParametersFormatEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"DOCKER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DOTENV","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SHELL","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ExportParametersOptions","description":null,"fields":null,"inputFields":[{"name":"secrets","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"export","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"startsWith","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"endsWith","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"contains","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","description":"Autogenerated input type of FakeOrganizationData","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FakeOrganizationDataPayload","description":"Autogenerated return type of FakeOrganizationData","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegration","description":null,"fields":[{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"availableRepositoryCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"installationUrl","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegrationConnection","description":"The + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegration","description":null,"fields":[{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"availableRepositoryCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"installationUrl","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegrationConnection","description":"The connection type for GithubIntegration.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"GithubIntegrationEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"GithubIntegration","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -180,7 +200,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegrationEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"GithubIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"ID","description":"Represents + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"GithubIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"HasPolicy","description":null,"fields":[{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"BasePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"ServiceAccount","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null}]},{"kind":"SCALAR","name":"ID","description":"Represents a unique identifier that is Base64 obfuscated. It is often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected @@ -201,7 +221,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"IntegrationTreeEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Invitation","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberEmail","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberRole","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InvitationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationConnection","description":"The + item at the end of the edge.","args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Invitation","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberEmail","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberRole","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationPolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InvitationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationConnection","description":"The connection type for Invitation.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Invitation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -210,7 +230,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Invitation","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"InvitationStateEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ACCEPTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DECLINED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PENDING","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Membership","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pictureUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MembershipConnection","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Invitation","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationPolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resend","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"InvitationStateEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ACCEPTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DECLINED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PENDING","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Membership","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pictureUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MembershipConnection","description":"The connection type for Membership.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Membership","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -219,8 +239,45 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MembershipEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"MembershipRoleEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ADMIN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CONTRIBUTOR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VIEWER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"OWNER","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Mutation","description":null,"fields":[{"name":"createAuditLogSnapshot","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAuditLogSnapshotInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAuditLogSnapshotPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createAwsIntegration","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createEnvironment","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createGithubSetupToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateGithubSetupTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateGithubSetupTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createInvitation","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createOrganization","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrganizationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateOrganizationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createParameter","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createPersonalAccessToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createTemplate","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAllPersonalAccessTokens","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAllPersonalAccessTokensInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAllPersonalAccessTokensPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAwsIntegration","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteEnvironment","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteGithubIntegration","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteGithubIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteGithubIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteInvitation","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteParameter","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deletePersonalAccessToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeletePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeletePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteTemplate","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fakeOrganizationData","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"FakeOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"regeneratePersonalAccessToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RegeneratePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resetOrganizationData","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResetOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateAwsIntegration","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateEnvironment","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateInvitation","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateMembership","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateMembershipInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateMembershipPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateParameter","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatePersonalAccessToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateTemplate","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"upsertParameter","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpsertParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpsertParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"Node","description":"An - object with an ID.","fields":[{"name":"id","description":"ID of the object.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"IntegrationFile","ofType":null},{"kind":"OBJECT","name":"IntegrationFileTree","ofType":null},{"kind":"OBJECT","name":"IntegrationServiceTree","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null},{"kind":"OBJECT","name":"Viewer","ofType":null}]},{"kind":"ENUM","name":"OrderByEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DESC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Organization","description":null,"fields":[{"name":"auditLogSnapshots","description":null,"args":[{"name":"after","description":"Returns + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"MembershipRoleEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ADMIN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CONTRIBUTOR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VIEWER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"OWNER","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Mutation","description":null,"fields":[{"name":"createAuditLogSnapshot","description":null,"args":[{"name":"input","description":"Parameters + for CreateAuditLogSnapshot","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAuditLogSnapshotInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAuditLogSnapshotPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters + for CreateAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createEnvironment","description":null,"args":[{"name":"input","description":"Parameters + for CreateEnvironment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createGithubSetupToken","description":null,"args":[{"name":"input","description":"Parameters + for CreateGithubSetupToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateGithubSetupTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateGithubSetupTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createInvitation","description":null,"args":[{"name":"input","description":"Parameters + for CreateInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createOrganization","description":null,"args":[{"name":"input","description":"Parameters + for CreateOrganization","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrganizationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateOrganizationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createParameter","description":null,"args":[{"name":"input","description":"Parameters + for CreateParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createPersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for CreatePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createProject","description":null,"args":[{"name":"input","description":"Parameters + for CreateProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createServiceAccount","description":null,"args":[{"name":"input","description":"Parameters + for CreateServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateServiceAccountPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createTemplate","description":null,"args":[{"name":"input","description":"Parameters + for CreateTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAllPersonalAccessTokens","description":null,"args":[{"name":"input","description":"Parameters + for DeleteAllPersonalAccessTokens","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAllPersonalAccessTokensInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAllPersonalAccessTokensPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters + for DeleteAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteEnvironment","description":null,"args":[{"name":"input","description":"Parameters + for DeleteEnvironment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteGithubIntegration","description":null,"args":[{"name":"input","description":"Parameters + for DeleteGithubIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteGithubIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteGithubIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteInvitation","description":null,"args":[{"name":"input","description":"Parameters + for DeleteInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteMembership","description":null,"args":[{"name":"input","description":"Parameters + for DeleteMembership","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteMembershipInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteMembershipPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteParameter","description":null,"args":[{"name":"input","description":"Parameters + for DeleteParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deletePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for DeletePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeletePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeletePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteProject","description":null,"args":[{"name":"input","description":"Parameters + for DeleteProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteServiceAccount","description":null,"args":[{"name":"input","description":"Parameters + for DeleteServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteServiceAccountPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteTemplate","description":null,"args":[{"name":"input","description":"Parameters + for DeleteTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fakeOrganizationData","description":null,"args":[{"name":"input","description":"Parameters + for FakeOrganizationData","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"FakeOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refreshServiceAccountApiToken","description":null,"args":[{"name":"input","description":"Parameters + for RefreshServiceAccountApiToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RefreshServiceAccountApiTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RefreshServiceAccountApiTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"regeneratePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for RegeneratePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RegeneratePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resendInvitation","description":null,"args":[{"name":"input","description":"Parameters + for ResendInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResendInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResendInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resetOrganizationData","description":null,"args":[{"name":"input","description":"Parameters + for ResetOrganizationData","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResetOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters + for UpdateAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateEnvironment","description":null,"args":[{"name":"input","description":"Parameters + for UpdateEnvironment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateInvitation","description":null,"args":[{"name":"input","description":"Parameters + for UpdateInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateMembership","description":null,"args":[{"name":"input","description":"Parameters + for UpdateMembership","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateMembershipInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateMembershipPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateOrganization","description":null,"args":[{"name":"input","description":"Parameters + for UpdateOrganization","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateOrganizationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateOrganizationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateParameter","description":null,"args":[{"name":"input","description":"Parameters + for UpdateParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for UpdatePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateProject","description":null,"args":[{"name":"input","description":"Parameters + for UpdateProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateTemplate","description":null,"args":[{"name":"input","description":"Parameters + for UpdateTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"upsertParameter","description":null,"args":[{"name":"input","description":"Parameters + for UpsertParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpsertParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpsertParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"Node","description":"An + object with an ID.","fields":[{"name":"id","description":"ID of the object.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"IntegrationFile","ofType":null},{"kind":"OBJECT","name":"IntegrationFileTree","ofType":null},{"kind":"OBJECT","name":"IntegrationServiceTree","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"ServiceAccount","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null},{"kind":"OBJECT","name":"Viewer","ofType":null}]},{"kind":"OBJECT","name":"NodePolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"OrderByEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DESC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Organization","description":null,"fields":[{"name":"auditLogSnapshots","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns @@ -228,11 +285,12 @@ http_interactions: the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegrationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"environment","description":null,"args":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environments","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegrationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"defaultProject","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"environment","description":null,"args":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environments","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"evaluateTemplate","description":null,"args":[{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TemplateEvaluation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"githubIntegrations","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"evaluateTemplate","description":null,"args":[{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TemplateEvaluation","ofType":null},"isDeprecated":true,"deprecationReason":"Use + project instead."},{"name":"githubIntegrations","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns @@ -244,11 +302,13 @@ http_interactions: the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberships","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"state","description":"Filter + invitation list by state.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InvitationStateEnum","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberships","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"userType","description":"Optionally + filter by user type.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns @@ -256,21 +316,27 @@ http_interactions: order for parameters.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","ofType":null}}},"defaultValue":null},{"name":"searchTerm","description":"Search over parameter names.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"where","description":"Filter parameter list.","type":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null},"defaultValue":null},{"name":"keyNames","description":"List - of key names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + of key names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrganizationPolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projects","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ProjectConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionExpiresAt","description":null,"args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionId","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionPlanId","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionPlanName","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"names","description":"List - of template names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursor","description":null,"fields":[{"name":"cursor","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isCurrent","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageNumber","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursors","description":null,"fields":[{"name":"around","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageCursor","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"first","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"last","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previous","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageInfo","description":"Information + of template names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"vaultId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"OrganizationPolicy","description":null,"fields":[{"name":"createEnvironment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createIntegration","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createInvitation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createParameter","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Everything + will go through project in the near future."},{"name":"createProject","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createTemplate","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Everything + will go through the project in the near future."},{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursor","description":null,"fields":[{"name":"cursor","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isCurrent","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageNumber","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursors","description":null,"fields":[{"name":"around","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageCursor","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"first","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"last","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previous","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageInfo","description":"Information about pagination in a connection.","fields":[{"name":"endCursor","description":"When paginating forwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasNextPage","description":"When paginating forwards, are there more items?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasPreviousPage","description":"When paginating backwards, are there more items?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"startCursor","description":"When - paginating backwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Parameter","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValue","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValues","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"hasDynamicValue","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isSecret","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"keyName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + paginating backwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Parameter","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValue","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValues","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"hasDynamicValue","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isSecret","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"keyName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","description":null,"fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"keyName","description":null,"type":{"kind":"INPUT_OBJECT","name":"StringComparisonExp","ofType":null},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"INPUT_OBJECT","name":"IdComparisonExp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterConnection","description":"The + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","description":null,"fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"keyName","description":null,"type":{"kind":"INPUT_OBJECT","name":"StringComparisonExp","ofType":null},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"INPUT_OBJECT","name":"IdComparisonExp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterConnection","description":"The connection type for Parameter.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Parameter","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -279,7 +345,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","description":null,"fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null},{"name":"updatedAt","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterValue","description":null,"fields":[{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessToken","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastUsed","description":null,"args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"writeAccess","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessTokenConnection","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","description":null,"fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null},{"name":"updatedAt","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterValue","description":null,"fields":[{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessToken","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastUsed","description":null,"args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"writeAccess","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessTokenConnection","description":"The connection type for PersonalAccessToken.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PersonalAccessTokenEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -288,20 +354,51 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessTokenEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Query","description":null,"fields":[{"name":"node","description":"Fetches + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Project","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"defaultForOrganization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"evaluateTemplate","description":null,"args":[{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TemplateEvaluation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"exportParameters","description":null,"args":[{"name":"format","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ExportParametersFormatEnum","ofType":null}},"defaultValue":null},{"name":"options","description":null,"type":{"kind":"INPUT_OBJECT","name":"ExportParametersOptions","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ExportParameters","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"orderBy","description":"Sort + order for parameters.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","ofType":null}}},"defaultValue":null},{"name":"searchTerm","description":"Search + over parameter names.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"where","description":"Filter + parameter list.","type":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null},"defaultValue":null},{"name":"keyNames","description":"List + of key names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"names","description":"List + of template names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectConnection","description":"The + connection type for Project.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ProjectEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Query","description":null,"fields":[{"name":"node","description":"Fetches an object given its ID.","args":[{"name":"id","description":"ID of the object.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"INTERFACE","name":"Node","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"Fetches a list of objects given a list of IDs.","args":[{"name":"ids","description":"IDs - of the objects.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INTERFACE","name":"Node","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","description":"Autogenerated + of the objects.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INTERFACE","name":"Node","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RefreshServiceAccountApiTokenInput","description":"Autogenerated + input type of RefreshServiceAccountApiToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RefreshServiceAccountApiTokenPayload","description":"Autogenerated + return type of RefreshServiceAccountApiToken","fields":[{"name":"apiToken","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"serviceAccount","description":null,"args":[],"type":{"kind":"OBJECT","name":"ServiceAccount","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","description":"Autogenerated input type of RegeneratePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RegeneratePersonalAccessTokenPayload","description":"Autogenerated return type of RegeneratePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ResendInvitationInput","description":"Autogenerated + input type of ResendInvitation","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ResendInvitationPayload","description":"Autogenerated + return type of ResendInvitation","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"invitation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Invitation","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","description":"Autogenerated input type of ResetOrganizationData","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ResetOrganizationDataPayload","description":"Autogenerated return type of ResetOrganizationData","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SnapshotStatusEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"REQUESTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PROCESSING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AVAILABLE","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"String","description":"Represents + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ServiceAccount","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SnapshotStatusEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"REQUESTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PROCESSING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AVAILABLE","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"String","description":"Represents textual data as UTF-8 character sequences. This type is most often used by - GraphQL to represent free-form human-readable text.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"StringComparisonExp","description":null,"fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Template","description":null,"fields":[{"name":"body","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"evaluated","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TemplateConnection","description":"The + GraphQL to represent free-form human-readable text.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"StringComparisonExp","description":null,"fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Template","description":null,"fields":[{"name":"body","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"evaluated","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":true,"deprecationReason":"Use + project instead."},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TemplateConnection","description":"The connection type for Template.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Template","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -326,7 +423,11 @@ http_interactions: input type of UpdateMembership","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateMembershipPayload","description":"Autogenerated return type of UpdateMembership","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"membership","description":null,"args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"membership","description":null,"args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateOrganizationInput","description":"Autogenerated + input type of UpdateOrganization","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateOrganizationPayload","description":"Autogenerated + return type of UpdateOrganization","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","description":"Autogenerated input type of UpdateParameter","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"integrationFileId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"integrationFileFqn","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"jmesPath","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateParameterPayload","description":"Autogenerated return type of UpdateParameter","fields":[{"name":"clientMutationId","description":"A @@ -334,12 +435,16 @@ http_interactions: input type of UpdatePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"writeAccess","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdatePersonalAccessTokenPayload","description":"Autogenerated return type of UpdatePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateProjectInput","description":"Autogenerated + input type of UpdateProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateProjectPayload","description":"Autogenerated + return type of UpdateProject","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","description":"Autogenerated input type of UpdateTemplate","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"body","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateTemplatePayload","description":"Autogenerated return type of UpdateTemplate","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpsertParameterInput","description":"Autogenerated - input type of UpsertParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + input type of UpsertParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpsertParameterPayload","description":"Autogenerated return type of UpsertParameter","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserError","description":"A @@ -358,7 +463,7 @@ http_interactions: validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL''s execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives - provide this by describing additional information to the executor.","fields":[{"name":"args","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locations","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__DirectiveLocation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"onField","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use + provide this by describing additional information to the executor.","fields":[{"name":"args","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locations","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__DirectiveLocation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"onField","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."},{"name":"onFragment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."},{"name":"onOperation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__DirectiveLocation","description":"A @@ -386,11 +491,11 @@ http_interactions: for a string or numeric value. However an Enum value is returned in a JSON response as a string.","fields":[{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Field","description":"Object and Interface types are described by a list of Fields, each of which has a - name, potentially a list of arguments, and a return type.","fields":[{"name":"args","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__InputValue","description":"Arguments + name, potentially a list of arguments, and a return type.","fields":[{"name":"args","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__InputValue","description":"Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.","fields":[{"name":"defaultValue","description":"A GraphQL-formatted - string representing the default value for this input value.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Schema","description":"A + string representing the default value for this input value.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Schema","description":"A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.","fields":[{"name":"directives","description":"A @@ -407,7 +512,7 @@ http_interactions: types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at - runtime. List and NonNull types compose other types.","fields":[{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"enumValues","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__EnumValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"fields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Field","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"inputFields","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"interfaces","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__TypeKind","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"ofType","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"possibleTypes","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__TypeKind","description":"An + runtime. List and NonNull types compose other types.","fields":[{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"enumValues","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__EnumValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"fields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Field","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"inputFields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"interfaces","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__TypeKind","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"ofType","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"possibleTypes","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__TypeKind","description":"An enum describing what kind of type a given `__Type` is.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"SCALAR","description":"Indicates this type is a scalar.","isDeprecated":false,"deprecationReason":null},{"name":"OBJECT","description":"Indicates this type is an object. `fields` and `interfaces` are valid fields.","isDeprecated":false,"deprecationReason":null},{"name":"INTERFACE","description":"Indicates @@ -422,26 +527,26 @@ http_interactions: when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"skip","description":"Directs the executor to skip this field or fragment when the `if` argument is true.","locations":["FIELD","FRAGMENT_SPREAD","INLINE_FRAGMENT"],"args":[{"name":"if","description":"Skipped when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"deprecated","description":"Marks - an element of a GraphQL schema as no longer supported.","locations":["FIELD_DEFINITION","ENUM_VALUE"],"args":[{"name":"reason","description":"Explains + an element of a GraphQL schema as no longer supported.","locations":["FIELD_DEFINITION","ENUM_VALUE","ARGUMENT_DEFINITION","INPUT_FIELD_DEFINITION"],"args":[{"name":"reason","description":"Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted in [Markdown](https://daringfireball.net/projects/markdown/).","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"\"No longer supported\""}]}]}}}' - recorded_at: Wed, 17 Feb 2021 15:58:14 GMT + recorded_at: Tue, 27 Apr 2021 14:10:50 GMT - request: method: post uri: https://api.cloudtruth.com/graphql body: encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_110140($organizationId: + string: '{"query":"query GraphQL__Client__OperationDefinition_150820($organizationId: ID) {\n viewer {\n organization(id: $organizationId) {\n environments - {\n nodes {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_110140"}' + {\n nodes {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_150820"}' headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - application/json User-Agent: - - kubetruth/0.2.0 + - kubetruth/0.3.0 Content-Type: - application/json Authorization: @@ -452,7 +557,7 @@ http_interactions: message: OK headers: Date: - - Wed, 17 Feb 2021 15:58:15 GMT + - Tue, 27 Apr 2021 14:10:56 GMT Content-Type: - application/json; charset=utf-8 Transfer-Encoding: @@ -471,37 +576,38 @@ http_interactions: - none Referrer-Policy: - strict-origin-when-cross-origin + Vary: + - Accept, Origin Etag: - - W/"65ef7ec24337fc3df9a19032eaf15852" + - W/"4216eb2052c7088952da5a9791e740cd" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - 13b9536a-928c-44cd-9f00-4ee97637d060 + - 32b12545-1f96-43b3-9bd9-99a6b9737aee X-Runtime: - - '0.024193' - Vary: - - Origin + - '0.044899' body: encoding: UTF-8 - string: '{"data":{"viewer":{"organization":{"environments":{"nodes":[{"id":"RW52aXJvbm1lbnQtZjk3MDI1NGEtNGQ0NS00YTA1LWJiYjctOTRjZTdhOGRmODky","name":"default"},{"id":"RW52aXJvbm1lbnQtOGRmMTVjMjYtN2FhZi00ODE5LWJlNzYtMTVmMzU2YzQ5YTg1","name":"production"},{"id":"RW52aXJvbm1lbnQtNmI5M2NlMWEtMTVkMS00MzRiLTg1NTAtODhjZDZhY2ZjYzU4","name":"development"},{"id":"RW52aXJvbm1lbnQtY2EyMDA0YzctZjQ3Mi00MzFlLWIyODgtNzg0NmYzMTBmMGZj","name":"ops"},{"id":"RW52aXJvbm1lbnQtMzY4MWRkMjctZDY2YS00NjdlLWI1NzMtYmI2YzU0ZmFjZDM1","name":"staging"},{"id":"RW52aXJvbm1lbnQtZWE3MzBjYmMtYzg1Zi00M2M1LTlkNjgtY2Q5NTlmMmNhYjQ2","name":"Dev1"}]}}}}}' - recorded_at: Wed, 17 Feb 2021 15:58:14 GMT + string: '{"data":{"viewer":{"organization":{"environments":{"nodes":[{"id":"RW52aXJvbm1lbnQtZjk3MDI1NGEtNGQ0NS00YTA1LWJiYjctOTRjZTdhOGRmODky","name":"default"},{"id":"RW52aXJvbm1lbnQtOGRmMTVjMjYtN2FhZi00ODE5LWJlNzYtMTVmMzU2YzQ5YTg1","name":"production"},{"id":"RW52aXJvbm1lbnQtNmI5M2NlMWEtMTVkMS00MzRiLTg1NTAtODhjZDZhY2ZjYzU4","name":"development"},{"id":"RW52aXJvbm1lbnQtY2EyMDA0YzctZjQ3Mi00MzFlLWIyODgtNzg0NmYzMTBmMGZj","name":"ops"},{"id":"RW52aXJvbm1lbnQtMzY4MWRkMjctZDY2YS00NjdlLWI1NzMtYmI2YzU0ZmFjZDM1","name":"staging"},{"id":"RW52aXJvbm1lbnQtZDE4NGQ1ODctYjA2Yi00OWU2LThhMGItNjU1YTM2NDQwYjRj","name":"dev-matt"}]}}}}}' + recorded_at: Tue, 27 Apr 2021 14:10:50 GMT - request: method: post uri: https://api.cloudtruth.com/graphql body: encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_110180($organizationId: - ID, $environmentId: ID, $searchTerm: String) {\n viewer {\n organization(id: - $organizationId) {\n parameters(searchTerm: $searchTerm, orderBy: {keyName: - ASC}) {\n nodes {\n id\n keyName\n isSecret\n environmentValue(environmentId: - $environmentId) {\n parameterValue\n }\n }\n }\n }\n }\n}","variables":{"searchTerm":"","environmentId":"RW52aXJvbm1lbnQtZjk3MDI1NGEtNGQ0NS00YTA1LWJiYjctOTRjZTdhOGRmODky"},"operationName":"GraphQL__Client__OperationDefinition_110180"}' + string: '{"query":"query GraphQL__Client__OperationDefinition_150860($organizationId: + ID, $environmentId: ID, $projectName: String, $searchTerm: String) {\n viewer + {\n organization(id: $organizationId) {\n project(name: $projectName) + {\n parameters(searchTerm: $searchTerm, orderBy: {keyName: ASC}) {\n nodes + {\n id\n keyName\n isSecret\n environmentValue(environmentId: + $environmentId) {\n parameterValue\n }\n }\n }\n }\n }\n }\n}","variables":{"searchTerm":"","environmentId":"RW52aXJvbm1lbnQtZjk3MDI1NGEtNGQ0NS00YTA1LWJiYjctOTRjZTdhOGRmODky"},"operationName":"GraphQL__Client__OperationDefinition_150860"}' headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - application/json User-Agent: - - kubetruth/0.2.0 + - kubetruth/0.3.0 Content-Type: - application/json Authorization: @@ -512,7 +618,7 @@ http_interactions: message: OK headers: Date: - - Wed, 17 Feb 2021 15:58:16 GMT + - Tue, 27 Apr 2021 14:10:58 GMT Content-Type: - application/json; charset=utf-8 Transfer-Encoding: @@ -531,18 +637,18 @@ http_interactions: - none Referrer-Policy: - strict-origin-when-cross-origin + Vary: + - Accept, Origin Etag: - - W/"f978a622bc5ae28c92d17d710dddb552" + - W/"fe60a28a77577e7f2c8c439ebbfce64b" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - 74e3d72f-9dc5-4432-8ce1-b79bfeb4bbb6 + - 9de3151f-5e20-4f52-8b16-99906347d049 X-Runtime: - - '0.810097' - Vary: - - Origin + - '1.047710' body: encoding: UTF-8 - string: '{"data":{"viewer":{"organization":{"parameters":{"nodes":[{"id":"UGFyYW1ldGVyLTFlZGRhNTRiLTYzOTItNDFhMS1iOTU0LWRhMjUyNjE2MzZhZQ==","keyName":"app.demo.color0","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWUxN2M2ZGIwLWU4NjYtNGM5Yi1iNmRjLTE2MjE2ZTJlM2MxZQ==","keyName":"app.demo.color1","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTQ0MTZhYzIyLTIxOGEtNGQ0Ni1iNjhjLTY4MmFmYTJiNmJmMw==","keyName":"app.demo.color2","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTk4NGQ4MDc2LWIxNGQtNGI1My05MmE0LTY4ZjllMDEwOGZhMw==","keyName":"app.demo.delay","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTliNmU4NzJkLTFiNjYtNDVlNS04ZmY0LTA3ZDcyMDEyOThjNw==","keyName":"app.demo.height","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWUyMzFkZmUyLWRmYTUtNDY5NS05NDc0LWFlOWI5MGEyZWYzYg==","keyName":"app.demo.label0","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTk1OGJjMmM4LTgwZjEtNDU2OC1hODY3LWYzMjEzOGFhODJmYg==","keyName":"app.demo.label1","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWVlM2JhY2E0LWEyNzQtNDMzOC05NGQyLWUyNzdjMGJhYTJhMQ==","keyName":"app.demo.label2","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTdjNjcwOTJhLTkzNTgtNGFkYy04NDI5LTExOWUxNGI1NmExMw==","keyName":"app.demo.max_instances","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTM4NjJhNzIxLTNkNGUtNDY2NC1iMTQ2LTBjOWUxMDM5ZjIyMw==","keyName":"app.demo.num_frames","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTRjZjJjOGViLTE4NzUtNDU0YS05MjZiLWY3Mzc0NWUxZWQ4Mw==","keyName":"app.demo.num_retries","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWM1ZmQzYWVmLWFkODUtNDRhMi1hYjFlLTVkODM3ZGQ1YjE3Yg==","keyName":"app.demo.series0","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTFmMWI1NWUzLWExNDMtNDg4NC1iYTk5LTA5YTc1NmQ4ZTRiNQ==","keyName":"app.demo.series1","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWMwNWFlYzgyLTJjNjYtNGViNS1hNjc5LWIwNTkzZjZkYjRmYw==","keyName":"app.demo.series2","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWNiMzU2YmE2LTkzZmEtNDk3NC1hMDQ3LTU3NWU3OTEzMzExZA==","keyName":"app.demo.timeout","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWVmMWE0OTI5LTJlMzgtNDliZi1iYzlmLWI3OWMyOTIyZjJiOA==","keyName":"app.demo.width","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWE5ZThjMTViLTk4ZTgtNGI5Mi1hNDFkLWNkMmNmOTk4MTUwOQ==","keyName":"aws_account_id","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY1YmMzMWY2LTdlNzgtNGQ2OC1iMzU5LWE5ZDcyNzlmMzA3Zg==","keyName":"aws_region","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWE1ODZlY2I3LWMxMzQtNDA5Yi05ZTBiLTU1Yzc1MGIyZDc0MA==","keyName":"deploy.services.kubecfg","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTRhODkzMzgxLTE0NGUtNDZhNC04YTdmLWRmYjEzYWFkNDZiZQ==","keyName":"deployer_aws_access_key","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWIxMjNjZDJjLWEyYmUtNDdmOC05MzEwLWIwOTAwMDNlM2M1Yg==","keyName":"deployer_aws_access_secret","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLThlYjQ5NGFlLTc3NTUtNGNjNy04ODUzLTZmYTc5OTEyMDc1Mw==","keyName":"domain","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTFkMDNkMzU3LWJjODEtNGZkNy05YWIwLWFmZGU1OGViODIyYw==","keyName":"environment","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWEzYzhiYzkxLWE1ODUtNDFmNi1hMTE3LTMyYzU5NzcxOGMwMQ==","keyName":"myvalue","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTcyMGRkNDNjLTkwZGQtNDNjMi04MjJlLWU0YmQ3OGY2ZDkwMA==","keyName":"ops.az_count","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTI0NDBjYWUyLTAwOGYtNDVmYS05YmE2LTBjMmVmOGM0NGRlYg==","keyName":"ops.db_sizing.some-rds.count","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTA3YjY4ZGM3LTVlZmQtNGFmNS04NzhiLTNmODkzYjU5MzA1Ng==","keyName":"ops.db_sizing.some-rds.type","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTZiZjBhM2E5LTQzNmUtNDA1OS1iNjMzLWQzMDc2Nzk1NGNhZg==","keyName":"ops.force_destroy_buckets","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTE0YjkxNzRlLTRhNDgtNGQ1OS05ZTIwLTU1MGRiOWEyZGIxYg==","keyName":"ops.force_destroy_zones","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWEzNjkwYmJlLTM2YTktNGFjYy1iZTliLTdlM2M3ZDc2Yzg5Yw==","keyName":"ops.global_name_prefix","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTQyZjRmZWQ3LWQ4MzAtNDczZC1iYTAzLTYxOTViMThkNWIyZA==","keyName":"ops.is_dev","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTgzOTkzZDFkLTE5ZjgtNDBiMC1iM2E5LTA4ZmUxNDFmMThmYg==","keyName":"ops.local_name_prefix","isSecret":false,"environmentValue":{"parameterValue":null}},{"id":"UGFyYW1ldGVyLWQzMmNhOGU2LWRmNDYtNGU2YS04ZjExLTU5YjUwYTJlM2QwMg==","keyName":"ops.logs_bucket","isSecret":false,"environmentValue":{"parameterValue":null}},{"id":"UGFyYW1ldGVyLWU4MDgwYjFjLWNhYjAtNDk0My1hZDIzLWYwZjRjYmFlNjBkMg==","keyName":"ops.ops_email","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTYzY2YxNDY0LWIxMTgtNDc5NS1hNDRmLWY4OWVmMzkxMzczMQ==","keyName":"ops.org","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTU3M2QzYzRhLTcwYTItNDA1Ni04YWY5LTJhYjEyNTZjMGQzNQ==","keyName":"ops.org_prefix","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTIxZjFjODkzLTg0NzEtNDA1Yy04YWJmLTQxOTNhM2E2ZTBlZg==","keyName":"ops.service_sizing.bigboy.cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTllMjIzNjc5LWRhZjAtNDliNy1hMzk1LTVjYTEzZDYzN2I5OQ==","keyName":"ops.service_sizing.bigboy.max_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTM0MDY4ZDEwLTQyYTEtNDBlZS1hNmVhLTAwNGM2ZjQxMjJjYg==","keyName":"ops.service_sizing.bigboy.memory","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWQ0NWQzZjY0LTJkNGEtNDU4ZC05MTM5LTg1ZmFjYTBlMTNkMg==","keyName":"ops.service_sizing.bigboy.min_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTUzYzRjZTAwLWE1MGMtNDQyNS1iMjUzLTJiNmM1MmNiN2Q5Mg==","keyName":"ops.service_sizing_default.cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTNiMGFjMGNjLWZlMGUtNDM3Mi1iZDQ0LTI1NGVlNmM0NjA5ZQ==","keyName":"ops.service_sizing_default.max_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTRlMTY4MzRmLWEyZGMtNDNlZS04ZmQ1LTNlZTZlMmM3MzQ5OA==","keyName":"ops.service_sizing_default.memory","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTNkODI1NjM1LWM4MDAtNDVlYS1hYjEwLWRhZTU3MTc5ZGIzMQ==","keyName":"ops.service_sizing_default.min_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTA5NTRjZDYzLTM0N2MtNGRlOC1iOTE4LTdlNDVmYjA2ZTIxMw==","keyName":"ops.skip_final_snapshot","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWYyN2VhNjc5LTg4YjEtNGNiMi05M2QwLTc3Y2ZiYjkyNDYzNQ==","keyName":"ops.vpc_cidr","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWYzYTc1ZjUwLWRlYmItNDc2NC1hMzE4LTBiYmM5NTJjMmMzMg==","keyName":"ops.vpc_enable_nat","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWJlZDllMjg1LTM5Y2EtNDM0Yy04ODVjLWQ0NmFkODAxMjkxYw==","keyName":"ops.vpc_enable_redundant_nat","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTdlZDJhNjUzLTI3YjgtNGU1ZS1hZWEyLWZlY2FlMjYzNzE5Nw==","keyName":"ops.website_bucket","isSecret":false,"environmentValue":{"parameterValue":null}},{"id":"UGFyYW1ldGVyLTNhODAxNDNjLTQ2YTUtNDgyNi05ZmM0LWQzZTg3ZjE0MDhmNA==","keyName":"service.demo1.live_config_tid","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWFhN2VmZWQyLTQyM2EtNGRlMy05MjAxLTU5NTYxNTU1MjA3NQ==","keyName":"service.demo1.token","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWNmM2I4NjI2LWNlZWMtNDBiMS05YjkwLTYxMjEyYjQ4YjRjNQ==","keyName":"service.demo2.limit","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWQ0Mzg5YzdkLTI3ZDUtNGFkNC1hMjQwLWRhYTM5OTBlNzM4Yw==","keyName":"service.demo2.min","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWYwMzkzYmIzLWZhY2QtNDY0MS04MmUwLWNiMTJhYzNiN2VlYg==","keyName":"service.demo2.mykey","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLThkYWQ5NDZlLTdjMDQtNDI1OS05YTJmLTRhYmZkOGFiMmM3NQ==","keyName":"service.demo2.other","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTdhZjEwMzg1LTYyNDktNDFhMy05MTQ1LTM0ZjFjMzhiZmM2OQ==","keyName":"service.demo3.foo","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTc3NGMyZDY1LTVjYTMtNGYxMi04ZDAyLTc5YTcwMTc0MmQxMA==","keyName":"service.demo3.othersecret","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTI1ZmVmNDRiLWI2ZTMtNDg1Zi05MjQ0LWFjMzg0YjBjMzAwZQ==","keyName":"some_config","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTgxMWNmOTJjLTk4Y2MtNGZlYi04M2I1LTc3MmMzMTEzNjZiMg==","keyName":"svc.demo.active","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWU4YWNmMDIwLWEyNWUtNDgyOS04ZTdhLTU4ZGU1YWE4Zjg2Yg==","keyName":"svc.demo.enable_logging","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWFjZGVkMTQyLWIyZGYtNDkxMy1hZjU3LTY0ODJjNjhjYjVjOA==","keyName":"svc.demo.max_cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWJiZTZmNTcyLTVkM2UtNDZkYS1iMmQ1LTJkODlkODVhNGU0MQ==","keyName":"svc.demo.max_retries","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWUxNmJhYjM3LWFjYjItNGJiOS1iODc0LWMxYWFiNjA2OTFjNA==","keyName":"svc.demo.min_cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWJhYmFhZTM3LTMyNTMtNDE5NC05N2E1LWIyNDYyZjNiNTAyYw==","keyName":"svc.demo.region","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTI0ZGI2MGY2LWU2ODMtNDIzNi1iYmRmLTQ1ZWUzMGU3MDFjZA==","keyName":"svc.demo.timeout","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTUwODMzMWI3LThjNDAtNDkyYi05NjUyLWI4ZTc2MDM0YzIxMQ==","keyName":"web.app.background_color","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWQ4OWQ3NmMwLTFlODYtNDVhZi1hZWRjLTdkY2UyNjkxOTU1NQ==","keyName":"web.app.live_config_tid","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTJhNzI2MDUxLTRkNTEtNDBiZi05ZmJiLTQ4Mjg3NTBmMjAwMQ==","keyName":"web.app.polling_interval","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY4MjNlYWFkLWE4ZTEtNGRhYy05YTJlLTBjZWFkMDYzZjliZg==","keyName":"web_bucket","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTBjZWFjZjZiLTg4MzItNGZkZi1hNDk1LTQzNWJlNGRkNWFkOQ==","keyName":"web_distribution_id","isSecret":false,"environmentValue":{"parameterValue":""}}]}}}}}' - recorded_at: Wed, 17 Feb 2021 15:58:15 GMT + string: '{"data":{"viewer":{"organization":{"project":{"parameters":{"nodes":[{"id":"UGFyYW1ldGVyLTFlZGRhNTRiLTYzOTItNDFhMS1iOTU0LWRhMjUyNjE2MzZhZQ==","keyName":"app.demo.color0","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWUxN2M2ZGIwLWU4NjYtNGM5Yi1iNmRjLTE2MjE2ZTJlM2MxZQ==","keyName":"app.demo.color1","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTQ0MTZhYzIyLTIxOGEtNGQ0Ni1iNjhjLTY4MmFmYTJiNmJmMw==","keyName":"app.demo.color2","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTk4NGQ4MDc2LWIxNGQtNGI1My05MmE0LTY4ZjllMDEwOGZhMw==","keyName":"app.demo.delay","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTliNmU4NzJkLTFiNjYtNDVlNS04ZmY0LTA3ZDcyMDEyOThjNw==","keyName":"app.demo.height","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWUyMzFkZmUyLWRmYTUtNDY5NS05NDc0LWFlOWI5MGEyZWYzYg==","keyName":"app.demo.label0","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTk1OGJjMmM4LTgwZjEtNDU2OC1hODY3LWYzMjEzOGFhODJmYg==","keyName":"app.demo.label1","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWVlM2JhY2E0LWEyNzQtNDMzOC05NGQyLWUyNzdjMGJhYTJhMQ==","keyName":"app.demo.label2","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTdjNjcwOTJhLTkzNTgtNGFkYy04NDI5LTExOWUxNGI1NmExMw==","keyName":"app.demo.max_instances","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTM4NjJhNzIxLTNkNGUtNDY2NC1iMTQ2LTBjOWUxMDM5ZjIyMw==","keyName":"app.demo.num_frames","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTRjZjJjOGViLTE4NzUtNDU0YS05MjZiLWY3Mzc0NWUxZWQ4Mw==","keyName":"app.demo.num_retries","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWM1ZmQzYWVmLWFkODUtNDRhMi1hYjFlLTVkODM3ZGQ1YjE3Yg==","keyName":"app.demo.series0","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTFmMWI1NWUzLWExNDMtNDg4NC1iYTk5LTA5YTc1NmQ4ZTRiNQ==","keyName":"app.demo.series1","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWMwNWFlYzgyLTJjNjYtNGViNS1hNjc5LWIwNTkzZjZkYjRmYw==","keyName":"app.demo.series2","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWNiMzU2YmE2LTkzZmEtNDk3NC1hMDQ3LTU3NWU3OTEzMzExZA==","keyName":"app.demo.timeout","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWVmMWE0OTI5LTJlMzgtNDliZi1iYzlmLWI3OWMyOTIyZjJiOA==","keyName":"app.demo.width","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWE5ZThjMTViLTk4ZTgtNGI5Mi1hNDFkLWNkMmNmOTk4MTUwOQ==","keyName":"aws_account_id","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY1YmMzMWY2LTdlNzgtNGQ2OC1iMzU5LWE5ZDcyNzlmMzA3Zg==","keyName":"aws_region","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWFlOTgzZjhiLTk3NTQtNGM2YS1hOTgyLWE3ZTI4MTIwOGYxMQ==","keyName":"cfdemo.bucket","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTg4MWE4ZmQyLTRjY2UtNDM3Ni05MWZkLTU1MjU4YmUzOTg5OA==","keyName":"cfdemo.message","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWE1ODZlY2I3LWMxMzQtNDA5Yi05ZTBiLTU1Yzc1MGIyZDc0MA==","keyName":"deploy.services.kubecfg","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTRhODkzMzgxLTE0NGUtNDZhNC04YTdmLWRmYjEzYWFkNDZiZQ==","keyName":"deployer_aws_access_key","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWIxMjNjZDJjLWEyYmUtNDdmOC05MzEwLWIwOTAwMDNlM2M1Yg==","keyName":"deployer_aws_access_secret","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLThlYjQ5NGFlLTc3NTUtNGNjNy04ODUzLTZmYTc5OTEyMDc1Mw==","keyName":"domain","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTFkMDNkMzU3LWJjODEtNGZkNy05YWIwLWFmZGU1OGViODIyYw==","keyName":"environment","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY5M2FiZTY0LTIxMzItNDA5MS05MWQ5LWZlNTJhMzg4ODEwNg==","keyName":"foo","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWEzYzhiYzkxLWE1ODUtNDFmNi1hMTE3LTMyYzU5NzcxOGMwMQ==","keyName":"myvalue","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTcyMGRkNDNjLTkwZGQtNDNjMi04MjJlLWU0YmQ3OGY2ZDkwMA==","keyName":"ops.az_count","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTI0NDBjYWUyLTAwOGYtNDVmYS05YmE2LTBjMmVmOGM0NGRlYg==","keyName":"ops.db_sizing.some-rds.count","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTA3YjY4ZGM3LTVlZmQtNGFmNS04NzhiLTNmODkzYjU5MzA1Ng==","keyName":"ops.db_sizing.some-rds.type","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTZiZjBhM2E5LTQzNmUtNDA1OS1iNjMzLWQzMDc2Nzk1NGNhZg==","keyName":"ops.force_destroy_buckets","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTE0YjkxNzRlLTRhNDgtNGQ1OS05ZTIwLTU1MGRiOWEyZGIxYg==","keyName":"ops.force_destroy_zones","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWEzNjkwYmJlLTM2YTktNGFjYy1iZTliLTdlM2M3ZDc2Yzg5Yw==","keyName":"ops.global_name_prefix","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTQyZjRmZWQ3LWQ4MzAtNDczZC1iYTAzLTYxOTViMThkNWIyZA==","keyName":"ops.is_dev","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTgzOTkzZDFkLTE5ZjgtNDBiMC1iM2E5LTA4ZmUxNDFmMThmYg==","keyName":"ops.local_name_prefix","isSecret":false,"environmentValue":{"parameterValue":null}},{"id":"UGFyYW1ldGVyLWQzMmNhOGU2LWRmNDYtNGU2YS04ZjExLTU5YjUwYTJlM2QwMg==","keyName":"ops.logs_bucket","isSecret":false,"environmentValue":{"parameterValue":null}},{"id":"UGFyYW1ldGVyLWU4MDgwYjFjLWNhYjAtNDk0My1hZDIzLWYwZjRjYmFlNjBkMg==","keyName":"ops.ops_email","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTYzY2YxNDY0LWIxMTgtNDc5NS1hNDRmLWY4OWVmMzkxMzczMQ==","keyName":"ops.org","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTU3M2QzYzRhLTcwYTItNDA1Ni04YWY5LTJhYjEyNTZjMGQzNQ==","keyName":"ops.org_prefix","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTIxZjFjODkzLTg0NzEtNDA1Yy04YWJmLTQxOTNhM2E2ZTBlZg==","keyName":"ops.service_sizing.bigboy.cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTllMjIzNjc5LWRhZjAtNDliNy1hMzk1LTVjYTEzZDYzN2I5OQ==","keyName":"ops.service_sizing.bigboy.max_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTM0MDY4ZDEwLTQyYTEtNDBlZS1hNmVhLTAwNGM2ZjQxMjJjYg==","keyName":"ops.service_sizing.bigboy.memory","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWQ0NWQzZjY0LTJkNGEtNDU4ZC05MTM5LTg1ZmFjYTBlMTNkMg==","keyName":"ops.service_sizing.bigboy.min_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTUzYzRjZTAwLWE1MGMtNDQyNS1iMjUzLTJiNmM1MmNiN2Q5Mg==","keyName":"ops.service_sizing_default.cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTNiMGFjMGNjLWZlMGUtNDM3Mi1iZDQ0LTI1NGVlNmM0NjA5ZQ==","keyName":"ops.service_sizing_default.max_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTRlMTY4MzRmLWEyZGMtNDNlZS04ZmQ1LTNlZTZlMmM3MzQ5OA==","keyName":"ops.service_sizing_default.memory","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTNkODI1NjM1LWM4MDAtNDVlYS1hYjEwLWRhZTU3MTc5ZGIzMQ==","keyName":"ops.service_sizing_default.min_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTA5NTRjZDYzLTM0N2MtNGRlOC1iOTE4LTdlNDVmYjA2ZTIxMw==","keyName":"ops.skip_final_snapshot","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWYyN2VhNjc5LTg4YjEtNGNiMi05M2QwLTc3Y2ZiYjkyNDYzNQ==","keyName":"ops.vpc_cidr","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWYzYTc1ZjUwLWRlYmItNDc2NC1hMzE4LTBiYmM5NTJjMmMzMg==","keyName":"ops.vpc_enable_nat","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWJlZDllMjg1LTM5Y2EtNDM0Yy04ODVjLWQ0NmFkODAxMjkxYw==","keyName":"ops.vpc_enable_redundant_nat","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTdlZDJhNjUzLTI3YjgtNGU1ZS1hZWEyLWZlY2FlMjYzNzE5Nw==","keyName":"ops.website_bucket","isSecret":false,"environmentValue":{"parameterValue":null}},{"id":"UGFyYW1ldGVyLWFhN2VmZWQyLTQyM2EtNGRlMy05MjAxLTU5NTYxNTU1MjA3NQ==","keyName":"service.demo1.token","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWNmM2I4NjI2LWNlZWMtNDBiMS05YjkwLTYxMjEyYjQ4YjRjNQ==","keyName":"service.demo2.limit","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWQ0Mzg5YzdkLTI3ZDUtNGFkNC1hMjQwLWRhYTM5OTBlNzM4Yw==","keyName":"service.demo2.min","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWYwMzkzYmIzLWZhY2QtNDY0MS04MmUwLWNiMTJhYzNiN2VlYg==","keyName":"service.demo2.mykey","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLThkYWQ5NDZlLTdjMDQtNDI1OS05YTJmLTRhYmZkOGFiMmM3NQ==","keyName":"service.demo2.other","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWNlNTViNDY0LWExZTMtNGJmYi05MjRhLWRlOTYzNDQ3ZGRlZQ==","keyName":"service.demo3.foo","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY3YzYzMjc5LWY1M2ItNDUzYi1hNmI2LTc5NGJmNjE1ZTI5Nw==","keyName":"service.demo4.bar","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTI1ZmVmNDRiLWI2ZTMtNDg1Zi05MjQ0LWFjMzg0YjBjMzAwZQ==","keyName":"some_config","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTgxMWNmOTJjLTk4Y2MtNGZlYi04M2I1LTc3MmMzMTEzNjZiMg==","keyName":"svc.demo.active","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWU4YWNmMDIwLWEyNWUtNDgyOS04ZTdhLTU4ZGU1YWE4Zjg2Yg==","keyName":"svc.demo.enable_logging","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWFjZGVkMTQyLWIyZGYtNDkxMy1hZjU3LTY0ODJjNjhjYjVjOA==","keyName":"svc.demo.max_cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWJiZTZmNTcyLTVkM2UtNDZkYS1iMmQ1LTJkODlkODVhNGU0MQ==","keyName":"svc.demo.max_retries","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWUxNmJhYjM3LWFjYjItNGJiOS1iODc0LWMxYWFiNjA2OTFjNA==","keyName":"svc.demo.min_cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWJhYmFhZTM3LTMyNTMtNDE5NC05N2E1LWIyNDYyZjNiNTAyYw==","keyName":"svc.demo.region","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTI0ZGI2MGY2LWU2ODMtNDIzNi1iYmRmLTQ1ZWUzMGU3MDFjZA==","keyName":"svc.demo.timeout","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTUwODMzMWI3LThjNDAtNDkyYi05NjUyLWI4ZTc2MDM0YzIxMQ==","keyName":"web.app.background_color","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTJhNzI2MDUxLTRkNTEtNDBiZi05ZmJiLTQ4Mjg3NTBmMjAwMQ==","keyName":"web.app.polling_interval","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY4MjNlYWFkLWE4ZTEtNGRhYy05YTJlLTBjZWFkMDYzZjliZg==","keyName":"web_bucket","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTBjZWFjZjZiLTg4MzItNGZkZi1hNDk1LTQzNWJlNGRkNWFkOQ==","keyName":"web_distribution_id","isSecret":false,"environmentValue":{"parameterValue":""}}]}}}}}}' + recorded_at: Tue, 27 Apr 2021 14:10:51 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/CtApi/_parameters/uses_environment_to_get_values.yml b/spec/fixtures/vcr/CtApi/_parameters/uses_environment_to_get_values.yml index b396556..e9049b2 100644 --- a/spec/fixtures/vcr/CtApi/_parameters/uses_environment_to_get_values.yml +++ b/spec/fixtures/vcr/CtApi/_parameters/uses_environment_to_get_values.yml @@ -25,7 +25,7 @@ http_interactions: Accept: - application/json User-Agent: - - kubetruth/0.2.0 + - kubetruth/0.3.0 Content-Type: - application/json Authorization: @@ -36,7 +36,7 @@ http_interactions: message: OK headers: Date: - - Wed, 17 Feb 2021 15:58:19 GMT + - Tue, 27 Apr 2021 14:11:07 GMT Content-Type: - application/json; charset=utf-8 Transfer-Encoding: @@ -55,19 +55,19 @@ http_interactions: - none Referrer-Policy: - strict-origin-when-cross-origin + Vary: + - Accept, Origin Etag: - - W/"9fb738763ccd7d76282a12d15db153be" + - W/"75ec2b3ba6f57bc364b5a38b5e8f606b" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - 22217f90-f28e-4533-a4ca-fe795cb5c168 + - 60ce6420-130b-40ca-8e61-346df7e46f4c X-Runtime: - - '0.570820' - Vary: - - Origin + - '1.364932' body: encoding: UTF-8 - string: '{"data":{"__schema":{"queryType":{"name":"Query"},"mutationType":{"name":"Mutation"},"subscriptionType":null,"types":[{"kind":"OBJECT","name":"AuditLogSnapshot","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fileUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SnapshotStatusEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditLogSnapshotConnection","description":"The + string: '{"data":{"__schema":{"queryType":{"name":"Query"},"mutationType":{"name":"Mutation"},"subscriptionType":null,"types":[{"kind":"OBJECT","name":"AuditLogSnapshot","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fileUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SnapshotStatusEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditLogSnapshotConnection","description":"The connection type for AuditLogSnapshot.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AuditLogSnapshotEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -76,7 +76,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditLogSnapshotEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegration","description":null,"fields":[{"name":"accountId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"enabledServices","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsIntegrationEnum","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"externalId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"roleName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegrationConnection","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegration","description":null,"fields":[{"name":"accountId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"enabledServices","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsIntegrationEnum","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"externalId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"roleName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegrationConnection","description":"The connection type for AwsIntegration.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegrationEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegration","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -85,7 +85,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegrationEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AwsIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AwsIntegrationEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"S3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SSM","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"Boolean","description":"Represents + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AwsIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AwsIntegrationEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"S3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SSM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SECRETS_MANAGER","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INTERFACE","name":"BasePolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"InvitationPolicy","ofType":null},{"kind":"OBJECT","name":"NodePolicy","ofType":null},{"kind":"OBJECT","name":"OrganizationPolicy","ofType":null}]},{"kind":"SCALAR","name":"Boolean","description":"Represents `true` or `false` values.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateAuditLogSnapshotInput","description":"Autogenerated input type of CreateAuditLogSnapshot","fields":null,"inputFields":[{"name":"organizationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateAuditLogSnapshotPayload","description":"Autogenerated @@ -107,19 +107,27 @@ http_interactions: unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateInvitationPayload","description":"Autogenerated return type of CreateInvitation","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"invitation","description":null,"args":[],"type":{"kind":"OBJECT","name":"Invitation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateOrganizationInput","description":"Autogenerated - input type of CreateOrganization","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + input type of CreateOrganization","fields":null,"inputFields":[{"name":"eaorgid","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateOrganizationPayload","description":"Autogenerated return type of CreateOrganization","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateParameterInput","description":"Autogenerated - input type of CreateParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + input type of CreateParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateParameterPayload","description":"Autogenerated return type of CreateParameter","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreatePersonalAccessTokenInput","description":"Autogenerated input type of CreatePersonalAccessToken","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"writeAccess","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreatePersonalAccessTokenPayload","description":"Autogenerated return type of CreatePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","description":"Autogenerated - input type of CreateTemplate","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateProjectInput","description":"Autogenerated + input type of CreateProject","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateProjectPayload","description":"Autogenerated + return type of CreateProject","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateServiceAccountInput","description":"Autogenerated + input type of CreateServiceAccount","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateServiceAccountPayload","description":"Autogenerated + return type of CreateServiceAccount","fields":[{"name":"apiToken","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"serviceAccount","description":null,"args":[],"type":{"kind":"OBJECT","name":"ServiceAccount","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","description":"Autogenerated + input type of CreateTemplate","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateTemplatePayload","description":"Autogenerated return type of CreateTemplate","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteAllPersonalAccessTokensInput","description":"Autogenerated @@ -142,7 +150,11 @@ http_interactions: input type of DeleteInvitation","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteInvitationPayload","description":"Autogenerated return type of DeleteInvitation","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedInvitationId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedInvitationId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteMembershipInput","description":"Autogenerated + input type of DeleteMembership","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteMembershipPayload","description":"Autogenerated + return type of DeleteMembership","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedMembershipId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","description":"Autogenerated input type of DeleteParameter","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteParameterPayload","description":"Autogenerated return type of DeleteParameter","fields":[{"name":"clientMutationId","description":"A @@ -150,7 +162,15 @@ http_interactions: input type of DeletePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeletePersonalAccessTokenPayload","description":"Autogenerated return type of DeletePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedPersonalAccessTokenId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedPersonalAccessTokenId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteProjectInput","description":"Autogenerated + input type of DeleteProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteProjectPayload","description":"Autogenerated + return type of DeleteProject","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteServiceAccountInput","description":"Autogenerated + input type of DeleteServiceAccount","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteServiceAccountPayload","description":"Autogenerated + return type of DeleteServiceAccount","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedServiceAccountId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","description":"Autogenerated input type of DeleteTemplate","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteTemplatePayload","description":"Autogenerated return type of DeleteTemplate","fields":[{"name":"clientMutationId","description":"A @@ -158,7 +178,7 @@ http_interactions: the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[{"name":"parameterId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterValue","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentConnection","description":"The + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[{"name":"parameterId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterValue","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentConnection","description":"The connection type for Environment.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -167,11 +187,11 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentValue","description":null,"fields":[{"name":"environment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integrationFile","description":null,"args":[],"type":{"kind":"OBJECT","name":"IntegrationFile","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"jmesPath","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EnvironmentValueTypeEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"EnvironmentValueTypeEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"STATIC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DYNAMIC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","description":"Autogenerated + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentValue","description":null,"fields":[{"name":"environment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integrationFile","description":null,"args":[],"type":{"kind":"OBJECT","name":"IntegrationFile","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"jmesPath","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EnvironmentValueTypeEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"EnvironmentValueTypeEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"STATIC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DYNAMIC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ExportParameters","description":null,"fields":[{"name":"evaluated","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ExportParametersFormatEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"DOCKER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DOTENV","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SHELL","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ExportParametersOptions","description":null,"fields":null,"inputFields":[{"name":"secrets","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"export","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"startsWith","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"endsWith","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"contains","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","description":"Autogenerated input type of FakeOrganizationData","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FakeOrganizationDataPayload","description":"Autogenerated return type of FakeOrganizationData","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegration","description":null,"fields":[{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"availableRepositoryCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"installationUrl","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegrationConnection","description":"The + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegration","description":null,"fields":[{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"availableRepositoryCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"installationUrl","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegrationConnection","description":"The connection type for GithubIntegration.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"GithubIntegrationEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"GithubIntegration","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -180,7 +200,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegrationEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"GithubIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"ID","description":"Represents + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"GithubIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"HasPolicy","description":null,"fields":[{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"BasePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"ServiceAccount","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null}]},{"kind":"SCALAR","name":"ID","description":"Represents a unique identifier that is Base64 obfuscated. It is often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected @@ -201,7 +221,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"IntegrationTreeEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Invitation","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberEmail","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberRole","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InvitationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationConnection","description":"The + item at the end of the edge.","args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Invitation","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberEmail","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberRole","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationPolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InvitationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationConnection","description":"The connection type for Invitation.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Invitation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -210,7 +230,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Invitation","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"InvitationStateEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ACCEPTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DECLINED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PENDING","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Membership","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pictureUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MembershipConnection","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Invitation","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationPolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resend","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"InvitationStateEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ACCEPTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DECLINED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PENDING","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Membership","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pictureUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MembershipConnection","description":"The connection type for Membership.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Membership","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -219,8 +239,45 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MembershipEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"MembershipRoleEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ADMIN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CONTRIBUTOR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VIEWER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"OWNER","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Mutation","description":null,"fields":[{"name":"createAuditLogSnapshot","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAuditLogSnapshotInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAuditLogSnapshotPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createAwsIntegration","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createEnvironment","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createGithubSetupToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateGithubSetupTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateGithubSetupTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createInvitation","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createOrganization","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrganizationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateOrganizationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createParameter","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createPersonalAccessToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createTemplate","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAllPersonalAccessTokens","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAllPersonalAccessTokensInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAllPersonalAccessTokensPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAwsIntegration","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteEnvironment","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteGithubIntegration","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteGithubIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteGithubIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteInvitation","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteParameter","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deletePersonalAccessToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeletePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeletePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteTemplate","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fakeOrganizationData","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"FakeOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"regeneratePersonalAccessToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RegeneratePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resetOrganizationData","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResetOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateAwsIntegration","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateEnvironment","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateInvitation","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateMembership","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateMembershipInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateMembershipPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateParameter","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatePersonalAccessToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateTemplate","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"upsertParameter","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpsertParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpsertParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"Node","description":"An - object with an ID.","fields":[{"name":"id","description":"ID of the object.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"IntegrationFile","ofType":null},{"kind":"OBJECT","name":"IntegrationFileTree","ofType":null},{"kind":"OBJECT","name":"IntegrationServiceTree","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null},{"kind":"OBJECT","name":"Viewer","ofType":null}]},{"kind":"ENUM","name":"OrderByEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DESC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Organization","description":null,"fields":[{"name":"auditLogSnapshots","description":null,"args":[{"name":"after","description":"Returns + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"MembershipRoleEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ADMIN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CONTRIBUTOR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VIEWER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"OWNER","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Mutation","description":null,"fields":[{"name":"createAuditLogSnapshot","description":null,"args":[{"name":"input","description":"Parameters + for CreateAuditLogSnapshot","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAuditLogSnapshotInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAuditLogSnapshotPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters + for CreateAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createEnvironment","description":null,"args":[{"name":"input","description":"Parameters + for CreateEnvironment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createGithubSetupToken","description":null,"args":[{"name":"input","description":"Parameters + for CreateGithubSetupToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateGithubSetupTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateGithubSetupTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createInvitation","description":null,"args":[{"name":"input","description":"Parameters + for CreateInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createOrganization","description":null,"args":[{"name":"input","description":"Parameters + for CreateOrganization","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrganizationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateOrganizationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createParameter","description":null,"args":[{"name":"input","description":"Parameters + for CreateParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createPersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for CreatePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createProject","description":null,"args":[{"name":"input","description":"Parameters + for CreateProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createServiceAccount","description":null,"args":[{"name":"input","description":"Parameters + for CreateServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateServiceAccountPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createTemplate","description":null,"args":[{"name":"input","description":"Parameters + for CreateTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAllPersonalAccessTokens","description":null,"args":[{"name":"input","description":"Parameters + for DeleteAllPersonalAccessTokens","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAllPersonalAccessTokensInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAllPersonalAccessTokensPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters + for DeleteAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteEnvironment","description":null,"args":[{"name":"input","description":"Parameters + for DeleteEnvironment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteGithubIntegration","description":null,"args":[{"name":"input","description":"Parameters + for DeleteGithubIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteGithubIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteGithubIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteInvitation","description":null,"args":[{"name":"input","description":"Parameters + for DeleteInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteMembership","description":null,"args":[{"name":"input","description":"Parameters + for DeleteMembership","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteMembershipInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteMembershipPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteParameter","description":null,"args":[{"name":"input","description":"Parameters + for DeleteParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deletePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for DeletePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeletePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeletePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteProject","description":null,"args":[{"name":"input","description":"Parameters + for DeleteProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteServiceAccount","description":null,"args":[{"name":"input","description":"Parameters + for DeleteServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteServiceAccountPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteTemplate","description":null,"args":[{"name":"input","description":"Parameters + for DeleteTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fakeOrganizationData","description":null,"args":[{"name":"input","description":"Parameters + for FakeOrganizationData","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"FakeOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refreshServiceAccountApiToken","description":null,"args":[{"name":"input","description":"Parameters + for RefreshServiceAccountApiToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RefreshServiceAccountApiTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RefreshServiceAccountApiTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"regeneratePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for RegeneratePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RegeneratePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resendInvitation","description":null,"args":[{"name":"input","description":"Parameters + for ResendInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResendInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResendInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resetOrganizationData","description":null,"args":[{"name":"input","description":"Parameters + for ResetOrganizationData","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResetOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters + for UpdateAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateEnvironment","description":null,"args":[{"name":"input","description":"Parameters + for UpdateEnvironment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateInvitation","description":null,"args":[{"name":"input","description":"Parameters + for UpdateInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateMembership","description":null,"args":[{"name":"input","description":"Parameters + for UpdateMembership","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateMembershipInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateMembershipPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateOrganization","description":null,"args":[{"name":"input","description":"Parameters + for UpdateOrganization","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateOrganizationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateOrganizationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateParameter","description":null,"args":[{"name":"input","description":"Parameters + for UpdateParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for UpdatePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateProject","description":null,"args":[{"name":"input","description":"Parameters + for UpdateProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateTemplate","description":null,"args":[{"name":"input","description":"Parameters + for UpdateTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"upsertParameter","description":null,"args":[{"name":"input","description":"Parameters + for UpsertParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpsertParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpsertParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"Node","description":"An + object with an ID.","fields":[{"name":"id","description":"ID of the object.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"IntegrationFile","ofType":null},{"kind":"OBJECT","name":"IntegrationFileTree","ofType":null},{"kind":"OBJECT","name":"IntegrationServiceTree","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"ServiceAccount","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null},{"kind":"OBJECT","name":"Viewer","ofType":null}]},{"kind":"OBJECT","name":"NodePolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"OrderByEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DESC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Organization","description":null,"fields":[{"name":"auditLogSnapshots","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns @@ -228,11 +285,12 @@ http_interactions: the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegrationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"environment","description":null,"args":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environments","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegrationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"defaultProject","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"environment","description":null,"args":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environments","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"evaluateTemplate","description":null,"args":[{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TemplateEvaluation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"githubIntegrations","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"evaluateTemplate","description":null,"args":[{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TemplateEvaluation","ofType":null},"isDeprecated":true,"deprecationReason":"Use + project instead."},{"name":"githubIntegrations","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns @@ -244,11 +302,13 @@ http_interactions: the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberships","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"state","description":"Filter + invitation list by state.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InvitationStateEnum","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberships","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"userType","description":"Optionally + filter by user type.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns @@ -256,21 +316,27 @@ http_interactions: order for parameters.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","ofType":null}}},"defaultValue":null},{"name":"searchTerm","description":"Search over parameter names.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"where","description":"Filter parameter list.","type":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null},"defaultValue":null},{"name":"keyNames","description":"List - of key names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + of key names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrganizationPolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projects","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ProjectConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionExpiresAt","description":null,"args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionId","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionPlanId","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionPlanName","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"names","description":"List - of template names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursor","description":null,"fields":[{"name":"cursor","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isCurrent","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageNumber","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursors","description":null,"fields":[{"name":"around","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageCursor","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"first","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"last","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previous","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageInfo","description":"Information + of template names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"vaultId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"OrganizationPolicy","description":null,"fields":[{"name":"createEnvironment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createIntegration","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createInvitation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createParameter","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Everything + will go through project in the near future."},{"name":"createProject","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createTemplate","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Everything + will go through the project in the near future."},{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursor","description":null,"fields":[{"name":"cursor","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isCurrent","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageNumber","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursors","description":null,"fields":[{"name":"around","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageCursor","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"first","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"last","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previous","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageInfo","description":"Information about pagination in a connection.","fields":[{"name":"endCursor","description":"When paginating forwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasNextPage","description":"When paginating forwards, are there more items?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasPreviousPage","description":"When paginating backwards, are there more items?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"startCursor","description":"When - paginating backwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Parameter","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValue","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValues","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"hasDynamicValue","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isSecret","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"keyName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + paginating backwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Parameter","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValue","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValues","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"hasDynamicValue","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isSecret","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"keyName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","description":null,"fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"keyName","description":null,"type":{"kind":"INPUT_OBJECT","name":"StringComparisonExp","ofType":null},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"INPUT_OBJECT","name":"IdComparisonExp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterConnection","description":"The + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","description":null,"fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"keyName","description":null,"type":{"kind":"INPUT_OBJECT","name":"StringComparisonExp","ofType":null},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"INPUT_OBJECT","name":"IdComparisonExp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterConnection","description":"The connection type for Parameter.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Parameter","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -279,7 +345,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","description":null,"fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null},{"name":"updatedAt","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterValue","description":null,"fields":[{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessToken","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastUsed","description":null,"args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"writeAccess","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessTokenConnection","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","description":null,"fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null},{"name":"updatedAt","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterValue","description":null,"fields":[{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessToken","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastUsed","description":null,"args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"writeAccess","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessTokenConnection","description":"The connection type for PersonalAccessToken.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PersonalAccessTokenEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -288,20 +354,51 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessTokenEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Query","description":null,"fields":[{"name":"node","description":"Fetches + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Project","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"defaultForOrganization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"evaluateTemplate","description":null,"args":[{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TemplateEvaluation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"exportParameters","description":null,"args":[{"name":"format","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ExportParametersFormatEnum","ofType":null}},"defaultValue":null},{"name":"options","description":null,"type":{"kind":"INPUT_OBJECT","name":"ExportParametersOptions","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ExportParameters","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"orderBy","description":"Sort + order for parameters.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","ofType":null}}},"defaultValue":null},{"name":"searchTerm","description":"Search + over parameter names.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"where","description":"Filter + parameter list.","type":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null},"defaultValue":null},{"name":"keyNames","description":"List + of key names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"names","description":"List + of template names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectConnection","description":"The + connection type for Project.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ProjectEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Query","description":null,"fields":[{"name":"node","description":"Fetches an object given its ID.","args":[{"name":"id","description":"ID of the object.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"INTERFACE","name":"Node","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"Fetches a list of objects given a list of IDs.","args":[{"name":"ids","description":"IDs - of the objects.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INTERFACE","name":"Node","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","description":"Autogenerated + of the objects.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INTERFACE","name":"Node","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RefreshServiceAccountApiTokenInput","description":"Autogenerated + input type of RefreshServiceAccountApiToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RefreshServiceAccountApiTokenPayload","description":"Autogenerated + return type of RefreshServiceAccountApiToken","fields":[{"name":"apiToken","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"serviceAccount","description":null,"args":[],"type":{"kind":"OBJECT","name":"ServiceAccount","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","description":"Autogenerated input type of RegeneratePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RegeneratePersonalAccessTokenPayload","description":"Autogenerated return type of RegeneratePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ResendInvitationInput","description":"Autogenerated + input type of ResendInvitation","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ResendInvitationPayload","description":"Autogenerated + return type of ResendInvitation","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"invitation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Invitation","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","description":"Autogenerated input type of ResetOrganizationData","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ResetOrganizationDataPayload","description":"Autogenerated return type of ResetOrganizationData","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SnapshotStatusEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"REQUESTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PROCESSING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AVAILABLE","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"String","description":"Represents + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ServiceAccount","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SnapshotStatusEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"REQUESTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PROCESSING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AVAILABLE","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"String","description":"Represents textual data as UTF-8 character sequences. This type is most often used by - GraphQL to represent free-form human-readable text.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"StringComparisonExp","description":null,"fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Template","description":null,"fields":[{"name":"body","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"evaluated","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TemplateConnection","description":"The + GraphQL to represent free-form human-readable text.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"StringComparisonExp","description":null,"fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Template","description":null,"fields":[{"name":"body","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"evaluated","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":true,"deprecationReason":"Use + project instead."},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TemplateConnection","description":"The connection type for Template.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Template","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -326,7 +423,11 @@ http_interactions: input type of UpdateMembership","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateMembershipPayload","description":"Autogenerated return type of UpdateMembership","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"membership","description":null,"args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"membership","description":null,"args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateOrganizationInput","description":"Autogenerated + input type of UpdateOrganization","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateOrganizationPayload","description":"Autogenerated + return type of UpdateOrganization","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","description":"Autogenerated input type of UpdateParameter","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"integrationFileId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"integrationFileFqn","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"jmesPath","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateParameterPayload","description":"Autogenerated return type of UpdateParameter","fields":[{"name":"clientMutationId","description":"A @@ -334,12 +435,16 @@ http_interactions: input type of UpdatePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"writeAccess","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdatePersonalAccessTokenPayload","description":"Autogenerated return type of UpdatePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateProjectInput","description":"Autogenerated + input type of UpdateProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateProjectPayload","description":"Autogenerated + return type of UpdateProject","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","description":"Autogenerated input type of UpdateTemplate","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"body","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateTemplatePayload","description":"Autogenerated return type of UpdateTemplate","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpsertParameterInput","description":"Autogenerated - input type of UpsertParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + input type of UpsertParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpsertParameterPayload","description":"Autogenerated return type of UpsertParameter","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserError","description":"A @@ -358,7 +463,7 @@ http_interactions: validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL''s execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives - provide this by describing additional information to the executor.","fields":[{"name":"args","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locations","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__DirectiveLocation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"onField","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use + provide this by describing additional information to the executor.","fields":[{"name":"args","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locations","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__DirectiveLocation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"onField","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."},{"name":"onFragment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."},{"name":"onOperation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__DirectiveLocation","description":"A @@ -386,11 +491,11 @@ http_interactions: for a string or numeric value. However an Enum value is returned in a JSON response as a string.","fields":[{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Field","description":"Object and Interface types are described by a list of Fields, each of which has a - name, potentially a list of arguments, and a return type.","fields":[{"name":"args","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__InputValue","description":"Arguments + name, potentially a list of arguments, and a return type.","fields":[{"name":"args","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__InputValue","description":"Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.","fields":[{"name":"defaultValue","description":"A GraphQL-formatted - string representing the default value for this input value.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Schema","description":"A + string representing the default value for this input value.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Schema","description":"A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.","fields":[{"name":"directives","description":"A @@ -407,7 +512,7 @@ http_interactions: types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at - runtime. List and NonNull types compose other types.","fields":[{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"enumValues","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__EnumValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"fields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Field","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"inputFields","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"interfaces","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__TypeKind","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"ofType","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"possibleTypes","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__TypeKind","description":"An + runtime. List and NonNull types compose other types.","fields":[{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"enumValues","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__EnumValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"fields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Field","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"inputFields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"interfaces","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__TypeKind","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"ofType","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"possibleTypes","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__TypeKind","description":"An enum describing what kind of type a given `__Type` is.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"SCALAR","description":"Indicates this type is a scalar.","isDeprecated":false,"deprecationReason":null},{"name":"OBJECT","description":"Indicates this type is an object. `fields` and `interfaces` are valid fields.","isDeprecated":false,"deprecationReason":null},{"name":"INTERFACE","description":"Indicates @@ -422,26 +527,26 @@ http_interactions: when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"skip","description":"Directs the executor to skip this field or fragment when the `if` argument is true.","locations":["FIELD","FRAGMENT_SPREAD","INLINE_FRAGMENT"],"args":[{"name":"if","description":"Skipped when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"deprecated","description":"Marks - an element of a GraphQL schema as no longer supported.","locations":["FIELD_DEFINITION","ENUM_VALUE"],"args":[{"name":"reason","description":"Explains + an element of a GraphQL schema as no longer supported.","locations":["FIELD_DEFINITION","ENUM_VALUE","ARGUMENT_DEFINITION","INPUT_FIELD_DEFINITION"],"args":[{"name":"reason","description":"Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted in [Markdown](https://daringfireball.net/projects/markdown/).","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"\"No longer supported\""}]}]}}}' - recorded_at: Wed, 17 Feb 2021 15:58:18 GMT + recorded_at: Tue, 27 Apr 2021 14:11:01 GMT - request: method: post uri: https://api.cloudtruth.com/graphql body: encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_136500($organizationId: + string: '{"query":"query GraphQL__Client__OperationDefinition_210860($organizationId: ID) {\n viewer {\n organization(id: $organizationId) {\n environments - {\n nodes {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_136500"}' + {\n nodes {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_210860"}' headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - application/json User-Agent: - - kubetruth/0.2.0 + - kubetruth/0.3.0 Content-Type: - application/json Authorization: @@ -452,7 +557,7 @@ http_interactions: message: OK headers: Date: - - Wed, 17 Feb 2021 15:58:19 GMT + - Tue, 27 Apr 2021 14:11:08 GMT Content-Type: - application/json; charset=utf-8 Transfer-Encoding: @@ -471,37 +576,38 @@ http_interactions: - none Referrer-Policy: - strict-origin-when-cross-origin + Vary: + - Accept, Origin Etag: - - W/"65ef7ec24337fc3df9a19032eaf15852" + - W/"4216eb2052c7088952da5a9791e740cd" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - 9bc27370-8679-4c39-bae9-3f95fb6aea2a + - b093b52d-7c1e-4d45-b273-8bfd88602f6b X-Runtime: - - '0.023364' - Vary: - - Origin + - '0.038191' body: encoding: UTF-8 - string: '{"data":{"viewer":{"organization":{"environments":{"nodes":[{"id":"RW52aXJvbm1lbnQtZjk3MDI1NGEtNGQ0NS00YTA1LWJiYjctOTRjZTdhOGRmODky","name":"default"},{"id":"RW52aXJvbm1lbnQtOGRmMTVjMjYtN2FhZi00ODE5LWJlNzYtMTVmMzU2YzQ5YTg1","name":"production"},{"id":"RW52aXJvbm1lbnQtNmI5M2NlMWEtMTVkMS00MzRiLTg1NTAtODhjZDZhY2ZjYzU4","name":"development"},{"id":"RW52aXJvbm1lbnQtY2EyMDA0YzctZjQ3Mi00MzFlLWIyODgtNzg0NmYzMTBmMGZj","name":"ops"},{"id":"RW52aXJvbm1lbnQtMzY4MWRkMjctZDY2YS00NjdlLWI1NzMtYmI2YzU0ZmFjZDM1","name":"staging"},{"id":"RW52aXJvbm1lbnQtZWE3MzBjYmMtYzg1Zi00M2M1LTlkNjgtY2Q5NTlmMmNhYjQ2","name":"Dev1"}]}}}}}' - recorded_at: Wed, 17 Feb 2021 15:58:18 GMT + string: '{"data":{"viewer":{"organization":{"environments":{"nodes":[{"id":"RW52aXJvbm1lbnQtZjk3MDI1NGEtNGQ0NS00YTA1LWJiYjctOTRjZTdhOGRmODky","name":"default"},{"id":"RW52aXJvbm1lbnQtOGRmMTVjMjYtN2FhZi00ODE5LWJlNzYtMTVmMzU2YzQ5YTg1","name":"production"},{"id":"RW52aXJvbm1lbnQtNmI5M2NlMWEtMTVkMS00MzRiLTg1NTAtODhjZDZhY2ZjYzU4","name":"development"},{"id":"RW52aXJvbm1lbnQtY2EyMDA0YzctZjQ3Mi00MzFlLWIyODgtNzg0NmYzMTBmMGZj","name":"ops"},{"id":"RW52aXJvbm1lbnQtMzY4MWRkMjctZDY2YS00NjdlLWI1NzMtYmI2YzU0ZmFjZDM1","name":"staging"},{"id":"RW52aXJvbm1lbnQtZDE4NGQ1ODctYjA2Yi00OWU2LThhMGItNjU1YTM2NDQwYjRj","name":"dev-matt"}]}}}}}' + recorded_at: Tue, 27 Apr 2021 14:11:02 GMT - request: method: post uri: https://api.cloudtruth.com/graphql body: encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_136560($organizationId: - ID, $environmentId: ID, $searchTerm: String) {\n viewer {\n organization(id: - $organizationId) {\n parameters(searchTerm: $searchTerm, orderBy: {keyName: - ASC}) {\n nodes {\n id\n keyName\n isSecret\n environmentValue(environmentId: - $environmentId) {\n parameterValue\n }\n }\n }\n }\n }\n}","variables":{"searchTerm":"","environmentId":"RW52aXJvbm1lbnQtNmI5M2NlMWEtMTVkMS00MzRiLTg1NTAtODhjZDZhY2ZjYzU4"},"operationName":"GraphQL__Client__OperationDefinition_136560"}' + string: '{"query":"query GraphQL__Client__OperationDefinition_210920($organizationId: + ID, $environmentId: ID, $projectName: String, $searchTerm: String) {\n viewer + {\n organization(id: $organizationId) {\n project(name: $projectName) + {\n parameters(searchTerm: $searchTerm, orderBy: {keyName: ASC}) {\n nodes + {\n id\n keyName\n isSecret\n environmentValue(environmentId: + $environmentId) {\n parameterValue\n }\n }\n }\n }\n }\n }\n}","variables":{"searchTerm":"","environmentId":"RW52aXJvbm1lbnQtNmI5M2NlMWEtMTVkMS00MzRiLTg1NTAtODhjZDZhY2ZjYzU4"},"operationName":"GraphQL__Client__OperationDefinition_210920"}' headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - application/json User-Agent: - - kubetruth/0.2.0 + - kubetruth/0.3.0 Content-Type: - application/json Authorization: @@ -512,7 +618,7 @@ http_interactions: message: OK headers: Date: - - Wed, 17 Feb 2021 15:58:21 GMT + - Tue, 27 Apr 2021 14:11:10 GMT Content-Type: - application/json; charset=utf-8 Transfer-Encoding: @@ -531,18 +637,18 @@ http_interactions: - none Referrer-Policy: - strict-origin-when-cross-origin + Vary: + - Accept, Origin Etag: - - W/"b8f1bc62d42f10b16877bc3b606aff1a" + - W/"bac59b800d03f96ce5933613cc8bcfa2" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - c5188294-520f-4552-8279-463be26eafe0 + - ee15627d-9a89-48be-a223-094b3c388e62 X-Runtime: - - '1.632305' - Vary: - - Origin + - '1.818963' body: encoding: UTF-8 - string: '{"data":{"viewer":{"organization":{"parameters":{"nodes":[{"id":"UGFyYW1ldGVyLTFlZGRhNTRiLTYzOTItNDFhMS1iOTU0LWRhMjUyNjE2MzZhZQ==","keyName":"app.demo.color0","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWUxN2M2ZGIwLWU4NjYtNGM5Yi1iNmRjLTE2MjE2ZTJlM2MxZQ==","keyName":"app.demo.color1","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTQ0MTZhYzIyLTIxOGEtNGQ0Ni1iNjhjLTY4MmFmYTJiNmJmMw==","keyName":"app.demo.color2","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTk4NGQ4MDc2LWIxNGQtNGI1My05MmE0LTY4ZjllMDEwOGZhMw==","keyName":"app.demo.delay","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTliNmU4NzJkLTFiNjYtNDVlNS04ZmY0LTA3ZDcyMDEyOThjNw==","keyName":"app.demo.height","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWUyMzFkZmUyLWRmYTUtNDY5NS05NDc0LWFlOWI5MGEyZWYzYg==","keyName":"app.demo.label0","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTk1OGJjMmM4LTgwZjEtNDU2OC1hODY3LWYzMjEzOGFhODJmYg==","keyName":"app.demo.label1","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWVlM2JhY2E0LWEyNzQtNDMzOC05NGQyLWUyNzdjMGJhYTJhMQ==","keyName":"app.demo.label2","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTdjNjcwOTJhLTkzNTgtNGFkYy04NDI5LTExOWUxNGI1NmExMw==","keyName":"app.demo.max_instances","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTM4NjJhNzIxLTNkNGUtNDY2NC1iMTQ2LTBjOWUxMDM5ZjIyMw==","keyName":"app.demo.num_frames","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTRjZjJjOGViLTE4NzUtNDU0YS05MjZiLWY3Mzc0NWUxZWQ4Mw==","keyName":"app.demo.num_retries","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWM1ZmQzYWVmLWFkODUtNDRhMi1hYjFlLTVkODM3ZGQ1YjE3Yg==","keyName":"app.demo.series0","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTFmMWI1NWUzLWExNDMtNDg4NC1iYTk5LTA5YTc1NmQ4ZTRiNQ==","keyName":"app.demo.series1","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWMwNWFlYzgyLTJjNjYtNGViNS1hNjc5LWIwNTkzZjZkYjRmYw==","keyName":"app.demo.series2","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWNiMzU2YmE2LTkzZmEtNDk3NC1hMDQ3LTU3NWU3OTEzMzExZA==","keyName":"app.demo.timeout","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWVmMWE0OTI5LTJlMzgtNDliZi1iYzlmLWI3OWMyOTIyZjJiOA==","keyName":"app.demo.width","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWE5ZThjMTViLTk4ZTgtNGI5Mi1hNDFkLWNkMmNmOTk4MTUwOQ==","keyName":"aws_account_id","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY1YmMzMWY2LTdlNzgtNGQ2OC1iMzU5LWE5ZDcyNzlmMzA3Zg==","keyName":"aws_region","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWE1ODZlY2I3LWMxMzQtNDA5Yi05ZTBiLTU1Yzc1MGIyZDc0MA==","keyName":"deploy.services.kubecfg","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTRhODkzMzgxLTE0NGUtNDZhNC04YTdmLWRmYjEzYWFkNDZiZQ==","keyName":"deployer_aws_access_key","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWIxMjNjZDJjLWEyYmUtNDdmOC05MzEwLWIwOTAwMDNlM2M1Yg==","keyName":"deployer_aws_access_secret","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLThlYjQ5NGFlLTc3NTUtNGNjNy04ODUzLTZmYTc5OTEyMDc1Mw==","keyName":"domain","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTFkMDNkMzU3LWJjODEtNGZkNy05YWIwLWFmZGU1OGViODIyYw==","keyName":"environment","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWEzYzhiYzkxLWE1ODUtNDFmNi1hMTE3LTMyYzU5NzcxOGMwMQ==","keyName":"myvalue","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTcyMGRkNDNjLTkwZGQtNDNjMi04MjJlLWU0YmQ3OGY2ZDkwMA==","keyName":"ops.az_count","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTI0NDBjYWUyLTAwOGYtNDVmYS05YmE2LTBjMmVmOGM0NGRlYg==","keyName":"ops.db_sizing.some-rds.count","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTA3YjY4ZGM3LTVlZmQtNGFmNS04NzhiLTNmODkzYjU5MzA1Ng==","keyName":"ops.db_sizing.some-rds.type","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTZiZjBhM2E5LTQzNmUtNDA1OS1iNjMzLWQzMDc2Nzk1NGNhZg==","keyName":"ops.force_destroy_buckets","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTE0YjkxNzRlLTRhNDgtNGQ1OS05ZTIwLTU1MGRiOWEyZGIxYg==","keyName":"ops.force_destroy_zones","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWEzNjkwYmJlLTM2YTktNGFjYy1iZTliLTdlM2M3ZDc2Yzg5Yw==","keyName":"ops.global_name_prefix","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTQyZjRmZWQ3LWQ4MzAtNDczZC1iYTAzLTYxOTViMThkNWIyZA==","keyName":"ops.is_dev","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTgzOTkzZDFkLTE5ZjgtNDBiMC1iM2E5LTA4ZmUxNDFmMThmYg==","keyName":"ops.local_name_prefix","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWQzMmNhOGU2LWRmNDYtNGU2YS04ZjExLTU5YjUwYTJlM2QwMg==","keyName":"ops.logs_bucket","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWU4MDgwYjFjLWNhYjAtNDk0My1hZDIzLWYwZjRjYmFlNjBkMg==","keyName":"ops.ops_email","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTYzY2YxNDY0LWIxMTgtNDc5NS1hNDRmLWY4OWVmMzkxMzczMQ==","keyName":"ops.org","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTU3M2QzYzRhLTcwYTItNDA1Ni04YWY5LTJhYjEyNTZjMGQzNQ==","keyName":"ops.org_prefix","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTIxZjFjODkzLTg0NzEtNDA1Yy04YWJmLTQxOTNhM2E2ZTBlZg==","keyName":"ops.service_sizing.bigboy.cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTllMjIzNjc5LWRhZjAtNDliNy1hMzk1LTVjYTEzZDYzN2I5OQ==","keyName":"ops.service_sizing.bigboy.max_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTM0MDY4ZDEwLTQyYTEtNDBlZS1hNmVhLTAwNGM2ZjQxMjJjYg==","keyName":"ops.service_sizing.bigboy.memory","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWQ0NWQzZjY0LTJkNGEtNDU4ZC05MTM5LTg1ZmFjYTBlMTNkMg==","keyName":"ops.service_sizing.bigboy.min_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTUzYzRjZTAwLWE1MGMtNDQyNS1iMjUzLTJiNmM1MmNiN2Q5Mg==","keyName":"ops.service_sizing_default.cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTNiMGFjMGNjLWZlMGUtNDM3Mi1iZDQ0LTI1NGVlNmM0NjA5ZQ==","keyName":"ops.service_sizing_default.max_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTRlMTY4MzRmLWEyZGMtNDNlZS04ZmQ1LTNlZTZlMmM3MzQ5OA==","keyName":"ops.service_sizing_default.memory","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTNkODI1NjM1LWM4MDAtNDVlYS1hYjEwLWRhZTU3MTc5ZGIzMQ==","keyName":"ops.service_sizing_default.min_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTA5NTRjZDYzLTM0N2MtNGRlOC1iOTE4LTdlNDVmYjA2ZTIxMw==","keyName":"ops.skip_final_snapshot","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWYyN2VhNjc5LTg4YjEtNGNiMi05M2QwLTc3Y2ZiYjkyNDYzNQ==","keyName":"ops.vpc_cidr","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWYzYTc1ZjUwLWRlYmItNDc2NC1hMzE4LTBiYmM5NTJjMmMzMg==","keyName":"ops.vpc_enable_nat","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWJlZDllMjg1LTM5Y2EtNDM0Yy04ODVjLWQ0NmFkODAxMjkxYw==","keyName":"ops.vpc_enable_redundant_nat","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTdlZDJhNjUzLTI3YjgtNGU1ZS1hZWEyLWZlY2FlMjYzNzE5Nw==","keyName":"ops.website_bucket","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTNhODAxNDNjLTQ2YTUtNDgyNi05ZmM0LWQzZTg3ZjE0MDhmNA==","keyName":"service.demo1.live_config_tid","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWFhN2VmZWQyLTQyM2EtNGRlMy05MjAxLTU5NTYxNTU1MjA3NQ==","keyName":"service.demo1.token","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWNmM2I4NjI2LWNlZWMtNDBiMS05YjkwLTYxMjEyYjQ4YjRjNQ==","keyName":"service.demo2.limit","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWQ0Mzg5YzdkLTI3ZDUtNGFkNC1hMjQwLWRhYTM5OTBlNzM4Yw==","keyName":"service.demo2.min","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWYwMzkzYmIzLWZhY2QtNDY0MS04MmUwLWNiMTJhYzNiN2VlYg==","keyName":"service.demo2.mykey","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLThkYWQ5NDZlLTdjMDQtNDI1OS05YTJmLTRhYmZkOGFiMmM3NQ==","keyName":"service.demo2.other","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTdhZjEwMzg1LTYyNDktNDFhMy05MTQ1LTM0ZjFjMzhiZmM2OQ==","keyName":"service.demo3.foo","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTc3NGMyZDY1LTVjYTMtNGYxMi04ZDAyLTc5YTcwMTc0MmQxMA==","keyName":"service.demo3.othersecret","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTI1ZmVmNDRiLWI2ZTMtNDg1Zi05MjQ0LWFjMzg0YjBjMzAwZQ==","keyName":"some_config","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTgxMWNmOTJjLTk4Y2MtNGZlYi04M2I1LTc3MmMzMTEzNjZiMg==","keyName":"svc.demo.active","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWU4YWNmMDIwLWEyNWUtNDgyOS04ZTdhLTU4ZGU1YWE4Zjg2Yg==","keyName":"svc.demo.enable_logging","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWFjZGVkMTQyLWIyZGYtNDkxMy1hZjU3LTY0ODJjNjhjYjVjOA==","keyName":"svc.demo.max_cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWJiZTZmNTcyLTVkM2UtNDZkYS1iMmQ1LTJkODlkODVhNGU0MQ==","keyName":"svc.demo.max_retries","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWUxNmJhYjM3LWFjYjItNGJiOS1iODc0LWMxYWFiNjA2OTFjNA==","keyName":"svc.demo.min_cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWJhYmFhZTM3LTMyNTMtNDE5NC05N2E1LWIyNDYyZjNiNTAyYw==","keyName":"svc.demo.region","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTI0ZGI2MGY2LWU2ODMtNDIzNi1iYmRmLTQ1ZWUzMGU3MDFjZA==","keyName":"svc.demo.timeout","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTUwODMzMWI3LThjNDAtNDkyYi05NjUyLWI4ZTc2MDM0YzIxMQ==","keyName":"web.app.background_color","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWQ4OWQ3NmMwLTFlODYtNDVhZi1hZWRjLTdkY2UyNjkxOTU1NQ==","keyName":"web.app.live_config_tid","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTJhNzI2MDUxLTRkNTEtNDBiZi05ZmJiLTQ4Mjg3NTBmMjAwMQ==","keyName":"web.app.polling_interval","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY4MjNlYWFkLWE4ZTEtNGRhYy05YTJlLTBjZWFkMDYzZjliZg==","keyName":"web_bucket","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTBjZWFjZjZiLTg4MzItNGZkZi1hNDk1LTQzNWJlNGRkNWFkOQ==","keyName":"web_distribution_id","isSecret":false,"environmentValue":{"parameterValue":""}}]}}}}}' - recorded_at: Wed, 17 Feb 2021 15:58:20 GMT + string: '{"data":{"viewer":{"organization":{"project":{"parameters":{"nodes":[{"id":"UGFyYW1ldGVyLTFlZGRhNTRiLTYzOTItNDFhMS1iOTU0LWRhMjUyNjE2MzZhZQ==","keyName":"app.demo.color0","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWUxN2M2ZGIwLWU4NjYtNGM5Yi1iNmRjLTE2MjE2ZTJlM2MxZQ==","keyName":"app.demo.color1","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTQ0MTZhYzIyLTIxOGEtNGQ0Ni1iNjhjLTY4MmFmYTJiNmJmMw==","keyName":"app.demo.color2","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTk4NGQ4MDc2LWIxNGQtNGI1My05MmE0LTY4ZjllMDEwOGZhMw==","keyName":"app.demo.delay","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTliNmU4NzJkLTFiNjYtNDVlNS04ZmY0LTA3ZDcyMDEyOThjNw==","keyName":"app.demo.height","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWUyMzFkZmUyLWRmYTUtNDY5NS05NDc0LWFlOWI5MGEyZWYzYg==","keyName":"app.demo.label0","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTk1OGJjMmM4LTgwZjEtNDU2OC1hODY3LWYzMjEzOGFhODJmYg==","keyName":"app.demo.label1","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWVlM2JhY2E0LWEyNzQtNDMzOC05NGQyLWUyNzdjMGJhYTJhMQ==","keyName":"app.demo.label2","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTdjNjcwOTJhLTkzNTgtNGFkYy04NDI5LTExOWUxNGI1NmExMw==","keyName":"app.demo.max_instances","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTM4NjJhNzIxLTNkNGUtNDY2NC1iMTQ2LTBjOWUxMDM5ZjIyMw==","keyName":"app.demo.num_frames","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTRjZjJjOGViLTE4NzUtNDU0YS05MjZiLWY3Mzc0NWUxZWQ4Mw==","keyName":"app.demo.num_retries","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWM1ZmQzYWVmLWFkODUtNDRhMi1hYjFlLTVkODM3ZGQ1YjE3Yg==","keyName":"app.demo.series0","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTFmMWI1NWUzLWExNDMtNDg4NC1iYTk5LTA5YTc1NmQ4ZTRiNQ==","keyName":"app.demo.series1","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWMwNWFlYzgyLTJjNjYtNGViNS1hNjc5LWIwNTkzZjZkYjRmYw==","keyName":"app.demo.series2","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWNiMzU2YmE2LTkzZmEtNDk3NC1hMDQ3LTU3NWU3OTEzMzExZA==","keyName":"app.demo.timeout","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWVmMWE0OTI5LTJlMzgtNDliZi1iYzlmLWI3OWMyOTIyZjJiOA==","keyName":"app.demo.width","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWE5ZThjMTViLTk4ZTgtNGI5Mi1hNDFkLWNkMmNmOTk4MTUwOQ==","keyName":"aws_account_id","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY1YmMzMWY2LTdlNzgtNGQ2OC1iMzU5LWE5ZDcyNzlmMzA3Zg==","keyName":"aws_region","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWFlOTgzZjhiLTk3NTQtNGM2YS1hOTgyLWE3ZTI4MTIwOGYxMQ==","keyName":"cfdemo.bucket","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTg4MWE4ZmQyLTRjY2UtNDM3Ni05MWZkLTU1MjU4YmUzOTg5OA==","keyName":"cfdemo.message","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWE1ODZlY2I3LWMxMzQtNDA5Yi05ZTBiLTU1Yzc1MGIyZDc0MA==","keyName":"deploy.services.kubecfg","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTRhODkzMzgxLTE0NGUtNDZhNC04YTdmLWRmYjEzYWFkNDZiZQ==","keyName":"deployer_aws_access_key","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWIxMjNjZDJjLWEyYmUtNDdmOC05MzEwLWIwOTAwMDNlM2M1Yg==","keyName":"deployer_aws_access_secret","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLThlYjQ5NGFlLTc3NTUtNGNjNy04ODUzLTZmYTc5OTEyMDc1Mw==","keyName":"domain","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTFkMDNkMzU3LWJjODEtNGZkNy05YWIwLWFmZGU1OGViODIyYw==","keyName":"environment","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY5M2FiZTY0LTIxMzItNDA5MS05MWQ5LWZlNTJhMzg4ODEwNg==","keyName":"foo","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWEzYzhiYzkxLWE1ODUtNDFmNi1hMTE3LTMyYzU5NzcxOGMwMQ==","keyName":"myvalue","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTcyMGRkNDNjLTkwZGQtNDNjMi04MjJlLWU0YmQ3OGY2ZDkwMA==","keyName":"ops.az_count","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTI0NDBjYWUyLTAwOGYtNDVmYS05YmE2LTBjMmVmOGM0NGRlYg==","keyName":"ops.db_sizing.some-rds.count","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTA3YjY4ZGM3LTVlZmQtNGFmNS04NzhiLTNmODkzYjU5MzA1Ng==","keyName":"ops.db_sizing.some-rds.type","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTZiZjBhM2E5LTQzNmUtNDA1OS1iNjMzLWQzMDc2Nzk1NGNhZg==","keyName":"ops.force_destroy_buckets","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTE0YjkxNzRlLTRhNDgtNGQ1OS05ZTIwLTU1MGRiOWEyZGIxYg==","keyName":"ops.force_destroy_zones","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWEzNjkwYmJlLTM2YTktNGFjYy1iZTliLTdlM2M3ZDc2Yzg5Yw==","keyName":"ops.global_name_prefix","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTQyZjRmZWQ3LWQ4MzAtNDczZC1iYTAzLTYxOTViMThkNWIyZA==","keyName":"ops.is_dev","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTgzOTkzZDFkLTE5ZjgtNDBiMC1iM2E5LTA4ZmUxNDFmMThmYg==","keyName":"ops.local_name_prefix","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWQzMmNhOGU2LWRmNDYtNGU2YS04ZjExLTU5YjUwYTJlM2QwMg==","keyName":"ops.logs_bucket","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWU4MDgwYjFjLWNhYjAtNDk0My1hZDIzLWYwZjRjYmFlNjBkMg==","keyName":"ops.ops_email","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTYzY2YxNDY0LWIxMTgtNDc5NS1hNDRmLWY4OWVmMzkxMzczMQ==","keyName":"ops.org","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTU3M2QzYzRhLTcwYTItNDA1Ni04YWY5LTJhYjEyNTZjMGQzNQ==","keyName":"ops.org_prefix","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTIxZjFjODkzLTg0NzEtNDA1Yy04YWJmLTQxOTNhM2E2ZTBlZg==","keyName":"ops.service_sizing.bigboy.cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTllMjIzNjc5LWRhZjAtNDliNy1hMzk1LTVjYTEzZDYzN2I5OQ==","keyName":"ops.service_sizing.bigboy.max_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTM0MDY4ZDEwLTQyYTEtNDBlZS1hNmVhLTAwNGM2ZjQxMjJjYg==","keyName":"ops.service_sizing.bigboy.memory","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWQ0NWQzZjY0LTJkNGEtNDU4ZC05MTM5LTg1ZmFjYTBlMTNkMg==","keyName":"ops.service_sizing.bigboy.min_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTUzYzRjZTAwLWE1MGMtNDQyNS1iMjUzLTJiNmM1MmNiN2Q5Mg==","keyName":"ops.service_sizing_default.cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTNiMGFjMGNjLWZlMGUtNDM3Mi1iZDQ0LTI1NGVlNmM0NjA5ZQ==","keyName":"ops.service_sizing_default.max_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTRlMTY4MzRmLWEyZGMtNDNlZS04ZmQ1LTNlZTZlMmM3MzQ5OA==","keyName":"ops.service_sizing_default.memory","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTNkODI1NjM1LWM4MDAtNDVlYS1hYjEwLWRhZTU3MTc5ZGIzMQ==","keyName":"ops.service_sizing_default.min_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTA5NTRjZDYzLTM0N2MtNGRlOC1iOTE4LTdlNDVmYjA2ZTIxMw==","keyName":"ops.skip_final_snapshot","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWYyN2VhNjc5LTg4YjEtNGNiMi05M2QwLTc3Y2ZiYjkyNDYzNQ==","keyName":"ops.vpc_cidr","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWYzYTc1ZjUwLWRlYmItNDc2NC1hMzE4LTBiYmM5NTJjMmMzMg==","keyName":"ops.vpc_enable_nat","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWJlZDllMjg1LTM5Y2EtNDM0Yy04ODVjLWQ0NmFkODAxMjkxYw==","keyName":"ops.vpc_enable_redundant_nat","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTdlZDJhNjUzLTI3YjgtNGU1ZS1hZWEyLWZlY2FlMjYzNzE5Nw==","keyName":"ops.website_bucket","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWFhN2VmZWQyLTQyM2EtNGRlMy05MjAxLTU5NTYxNTU1MjA3NQ==","keyName":"service.demo1.token","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWNmM2I4NjI2LWNlZWMtNDBiMS05YjkwLTYxMjEyYjQ4YjRjNQ==","keyName":"service.demo2.limit","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWQ0Mzg5YzdkLTI3ZDUtNGFkNC1hMjQwLWRhYTM5OTBlNzM4Yw==","keyName":"service.demo2.min","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWYwMzkzYmIzLWZhY2QtNDY0MS04MmUwLWNiMTJhYzNiN2VlYg==","keyName":"service.demo2.mykey","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLThkYWQ5NDZlLTdjMDQtNDI1OS05YTJmLTRhYmZkOGFiMmM3NQ==","keyName":"service.demo2.other","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWNlNTViNDY0LWExZTMtNGJmYi05MjRhLWRlOTYzNDQ3ZGRlZQ==","keyName":"service.demo3.foo","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY3YzYzMjc5LWY1M2ItNDUzYi1hNmI2LTc5NGJmNjE1ZTI5Nw==","keyName":"service.demo4.bar","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTI1ZmVmNDRiLWI2ZTMtNDg1Zi05MjQ0LWFjMzg0YjBjMzAwZQ==","keyName":"some_config","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTgxMWNmOTJjLTk4Y2MtNGZlYi04M2I1LTc3MmMzMTEzNjZiMg==","keyName":"svc.demo.active","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWU4YWNmMDIwLWEyNWUtNDgyOS04ZTdhLTU4ZGU1YWE4Zjg2Yg==","keyName":"svc.demo.enable_logging","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWFjZGVkMTQyLWIyZGYtNDkxMy1hZjU3LTY0ODJjNjhjYjVjOA==","keyName":"svc.demo.max_cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWJiZTZmNTcyLTVkM2UtNDZkYS1iMmQ1LTJkODlkODVhNGU0MQ==","keyName":"svc.demo.max_retries","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWUxNmJhYjM3LWFjYjItNGJiOS1iODc0LWMxYWFiNjA2OTFjNA==","keyName":"svc.demo.min_cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWJhYmFhZTM3LTMyNTMtNDE5NC05N2E1LWIyNDYyZjNiNTAyYw==","keyName":"svc.demo.region","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTI0ZGI2MGY2LWU2ODMtNDIzNi1iYmRmLTQ1ZWUzMGU3MDFjZA==","keyName":"svc.demo.timeout","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTUwODMzMWI3LThjNDAtNDkyYi05NjUyLWI4ZTc2MDM0YzIxMQ==","keyName":"web.app.background_color","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTJhNzI2MDUxLTRkNTEtNDBiZi05ZmJiLTQ4Mjg3NTBmMjAwMQ==","keyName":"web.app.polling_interval","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY4MjNlYWFkLWE4ZTEtNGRhYy05YTJlLTBjZWFkMDYzZjliZg==","keyName":"web_bucket","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTBjZWFjZjZiLTg4MzItNGZkZi1hNDk1LTQzNWJlNGRkNWFkOQ==","keyName":"web_distribution_id","isSecret":false,"environmentValue":{"parameterValue":""}}]}}}}}}' + recorded_at: Tue, 27 Apr 2021 14:11:04 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/CtApi/_parameters/uses_organization_to_get_values.yml b/spec/fixtures/vcr/CtApi/_parameters/uses_organization_to_get_values.yml index 6532885..bccbb1a 100644 --- a/spec/fixtures/vcr/CtApi/_parameters/uses_organization_to_get_values.yml +++ b/spec/fixtures/vcr/CtApi/_parameters/uses_organization_to_get_values.yml @@ -25,7 +25,7 @@ http_interactions: Accept: - application/json User-Agent: - - kubetruth/0.2.0 + - kubetruth/0.3.0 Content-Type: - application/json Authorization: @@ -36,7 +36,7 @@ http_interactions: message: OK headers: Date: - - Wed, 17 Feb 2021 15:58:17 GMT + - Tue, 27 Apr 2021 14:11:01 GMT Content-Type: - application/json; charset=utf-8 Transfer-Encoding: @@ -55,19 +55,19 @@ http_interactions: - none Referrer-Policy: - strict-origin-when-cross-origin + Vary: + - Accept, Origin Etag: - - W/"9fb738763ccd7d76282a12d15db153be" + - W/"75ec2b3ba6f57bc364b5a38b5e8f606b" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - 37c8fc89-2f9b-49b0-9549-c9a1ed42f16d + - f324fc85-97d0-4802-9327-773f52245963 X-Runtime: - - '0.534934' - Vary: - - Origin + - '0.999666' body: encoding: UTF-8 - string: '{"data":{"__schema":{"queryType":{"name":"Query"},"mutationType":{"name":"Mutation"},"subscriptionType":null,"types":[{"kind":"OBJECT","name":"AuditLogSnapshot","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fileUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SnapshotStatusEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditLogSnapshotConnection","description":"The + string: '{"data":{"__schema":{"queryType":{"name":"Query"},"mutationType":{"name":"Mutation"},"subscriptionType":null,"types":[{"kind":"OBJECT","name":"AuditLogSnapshot","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fileUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SnapshotStatusEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditLogSnapshotConnection","description":"The connection type for AuditLogSnapshot.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AuditLogSnapshotEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -76,7 +76,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditLogSnapshotEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegration","description":null,"fields":[{"name":"accountId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"enabledServices","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsIntegrationEnum","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"externalId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"roleName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegrationConnection","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegration","description":null,"fields":[{"name":"accountId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"enabledServices","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsIntegrationEnum","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"externalId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"roleName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegrationConnection","description":"The connection type for AwsIntegration.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegrationEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegration","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -85,7 +85,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegrationEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AwsIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AwsIntegrationEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"S3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SSM","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"Boolean","description":"Represents + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AwsIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AwsIntegrationEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"S3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SSM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SECRETS_MANAGER","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INTERFACE","name":"BasePolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"InvitationPolicy","ofType":null},{"kind":"OBJECT","name":"NodePolicy","ofType":null},{"kind":"OBJECT","name":"OrganizationPolicy","ofType":null}]},{"kind":"SCALAR","name":"Boolean","description":"Represents `true` or `false` values.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateAuditLogSnapshotInput","description":"Autogenerated input type of CreateAuditLogSnapshot","fields":null,"inputFields":[{"name":"organizationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateAuditLogSnapshotPayload","description":"Autogenerated @@ -107,19 +107,27 @@ http_interactions: unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateInvitationPayload","description":"Autogenerated return type of CreateInvitation","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"invitation","description":null,"args":[],"type":{"kind":"OBJECT","name":"Invitation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateOrganizationInput","description":"Autogenerated - input type of CreateOrganization","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + input type of CreateOrganization","fields":null,"inputFields":[{"name":"eaorgid","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateOrganizationPayload","description":"Autogenerated return type of CreateOrganization","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateParameterInput","description":"Autogenerated - input type of CreateParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + input type of CreateParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateParameterPayload","description":"Autogenerated return type of CreateParameter","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreatePersonalAccessTokenInput","description":"Autogenerated input type of CreatePersonalAccessToken","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"writeAccess","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreatePersonalAccessTokenPayload","description":"Autogenerated return type of CreatePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","description":"Autogenerated - input type of CreateTemplate","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateProjectInput","description":"Autogenerated + input type of CreateProject","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateProjectPayload","description":"Autogenerated + return type of CreateProject","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateServiceAccountInput","description":"Autogenerated + input type of CreateServiceAccount","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateServiceAccountPayload","description":"Autogenerated + return type of CreateServiceAccount","fields":[{"name":"apiToken","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"serviceAccount","description":null,"args":[],"type":{"kind":"OBJECT","name":"ServiceAccount","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","description":"Autogenerated + input type of CreateTemplate","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateTemplatePayload","description":"Autogenerated return type of CreateTemplate","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteAllPersonalAccessTokensInput","description":"Autogenerated @@ -142,7 +150,11 @@ http_interactions: input type of DeleteInvitation","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteInvitationPayload","description":"Autogenerated return type of DeleteInvitation","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedInvitationId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedInvitationId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteMembershipInput","description":"Autogenerated + input type of DeleteMembership","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteMembershipPayload","description":"Autogenerated + return type of DeleteMembership","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedMembershipId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","description":"Autogenerated input type of DeleteParameter","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteParameterPayload","description":"Autogenerated return type of DeleteParameter","fields":[{"name":"clientMutationId","description":"A @@ -150,7 +162,15 @@ http_interactions: input type of DeletePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeletePersonalAccessTokenPayload","description":"Autogenerated return type of DeletePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedPersonalAccessTokenId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedPersonalAccessTokenId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteProjectInput","description":"Autogenerated + input type of DeleteProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteProjectPayload","description":"Autogenerated + return type of DeleteProject","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteServiceAccountInput","description":"Autogenerated + input type of DeleteServiceAccount","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteServiceAccountPayload","description":"Autogenerated + return type of DeleteServiceAccount","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedServiceAccountId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","description":"Autogenerated input type of DeleteTemplate","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteTemplatePayload","description":"Autogenerated return type of DeleteTemplate","fields":[{"name":"clientMutationId","description":"A @@ -158,7 +178,7 @@ http_interactions: the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[{"name":"parameterId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterValue","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentConnection","description":"The + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[{"name":"parameterId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterValue","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentConnection","description":"The connection type for Environment.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -167,11 +187,11 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentValue","description":null,"fields":[{"name":"environment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integrationFile","description":null,"args":[],"type":{"kind":"OBJECT","name":"IntegrationFile","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"jmesPath","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EnvironmentValueTypeEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"EnvironmentValueTypeEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"STATIC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DYNAMIC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","description":"Autogenerated + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentValue","description":null,"fields":[{"name":"environment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integrationFile","description":null,"args":[],"type":{"kind":"OBJECT","name":"IntegrationFile","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"jmesPath","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EnvironmentValueTypeEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"EnvironmentValueTypeEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"STATIC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DYNAMIC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ExportParameters","description":null,"fields":[{"name":"evaluated","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ExportParametersFormatEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"DOCKER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DOTENV","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SHELL","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ExportParametersOptions","description":null,"fields":null,"inputFields":[{"name":"secrets","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"export","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"startsWith","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"endsWith","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"contains","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","description":"Autogenerated input type of FakeOrganizationData","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FakeOrganizationDataPayload","description":"Autogenerated return type of FakeOrganizationData","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegration","description":null,"fields":[{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"availableRepositoryCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"installationUrl","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegrationConnection","description":"The + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegration","description":null,"fields":[{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"availableRepositoryCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"installationUrl","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegrationConnection","description":"The connection type for GithubIntegration.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"GithubIntegrationEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"GithubIntegration","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -180,7 +200,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegrationEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"GithubIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"ID","description":"Represents + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"GithubIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"HasPolicy","description":null,"fields":[{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"BasePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"ServiceAccount","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null}]},{"kind":"SCALAR","name":"ID","description":"Represents a unique identifier that is Base64 obfuscated. It is often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected @@ -201,7 +221,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"IntegrationTreeEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Invitation","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberEmail","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberRole","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InvitationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationConnection","description":"The + item at the end of the edge.","args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Invitation","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberEmail","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberRole","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationPolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InvitationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationConnection","description":"The connection type for Invitation.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Invitation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -210,7 +230,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Invitation","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"InvitationStateEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ACCEPTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DECLINED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PENDING","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Membership","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pictureUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MembershipConnection","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Invitation","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationPolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resend","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"InvitationStateEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ACCEPTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DECLINED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PENDING","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Membership","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pictureUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MembershipConnection","description":"The connection type for Membership.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Membership","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -219,8 +239,45 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MembershipEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"MembershipRoleEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ADMIN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CONTRIBUTOR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VIEWER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"OWNER","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Mutation","description":null,"fields":[{"name":"createAuditLogSnapshot","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAuditLogSnapshotInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAuditLogSnapshotPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createAwsIntegration","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createEnvironment","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createGithubSetupToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateGithubSetupTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateGithubSetupTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createInvitation","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createOrganization","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrganizationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateOrganizationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createParameter","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createPersonalAccessToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createTemplate","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAllPersonalAccessTokens","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAllPersonalAccessTokensInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAllPersonalAccessTokensPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAwsIntegration","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteEnvironment","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteGithubIntegration","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteGithubIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteGithubIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteInvitation","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteParameter","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deletePersonalAccessToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeletePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeletePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteTemplate","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fakeOrganizationData","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"FakeOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"regeneratePersonalAccessToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RegeneratePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resetOrganizationData","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResetOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateAwsIntegration","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateEnvironment","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateInvitation","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateMembership","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateMembershipInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateMembershipPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateParameter","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatePersonalAccessToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateTemplate","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"upsertParameter","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpsertParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpsertParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"Node","description":"An - object with an ID.","fields":[{"name":"id","description":"ID of the object.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"IntegrationFile","ofType":null},{"kind":"OBJECT","name":"IntegrationFileTree","ofType":null},{"kind":"OBJECT","name":"IntegrationServiceTree","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null},{"kind":"OBJECT","name":"Viewer","ofType":null}]},{"kind":"ENUM","name":"OrderByEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DESC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Organization","description":null,"fields":[{"name":"auditLogSnapshots","description":null,"args":[{"name":"after","description":"Returns + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"MembershipRoleEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ADMIN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CONTRIBUTOR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VIEWER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"OWNER","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Mutation","description":null,"fields":[{"name":"createAuditLogSnapshot","description":null,"args":[{"name":"input","description":"Parameters + for CreateAuditLogSnapshot","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAuditLogSnapshotInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAuditLogSnapshotPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters + for CreateAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createEnvironment","description":null,"args":[{"name":"input","description":"Parameters + for CreateEnvironment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createGithubSetupToken","description":null,"args":[{"name":"input","description":"Parameters + for CreateGithubSetupToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateGithubSetupTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateGithubSetupTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createInvitation","description":null,"args":[{"name":"input","description":"Parameters + for CreateInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createOrganization","description":null,"args":[{"name":"input","description":"Parameters + for CreateOrganization","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrganizationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateOrganizationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createParameter","description":null,"args":[{"name":"input","description":"Parameters + for CreateParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createPersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for CreatePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createProject","description":null,"args":[{"name":"input","description":"Parameters + for CreateProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createServiceAccount","description":null,"args":[{"name":"input","description":"Parameters + for CreateServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateServiceAccountPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createTemplate","description":null,"args":[{"name":"input","description":"Parameters + for CreateTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAllPersonalAccessTokens","description":null,"args":[{"name":"input","description":"Parameters + for DeleteAllPersonalAccessTokens","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAllPersonalAccessTokensInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAllPersonalAccessTokensPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters + for DeleteAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteEnvironment","description":null,"args":[{"name":"input","description":"Parameters + for DeleteEnvironment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteGithubIntegration","description":null,"args":[{"name":"input","description":"Parameters + for DeleteGithubIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteGithubIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteGithubIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteInvitation","description":null,"args":[{"name":"input","description":"Parameters + for DeleteInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteMembership","description":null,"args":[{"name":"input","description":"Parameters + for DeleteMembership","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteMembershipInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteMembershipPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteParameter","description":null,"args":[{"name":"input","description":"Parameters + for DeleteParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deletePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for DeletePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeletePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeletePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteProject","description":null,"args":[{"name":"input","description":"Parameters + for DeleteProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteServiceAccount","description":null,"args":[{"name":"input","description":"Parameters + for DeleteServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteServiceAccountPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteTemplate","description":null,"args":[{"name":"input","description":"Parameters + for DeleteTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fakeOrganizationData","description":null,"args":[{"name":"input","description":"Parameters + for FakeOrganizationData","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"FakeOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refreshServiceAccountApiToken","description":null,"args":[{"name":"input","description":"Parameters + for RefreshServiceAccountApiToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RefreshServiceAccountApiTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RefreshServiceAccountApiTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"regeneratePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for RegeneratePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RegeneratePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resendInvitation","description":null,"args":[{"name":"input","description":"Parameters + for ResendInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResendInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResendInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resetOrganizationData","description":null,"args":[{"name":"input","description":"Parameters + for ResetOrganizationData","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResetOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters + for UpdateAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateEnvironment","description":null,"args":[{"name":"input","description":"Parameters + for UpdateEnvironment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateInvitation","description":null,"args":[{"name":"input","description":"Parameters + for UpdateInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateMembership","description":null,"args":[{"name":"input","description":"Parameters + for UpdateMembership","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateMembershipInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateMembershipPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateOrganization","description":null,"args":[{"name":"input","description":"Parameters + for UpdateOrganization","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateOrganizationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateOrganizationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateParameter","description":null,"args":[{"name":"input","description":"Parameters + for UpdateParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for UpdatePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateProject","description":null,"args":[{"name":"input","description":"Parameters + for UpdateProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateTemplate","description":null,"args":[{"name":"input","description":"Parameters + for UpdateTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"upsertParameter","description":null,"args":[{"name":"input","description":"Parameters + for UpsertParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpsertParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpsertParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"Node","description":"An + object with an ID.","fields":[{"name":"id","description":"ID of the object.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"IntegrationFile","ofType":null},{"kind":"OBJECT","name":"IntegrationFileTree","ofType":null},{"kind":"OBJECT","name":"IntegrationServiceTree","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"ServiceAccount","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null},{"kind":"OBJECT","name":"Viewer","ofType":null}]},{"kind":"OBJECT","name":"NodePolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"OrderByEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DESC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Organization","description":null,"fields":[{"name":"auditLogSnapshots","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns @@ -228,11 +285,12 @@ http_interactions: the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegrationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"environment","description":null,"args":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environments","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegrationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"defaultProject","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"environment","description":null,"args":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environments","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"evaluateTemplate","description":null,"args":[{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TemplateEvaluation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"githubIntegrations","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"evaluateTemplate","description":null,"args":[{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TemplateEvaluation","ofType":null},"isDeprecated":true,"deprecationReason":"Use + project instead."},{"name":"githubIntegrations","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns @@ -244,11 +302,13 @@ http_interactions: the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberships","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"state","description":"Filter + invitation list by state.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InvitationStateEnum","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberships","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"userType","description":"Optionally + filter by user type.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns @@ -256,21 +316,27 @@ http_interactions: order for parameters.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","ofType":null}}},"defaultValue":null},{"name":"searchTerm","description":"Search over parameter names.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"where","description":"Filter parameter list.","type":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null},"defaultValue":null},{"name":"keyNames","description":"List - of key names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + of key names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrganizationPolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projects","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ProjectConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionExpiresAt","description":null,"args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionId","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionPlanId","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionPlanName","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"names","description":"List - of template names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursor","description":null,"fields":[{"name":"cursor","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isCurrent","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageNumber","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursors","description":null,"fields":[{"name":"around","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageCursor","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"first","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"last","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previous","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageInfo","description":"Information + of template names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"vaultId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"OrganizationPolicy","description":null,"fields":[{"name":"createEnvironment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createIntegration","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createInvitation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createParameter","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Everything + will go through project in the near future."},{"name":"createProject","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createTemplate","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Everything + will go through the project in the near future."},{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursor","description":null,"fields":[{"name":"cursor","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isCurrent","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageNumber","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursors","description":null,"fields":[{"name":"around","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageCursor","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"first","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"last","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previous","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageInfo","description":"Information about pagination in a connection.","fields":[{"name":"endCursor","description":"When paginating forwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasNextPage","description":"When paginating forwards, are there more items?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasPreviousPage","description":"When paginating backwards, are there more items?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"startCursor","description":"When - paginating backwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Parameter","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValue","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValues","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"hasDynamicValue","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isSecret","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"keyName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + paginating backwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Parameter","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValue","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValues","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"hasDynamicValue","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isSecret","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"keyName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","description":null,"fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"keyName","description":null,"type":{"kind":"INPUT_OBJECT","name":"StringComparisonExp","ofType":null},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"INPUT_OBJECT","name":"IdComparisonExp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterConnection","description":"The + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","description":null,"fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"keyName","description":null,"type":{"kind":"INPUT_OBJECT","name":"StringComparisonExp","ofType":null},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"INPUT_OBJECT","name":"IdComparisonExp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterConnection","description":"The connection type for Parameter.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Parameter","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -279,7 +345,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","description":null,"fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null},{"name":"updatedAt","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterValue","description":null,"fields":[{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessToken","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastUsed","description":null,"args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"writeAccess","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessTokenConnection","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","description":null,"fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null},{"name":"updatedAt","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterValue","description":null,"fields":[{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessToken","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastUsed","description":null,"args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"writeAccess","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessTokenConnection","description":"The connection type for PersonalAccessToken.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PersonalAccessTokenEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -288,20 +354,51 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessTokenEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Query","description":null,"fields":[{"name":"node","description":"Fetches + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Project","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"defaultForOrganization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"evaluateTemplate","description":null,"args":[{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TemplateEvaluation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"exportParameters","description":null,"args":[{"name":"format","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ExportParametersFormatEnum","ofType":null}},"defaultValue":null},{"name":"options","description":null,"type":{"kind":"INPUT_OBJECT","name":"ExportParametersOptions","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ExportParameters","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"orderBy","description":"Sort + order for parameters.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","ofType":null}}},"defaultValue":null},{"name":"searchTerm","description":"Search + over parameter names.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"where","description":"Filter + parameter list.","type":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null},"defaultValue":null},{"name":"keyNames","description":"List + of key names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"names","description":"List + of template names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectConnection","description":"The + connection type for Project.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ProjectEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Query","description":null,"fields":[{"name":"node","description":"Fetches an object given its ID.","args":[{"name":"id","description":"ID of the object.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"INTERFACE","name":"Node","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"Fetches a list of objects given a list of IDs.","args":[{"name":"ids","description":"IDs - of the objects.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INTERFACE","name":"Node","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","description":"Autogenerated + of the objects.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INTERFACE","name":"Node","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RefreshServiceAccountApiTokenInput","description":"Autogenerated + input type of RefreshServiceAccountApiToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RefreshServiceAccountApiTokenPayload","description":"Autogenerated + return type of RefreshServiceAccountApiToken","fields":[{"name":"apiToken","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"serviceAccount","description":null,"args":[],"type":{"kind":"OBJECT","name":"ServiceAccount","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","description":"Autogenerated input type of RegeneratePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RegeneratePersonalAccessTokenPayload","description":"Autogenerated return type of RegeneratePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ResendInvitationInput","description":"Autogenerated + input type of ResendInvitation","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ResendInvitationPayload","description":"Autogenerated + return type of ResendInvitation","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"invitation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Invitation","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","description":"Autogenerated input type of ResetOrganizationData","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ResetOrganizationDataPayload","description":"Autogenerated return type of ResetOrganizationData","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SnapshotStatusEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"REQUESTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PROCESSING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AVAILABLE","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"String","description":"Represents + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ServiceAccount","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SnapshotStatusEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"REQUESTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PROCESSING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AVAILABLE","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"String","description":"Represents textual data as UTF-8 character sequences. This type is most often used by - GraphQL to represent free-form human-readable text.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"StringComparisonExp","description":null,"fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Template","description":null,"fields":[{"name":"body","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"evaluated","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TemplateConnection","description":"The + GraphQL to represent free-form human-readable text.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"StringComparisonExp","description":null,"fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Template","description":null,"fields":[{"name":"body","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"evaluated","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":true,"deprecationReason":"Use + project instead."},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TemplateConnection","description":"The connection type for Template.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Template","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -326,7 +423,11 @@ http_interactions: input type of UpdateMembership","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateMembershipPayload","description":"Autogenerated return type of UpdateMembership","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"membership","description":null,"args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"membership","description":null,"args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateOrganizationInput","description":"Autogenerated + input type of UpdateOrganization","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateOrganizationPayload","description":"Autogenerated + return type of UpdateOrganization","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","description":"Autogenerated input type of UpdateParameter","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"integrationFileId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"integrationFileFqn","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"jmesPath","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateParameterPayload","description":"Autogenerated return type of UpdateParameter","fields":[{"name":"clientMutationId","description":"A @@ -334,12 +435,16 @@ http_interactions: input type of UpdatePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"writeAccess","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdatePersonalAccessTokenPayload","description":"Autogenerated return type of UpdatePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateProjectInput","description":"Autogenerated + input type of UpdateProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateProjectPayload","description":"Autogenerated + return type of UpdateProject","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","description":"Autogenerated input type of UpdateTemplate","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"body","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateTemplatePayload","description":"Autogenerated return type of UpdateTemplate","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpsertParameterInput","description":"Autogenerated - input type of UpsertParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + input type of UpsertParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpsertParameterPayload","description":"Autogenerated return type of UpsertParameter","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserError","description":"A @@ -358,7 +463,7 @@ http_interactions: validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL''s execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives - provide this by describing additional information to the executor.","fields":[{"name":"args","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locations","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__DirectiveLocation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"onField","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use + provide this by describing additional information to the executor.","fields":[{"name":"args","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locations","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__DirectiveLocation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"onField","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."},{"name":"onFragment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."},{"name":"onOperation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__DirectiveLocation","description":"A @@ -386,11 +491,11 @@ http_interactions: for a string or numeric value. However an Enum value is returned in a JSON response as a string.","fields":[{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Field","description":"Object and Interface types are described by a list of Fields, each of which has a - name, potentially a list of arguments, and a return type.","fields":[{"name":"args","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__InputValue","description":"Arguments + name, potentially a list of arguments, and a return type.","fields":[{"name":"args","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__InputValue","description":"Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.","fields":[{"name":"defaultValue","description":"A GraphQL-formatted - string representing the default value for this input value.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Schema","description":"A + string representing the default value for this input value.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Schema","description":"A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.","fields":[{"name":"directives","description":"A @@ -407,7 +512,7 @@ http_interactions: types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at - runtime. List and NonNull types compose other types.","fields":[{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"enumValues","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__EnumValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"fields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Field","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"inputFields","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"interfaces","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__TypeKind","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"ofType","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"possibleTypes","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__TypeKind","description":"An + runtime. List and NonNull types compose other types.","fields":[{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"enumValues","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__EnumValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"fields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Field","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"inputFields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"interfaces","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__TypeKind","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"ofType","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"possibleTypes","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__TypeKind","description":"An enum describing what kind of type a given `__Type` is.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"SCALAR","description":"Indicates this type is a scalar.","isDeprecated":false,"deprecationReason":null},{"name":"OBJECT","description":"Indicates this type is an object. `fields` and `interfaces` are valid fields.","isDeprecated":false,"deprecationReason":null},{"name":"INTERFACE","description":"Indicates @@ -422,25 +527,25 @@ http_interactions: when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"skip","description":"Directs the executor to skip this field or fragment when the `if` argument is true.","locations":["FIELD","FRAGMENT_SPREAD","INLINE_FRAGMENT"],"args":[{"name":"if","description":"Skipped when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"deprecated","description":"Marks - an element of a GraphQL schema as no longer supported.","locations":["FIELD_DEFINITION","ENUM_VALUE"],"args":[{"name":"reason","description":"Explains + an element of a GraphQL schema as no longer supported.","locations":["FIELD_DEFINITION","ENUM_VALUE","ARGUMENT_DEFINITION","INPUT_FIELD_DEFINITION"],"args":[{"name":"reason","description":"Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted in [Markdown](https://daringfireball.net/projects/markdown/).","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"\"No longer supported\""}]}]}}}' - recorded_at: Wed, 17 Feb 2021 15:58:16 GMT + recorded_at: Tue, 27 Apr 2021 14:10:55 GMT - request: method: post uri: https://api.cloudtruth.com/graphql body: encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_122800 {\n viewer - {\n memberships {\n nodes {\n organization {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_122800"}' + string: '{"query":"query GraphQL__Client__OperationDefinition_180300 {\n viewer + {\n memberships {\n nodes {\n organization {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_180300"}' headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - application/json User-Agent: - - kubetruth/0.2.0 + - kubetruth/0.3.0 Content-Type: - application/json Authorization: @@ -451,7 +556,7 @@ http_interactions: message: OK headers: Date: - - Wed, 17 Feb 2021 15:58:17 GMT + - Tue, 27 Apr 2021 14:11:02 GMT Content-Type: - application/json; charset=utf-8 Transfer-Encoding: @@ -470,35 +575,36 @@ http_interactions: - none Referrer-Policy: - strict-origin-when-cross-origin + Vary: + - Accept, Origin Etag: - - W/"dd6fbd595565bb739ed3c235c3e1d53c" + - W/"3948b709f7ddb5be738bb5ecc5683449" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - c0842de0-f05d-48ef-94e4-69d8463a1e0d + - 2206e8ad-7af4-46a2-8349-e612e4ad8b82 X-Runtime: - - '0.037373' - Vary: - - Origin + - '0.071198' body: encoding: UTF-8 - string: '{"data":{"viewer":{"memberships":{"nodes":[{"organization":{"id":"T3JnYW5pemF0aW9uLTE1YzgxYjViLWVlM2ItNDlmNS1iNGVkLTIyYTc0NDI3N2ZiMw==","name":"Personal"}}]}}}}' - recorded_at: Wed, 17 Feb 2021 15:58:16 GMT + string: '{"data":{"viewer":{"memberships":{"nodes":[{"organization":{"id":"T3JnYW5pemF0aW9uLTE1YzgxYjViLWVlM2ItNDlmNS1iNGVkLTIyYTc0NDI3N2ZiMw==","name":"CloudTruth + Demo"}}]}}}}' + recorded_at: Tue, 27 Apr 2021 14:10:55 GMT - request: method: post uri: https://api.cloudtruth.com/graphql body: encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_122840($organizationId: + string: '{"query":"query GraphQL__Client__OperationDefinition_180340($organizationId: ID) {\n viewer {\n organization(id: $organizationId) {\n environments - {\n nodes {\n id\n name\n }\n }\n }\n }\n}","variables":{"organizationId":"T3JnYW5pemF0aW9uLTE1YzgxYjViLWVlM2ItNDlmNS1iNGVkLTIyYTc0NDI3N2ZiMw=="},"operationName":"GraphQL__Client__OperationDefinition_122840"}' + {\n nodes {\n id\n name\n }\n }\n }\n }\n}","variables":{"organizationId":"T3JnYW5pemF0aW9uLTE1YzgxYjViLWVlM2ItNDlmNS1iNGVkLTIyYTc0NDI3N2ZiMw=="},"operationName":"GraphQL__Client__OperationDefinition_180340"}' headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - application/json User-Agent: - - kubetruth/0.2.0 + - kubetruth/0.3.0 Content-Type: - application/json Authorization: @@ -509,7 +615,7 @@ http_interactions: message: OK headers: Date: - - Wed, 17 Feb 2021 15:58:17 GMT + - Tue, 27 Apr 2021 14:11:02 GMT Content-Type: - application/json; charset=utf-8 Transfer-Encoding: @@ -528,37 +634,38 @@ http_interactions: - none Referrer-Policy: - strict-origin-when-cross-origin + Vary: + - Accept, Origin Etag: - - W/"65ef7ec24337fc3df9a19032eaf15852" + - W/"4216eb2052c7088952da5a9791e740cd" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - 7a32fb0a-d7d1-4501-af94-0a2f5a8beeb6 + - ca9a55fb-9e4e-4530-9e1c-6da3cbdedcfc X-Runtime: - - '0.023639' - Vary: - - Origin + - '0.038050' body: encoding: UTF-8 - string: '{"data":{"viewer":{"organization":{"environments":{"nodes":[{"id":"RW52aXJvbm1lbnQtZjk3MDI1NGEtNGQ0NS00YTA1LWJiYjctOTRjZTdhOGRmODky","name":"default"},{"id":"RW52aXJvbm1lbnQtOGRmMTVjMjYtN2FhZi00ODE5LWJlNzYtMTVmMzU2YzQ5YTg1","name":"production"},{"id":"RW52aXJvbm1lbnQtNmI5M2NlMWEtMTVkMS00MzRiLTg1NTAtODhjZDZhY2ZjYzU4","name":"development"},{"id":"RW52aXJvbm1lbnQtY2EyMDA0YzctZjQ3Mi00MzFlLWIyODgtNzg0NmYzMTBmMGZj","name":"ops"},{"id":"RW52aXJvbm1lbnQtMzY4MWRkMjctZDY2YS00NjdlLWI1NzMtYmI2YzU0ZmFjZDM1","name":"staging"},{"id":"RW52aXJvbm1lbnQtZWE3MzBjYmMtYzg1Zi00M2M1LTlkNjgtY2Q5NTlmMmNhYjQ2","name":"Dev1"}]}}}}}' - recorded_at: Wed, 17 Feb 2021 15:58:16 GMT + string: '{"data":{"viewer":{"organization":{"environments":{"nodes":[{"id":"RW52aXJvbm1lbnQtZjk3MDI1NGEtNGQ0NS00YTA1LWJiYjctOTRjZTdhOGRmODky","name":"default"},{"id":"RW52aXJvbm1lbnQtOGRmMTVjMjYtN2FhZi00ODE5LWJlNzYtMTVmMzU2YzQ5YTg1","name":"production"},{"id":"RW52aXJvbm1lbnQtNmI5M2NlMWEtMTVkMS00MzRiLTg1NTAtODhjZDZhY2ZjYzU4","name":"development"},{"id":"RW52aXJvbm1lbnQtY2EyMDA0YzctZjQ3Mi00MzFlLWIyODgtNzg0NmYzMTBmMGZj","name":"ops"},{"id":"RW52aXJvbm1lbnQtMzY4MWRkMjctZDY2YS00NjdlLWI1NzMtYmI2YzU0ZmFjZDM1","name":"staging"},{"id":"RW52aXJvbm1lbnQtZDE4NGQ1ODctYjA2Yi00OWU2LThhMGItNjU1YTM2NDQwYjRj","name":"dev-matt"}]}}}}}' + recorded_at: Tue, 27 Apr 2021 14:10:56 GMT - request: method: post uri: https://api.cloudtruth.com/graphql body: encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_122880($organizationId: - ID, $environmentId: ID, $searchTerm: String) {\n viewer {\n organization(id: - $organizationId) {\n parameters(searchTerm: $searchTerm, orderBy: {keyName: - ASC}) {\n nodes {\n id\n keyName\n isSecret\n environmentValue(environmentId: - $environmentId) {\n parameterValue\n }\n }\n }\n }\n }\n}","variables":{"searchTerm":"","environmentId":"RW52aXJvbm1lbnQtZjk3MDI1NGEtNGQ0NS00YTA1LWJiYjctOTRjZTdhOGRmODky","organizationId":"T3JnYW5pemF0aW9uLTE1YzgxYjViLWVlM2ItNDlmNS1iNGVkLTIyYTc0NDI3N2ZiMw=="},"operationName":"GraphQL__Client__OperationDefinition_122880"}' + string: '{"query":"query GraphQL__Client__OperationDefinition_180380($organizationId: + ID, $environmentId: ID, $projectName: String, $searchTerm: String) {\n viewer + {\n organization(id: $organizationId) {\n project(name: $projectName) + {\n parameters(searchTerm: $searchTerm, orderBy: {keyName: ASC}) {\n nodes + {\n id\n keyName\n isSecret\n environmentValue(environmentId: + $environmentId) {\n parameterValue\n }\n }\n }\n }\n }\n }\n}","variables":{"searchTerm":"","environmentId":"RW52aXJvbm1lbnQtZjk3MDI1NGEtNGQ0NS00YTA1LWJiYjctOTRjZTdhOGRmODky","organizationId":"T3JnYW5pemF0aW9uLTE1YzgxYjViLWVlM2ItNDlmNS1iNGVkLTIyYTc0NDI3N2ZiMw=="},"operationName":"GraphQL__Client__OperationDefinition_180380"}' headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - application/json User-Agent: - - kubetruth/0.2.0 + - kubetruth/0.3.0 Content-Type: - application/json Authorization: @@ -569,7 +676,7 @@ http_interactions: message: OK headers: Date: - - Wed, 17 Feb 2021 15:58:18 GMT + - Tue, 27 Apr 2021 14:11:03 GMT Content-Type: - application/json; charset=utf-8 Transfer-Encoding: @@ -588,18 +695,18 @@ http_interactions: - none Referrer-Policy: - strict-origin-when-cross-origin + Vary: + - Accept, Origin Etag: - - W/"f978a622bc5ae28c92d17d710dddb552" + - W/"fe60a28a77577e7f2c8c439ebbfce64b" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - a96cfb98-cea3-4fb5-a7e2-ebd834f38fd7 + - 9fa3cedc-5555-471a-a3fc-1c203adfadd0 X-Runtime: - - '0.795949' - Vary: - - Origin + - '0.839207' body: encoding: UTF-8 - string: '{"data":{"viewer":{"organization":{"parameters":{"nodes":[{"id":"UGFyYW1ldGVyLTFlZGRhNTRiLTYzOTItNDFhMS1iOTU0LWRhMjUyNjE2MzZhZQ==","keyName":"app.demo.color0","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWUxN2M2ZGIwLWU4NjYtNGM5Yi1iNmRjLTE2MjE2ZTJlM2MxZQ==","keyName":"app.demo.color1","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTQ0MTZhYzIyLTIxOGEtNGQ0Ni1iNjhjLTY4MmFmYTJiNmJmMw==","keyName":"app.demo.color2","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTk4NGQ4MDc2LWIxNGQtNGI1My05MmE0LTY4ZjllMDEwOGZhMw==","keyName":"app.demo.delay","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTliNmU4NzJkLTFiNjYtNDVlNS04ZmY0LTA3ZDcyMDEyOThjNw==","keyName":"app.demo.height","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWUyMzFkZmUyLWRmYTUtNDY5NS05NDc0LWFlOWI5MGEyZWYzYg==","keyName":"app.demo.label0","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTk1OGJjMmM4LTgwZjEtNDU2OC1hODY3LWYzMjEzOGFhODJmYg==","keyName":"app.demo.label1","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWVlM2JhY2E0LWEyNzQtNDMzOC05NGQyLWUyNzdjMGJhYTJhMQ==","keyName":"app.demo.label2","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTdjNjcwOTJhLTkzNTgtNGFkYy04NDI5LTExOWUxNGI1NmExMw==","keyName":"app.demo.max_instances","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTM4NjJhNzIxLTNkNGUtNDY2NC1iMTQ2LTBjOWUxMDM5ZjIyMw==","keyName":"app.demo.num_frames","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTRjZjJjOGViLTE4NzUtNDU0YS05MjZiLWY3Mzc0NWUxZWQ4Mw==","keyName":"app.demo.num_retries","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWM1ZmQzYWVmLWFkODUtNDRhMi1hYjFlLTVkODM3ZGQ1YjE3Yg==","keyName":"app.demo.series0","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTFmMWI1NWUzLWExNDMtNDg4NC1iYTk5LTA5YTc1NmQ4ZTRiNQ==","keyName":"app.demo.series1","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWMwNWFlYzgyLTJjNjYtNGViNS1hNjc5LWIwNTkzZjZkYjRmYw==","keyName":"app.demo.series2","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWNiMzU2YmE2LTkzZmEtNDk3NC1hMDQ3LTU3NWU3OTEzMzExZA==","keyName":"app.demo.timeout","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWVmMWE0OTI5LTJlMzgtNDliZi1iYzlmLWI3OWMyOTIyZjJiOA==","keyName":"app.demo.width","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWE5ZThjMTViLTk4ZTgtNGI5Mi1hNDFkLWNkMmNmOTk4MTUwOQ==","keyName":"aws_account_id","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY1YmMzMWY2LTdlNzgtNGQ2OC1iMzU5LWE5ZDcyNzlmMzA3Zg==","keyName":"aws_region","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWE1ODZlY2I3LWMxMzQtNDA5Yi05ZTBiLTU1Yzc1MGIyZDc0MA==","keyName":"deploy.services.kubecfg","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTRhODkzMzgxLTE0NGUtNDZhNC04YTdmLWRmYjEzYWFkNDZiZQ==","keyName":"deployer_aws_access_key","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWIxMjNjZDJjLWEyYmUtNDdmOC05MzEwLWIwOTAwMDNlM2M1Yg==","keyName":"deployer_aws_access_secret","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLThlYjQ5NGFlLTc3NTUtNGNjNy04ODUzLTZmYTc5OTEyMDc1Mw==","keyName":"domain","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTFkMDNkMzU3LWJjODEtNGZkNy05YWIwLWFmZGU1OGViODIyYw==","keyName":"environment","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWEzYzhiYzkxLWE1ODUtNDFmNi1hMTE3LTMyYzU5NzcxOGMwMQ==","keyName":"myvalue","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTcyMGRkNDNjLTkwZGQtNDNjMi04MjJlLWU0YmQ3OGY2ZDkwMA==","keyName":"ops.az_count","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTI0NDBjYWUyLTAwOGYtNDVmYS05YmE2LTBjMmVmOGM0NGRlYg==","keyName":"ops.db_sizing.some-rds.count","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTA3YjY4ZGM3LTVlZmQtNGFmNS04NzhiLTNmODkzYjU5MzA1Ng==","keyName":"ops.db_sizing.some-rds.type","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTZiZjBhM2E5LTQzNmUtNDA1OS1iNjMzLWQzMDc2Nzk1NGNhZg==","keyName":"ops.force_destroy_buckets","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTE0YjkxNzRlLTRhNDgtNGQ1OS05ZTIwLTU1MGRiOWEyZGIxYg==","keyName":"ops.force_destroy_zones","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWEzNjkwYmJlLTM2YTktNGFjYy1iZTliLTdlM2M3ZDc2Yzg5Yw==","keyName":"ops.global_name_prefix","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTQyZjRmZWQ3LWQ4MzAtNDczZC1iYTAzLTYxOTViMThkNWIyZA==","keyName":"ops.is_dev","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTgzOTkzZDFkLTE5ZjgtNDBiMC1iM2E5LTA4ZmUxNDFmMThmYg==","keyName":"ops.local_name_prefix","isSecret":false,"environmentValue":{"parameterValue":null}},{"id":"UGFyYW1ldGVyLWQzMmNhOGU2LWRmNDYtNGU2YS04ZjExLTU5YjUwYTJlM2QwMg==","keyName":"ops.logs_bucket","isSecret":false,"environmentValue":{"parameterValue":null}},{"id":"UGFyYW1ldGVyLWU4MDgwYjFjLWNhYjAtNDk0My1hZDIzLWYwZjRjYmFlNjBkMg==","keyName":"ops.ops_email","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTYzY2YxNDY0LWIxMTgtNDc5NS1hNDRmLWY4OWVmMzkxMzczMQ==","keyName":"ops.org","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTU3M2QzYzRhLTcwYTItNDA1Ni04YWY5LTJhYjEyNTZjMGQzNQ==","keyName":"ops.org_prefix","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTIxZjFjODkzLTg0NzEtNDA1Yy04YWJmLTQxOTNhM2E2ZTBlZg==","keyName":"ops.service_sizing.bigboy.cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTllMjIzNjc5LWRhZjAtNDliNy1hMzk1LTVjYTEzZDYzN2I5OQ==","keyName":"ops.service_sizing.bigboy.max_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTM0MDY4ZDEwLTQyYTEtNDBlZS1hNmVhLTAwNGM2ZjQxMjJjYg==","keyName":"ops.service_sizing.bigboy.memory","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWQ0NWQzZjY0LTJkNGEtNDU4ZC05MTM5LTg1ZmFjYTBlMTNkMg==","keyName":"ops.service_sizing.bigboy.min_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTUzYzRjZTAwLWE1MGMtNDQyNS1iMjUzLTJiNmM1MmNiN2Q5Mg==","keyName":"ops.service_sizing_default.cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTNiMGFjMGNjLWZlMGUtNDM3Mi1iZDQ0LTI1NGVlNmM0NjA5ZQ==","keyName":"ops.service_sizing_default.max_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTRlMTY4MzRmLWEyZGMtNDNlZS04ZmQ1LTNlZTZlMmM3MzQ5OA==","keyName":"ops.service_sizing_default.memory","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTNkODI1NjM1LWM4MDAtNDVlYS1hYjEwLWRhZTU3MTc5ZGIzMQ==","keyName":"ops.service_sizing_default.min_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTA5NTRjZDYzLTM0N2MtNGRlOC1iOTE4LTdlNDVmYjA2ZTIxMw==","keyName":"ops.skip_final_snapshot","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWYyN2VhNjc5LTg4YjEtNGNiMi05M2QwLTc3Y2ZiYjkyNDYzNQ==","keyName":"ops.vpc_cidr","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWYzYTc1ZjUwLWRlYmItNDc2NC1hMzE4LTBiYmM5NTJjMmMzMg==","keyName":"ops.vpc_enable_nat","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWJlZDllMjg1LTM5Y2EtNDM0Yy04ODVjLWQ0NmFkODAxMjkxYw==","keyName":"ops.vpc_enable_redundant_nat","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTdlZDJhNjUzLTI3YjgtNGU1ZS1hZWEyLWZlY2FlMjYzNzE5Nw==","keyName":"ops.website_bucket","isSecret":false,"environmentValue":{"parameterValue":null}},{"id":"UGFyYW1ldGVyLTNhODAxNDNjLTQ2YTUtNDgyNi05ZmM0LWQzZTg3ZjE0MDhmNA==","keyName":"service.demo1.live_config_tid","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWFhN2VmZWQyLTQyM2EtNGRlMy05MjAxLTU5NTYxNTU1MjA3NQ==","keyName":"service.demo1.token","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWNmM2I4NjI2LWNlZWMtNDBiMS05YjkwLTYxMjEyYjQ4YjRjNQ==","keyName":"service.demo2.limit","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWQ0Mzg5YzdkLTI3ZDUtNGFkNC1hMjQwLWRhYTM5OTBlNzM4Yw==","keyName":"service.demo2.min","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWYwMzkzYmIzLWZhY2QtNDY0MS04MmUwLWNiMTJhYzNiN2VlYg==","keyName":"service.demo2.mykey","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLThkYWQ5NDZlLTdjMDQtNDI1OS05YTJmLTRhYmZkOGFiMmM3NQ==","keyName":"service.demo2.other","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTdhZjEwMzg1LTYyNDktNDFhMy05MTQ1LTM0ZjFjMzhiZmM2OQ==","keyName":"service.demo3.foo","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTc3NGMyZDY1LTVjYTMtNGYxMi04ZDAyLTc5YTcwMTc0MmQxMA==","keyName":"service.demo3.othersecret","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTI1ZmVmNDRiLWI2ZTMtNDg1Zi05MjQ0LWFjMzg0YjBjMzAwZQ==","keyName":"some_config","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTgxMWNmOTJjLTk4Y2MtNGZlYi04M2I1LTc3MmMzMTEzNjZiMg==","keyName":"svc.demo.active","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWU4YWNmMDIwLWEyNWUtNDgyOS04ZTdhLTU4ZGU1YWE4Zjg2Yg==","keyName":"svc.demo.enable_logging","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWFjZGVkMTQyLWIyZGYtNDkxMy1hZjU3LTY0ODJjNjhjYjVjOA==","keyName":"svc.demo.max_cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWJiZTZmNTcyLTVkM2UtNDZkYS1iMmQ1LTJkODlkODVhNGU0MQ==","keyName":"svc.demo.max_retries","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWUxNmJhYjM3LWFjYjItNGJiOS1iODc0LWMxYWFiNjA2OTFjNA==","keyName":"svc.demo.min_cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWJhYmFhZTM3LTMyNTMtNDE5NC05N2E1LWIyNDYyZjNiNTAyYw==","keyName":"svc.demo.region","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTI0ZGI2MGY2LWU2ODMtNDIzNi1iYmRmLTQ1ZWUzMGU3MDFjZA==","keyName":"svc.demo.timeout","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTUwODMzMWI3LThjNDAtNDkyYi05NjUyLWI4ZTc2MDM0YzIxMQ==","keyName":"web.app.background_color","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWQ4OWQ3NmMwLTFlODYtNDVhZi1hZWRjLTdkY2UyNjkxOTU1NQ==","keyName":"web.app.live_config_tid","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTJhNzI2MDUxLTRkNTEtNDBiZi05ZmJiLTQ4Mjg3NTBmMjAwMQ==","keyName":"web.app.polling_interval","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY4MjNlYWFkLWE4ZTEtNGRhYy05YTJlLTBjZWFkMDYzZjliZg==","keyName":"web_bucket","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTBjZWFjZjZiLTg4MzItNGZkZi1hNDk1LTQzNWJlNGRkNWFkOQ==","keyName":"web_distribution_id","isSecret":false,"environmentValue":{"parameterValue":""}}]}}}}}' - recorded_at: Wed, 17 Feb 2021 15:58:17 GMT + string: '{"data":{"viewer":{"organization":{"project":{"parameters":{"nodes":[{"id":"UGFyYW1ldGVyLTFlZGRhNTRiLTYzOTItNDFhMS1iOTU0LWRhMjUyNjE2MzZhZQ==","keyName":"app.demo.color0","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWUxN2M2ZGIwLWU4NjYtNGM5Yi1iNmRjLTE2MjE2ZTJlM2MxZQ==","keyName":"app.demo.color1","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTQ0MTZhYzIyLTIxOGEtNGQ0Ni1iNjhjLTY4MmFmYTJiNmJmMw==","keyName":"app.demo.color2","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTk4NGQ4MDc2LWIxNGQtNGI1My05MmE0LTY4ZjllMDEwOGZhMw==","keyName":"app.demo.delay","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTliNmU4NzJkLTFiNjYtNDVlNS04ZmY0LTA3ZDcyMDEyOThjNw==","keyName":"app.demo.height","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWUyMzFkZmUyLWRmYTUtNDY5NS05NDc0LWFlOWI5MGEyZWYzYg==","keyName":"app.demo.label0","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTk1OGJjMmM4LTgwZjEtNDU2OC1hODY3LWYzMjEzOGFhODJmYg==","keyName":"app.demo.label1","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWVlM2JhY2E0LWEyNzQtNDMzOC05NGQyLWUyNzdjMGJhYTJhMQ==","keyName":"app.demo.label2","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTdjNjcwOTJhLTkzNTgtNGFkYy04NDI5LTExOWUxNGI1NmExMw==","keyName":"app.demo.max_instances","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTM4NjJhNzIxLTNkNGUtNDY2NC1iMTQ2LTBjOWUxMDM5ZjIyMw==","keyName":"app.demo.num_frames","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTRjZjJjOGViLTE4NzUtNDU0YS05MjZiLWY3Mzc0NWUxZWQ4Mw==","keyName":"app.demo.num_retries","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWM1ZmQzYWVmLWFkODUtNDRhMi1hYjFlLTVkODM3ZGQ1YjE3Yg==","keyName":"app.demo.series0","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTFmMWI1NWUzLWExNDMtNDg4NC1iYTk5LTA5YTc1NmQ4ZTRiNQ==","keyName":"app.demo.series1","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWMwNWFlYzgyLTJjNjYtNGViNS1hNjc5LWIwNTkzZjZkYjRmYw==","keyName":"app.demo.series2","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWNiMzU2YmE2LTkzZmEtNDk3NC1hMDQ3LTU3NWU3OTEzMzExZA==","keyName":"app.demo.timeout","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWVmMWE0OTI5LTJlMzgtNDliZi1iYzlmLWI3OWMyOTIyZjJiOA==","keyName":"app.demo.width","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWE5ZThjMTViLTk4ZTgtNGI5Mi1hNDFkLWNkMmNmOTk4MTUwOQ==","keyName":"aws_account_id","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY1YmMzMWY2LTdlNzgtNGQ2OC1iMzU5LWE5ZDcyNzlmMzA3Zg==","keyName":"aws_region","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWFlOTgzZjhiLTk3NTQtNGM2YS1hOTgyLWE3ZTI4MTIwOGYxMQ==","keyName":"cfdemo.bucket","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTg4MWE4ZmQyLTRjY2UtNDM3Ni05MWZkLTU1MjU4YmUzOTg5OA==","keyName":"cfdemo.message","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWE1ODZlY2I3LWMxMzQtNDA5Yi05ZTBiLTU1Yzc1MGIyZDc0MA==","keyName":"deploy.services.kubecfg","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTRhODkzMzgxLTE0NGUtNDZhNC04YTdmLWRmYjEzYWFkNDZiZQ==","keyName":"deployer_aws_access_key","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWIxMjNjZDJjLWEyYmUtNDdmOC05MzEwLWIwOTAwMDNlM2M1Yg==","keyName":"deployer_aws_access_secret","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLThlYjQ5NGFlLTc3NTUtNGNjNy04ODUzLTZmYTc5OTEyMDc1Mw==","keyName":"domain","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTFkMDNkMzU3LWJjODEtNGZkNy05YWIwLWFmZGU1OGViODIyYw==","keyName":"environment","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY5M2FiZTY0LTIxMzItNDA5MS05MWQ5LWZlNTJhMzg4ODEwNg==","keyName":"foo","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWEzYzhiYzkxLWE1ODUtNDFmNi1hMTE3LTMyYzU5NzcxOGMwMQ==","keyName":"myvalue","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTcyMGRkNDNjLTkwZGQtNDNjMi04MjJlLWU0YmQ3OGY2ZDkwMA==","keyName":"ops.az_count","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTI0NDBjYWUyLTAwOGYtNDVmYS05YmE2LTBjMmVmOGM0NGRlYg==","keyName":"ops.db_sizing.some-rds.count","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTA3YjY4ZGM3LTVlZmQtNGFmNS04NzhiLTNmODkzYjU5MzA1Ng==","keyName":"ops.db_sizing.some-rds.type","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTZiZjBhM2E5LTQzNmUtNDA1OS1iNjMzLWQzMDc2Nzk1NGNhZg==","keyName":"ops.force_destroy_buckets","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTE0YjkxNzRlLTRhNDgtNGQ1OS05ZTIwLTU1MGRiOWEyZGIxYg==","keyName":"ops.force_destroy_zones","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWEzNjkwYmJlLTM2YTktNGFjYy1iZTliLTdlM2M3ZDc2Yzg5Yw==","keyName":"ops.global_name_prefix","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTQyZjRmZWQ3LWQ4MzAtNDczZC1iYTAzLTYxOTViMThkNWIyZA==","keyName":"ops.is_dev","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTgzOTkzZDFkLTE5ZjgtNDBiMC1iM2E5LTA4ZmUxNDFmMThmYg==","keyName":"ops.local_name_prefix","isSecret":false,"environmentValue":{"parameterValue":null}},{"id":"UGFyYW1ldGVyLWQzMmNhOGU2LWRmNDYtNGU2YS04ZjExLTU5YjUwYTJlM2QwMg==","keyName":"ops.logs_bucket","isSecret":false,"environmentValue":{"parameterValue":null}},{"id":"UGFyYW1ldGVyLWU4MDgwYjFjLWNhYjAtNDk0My1hZDIzLWYwZjRjYmFlNjBkMg==","keyName":"ops.ops_email","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTYzY2YxNDY0LWIxMTgtNDc5NS1hNDRmLWY4OWVmMzkxMzczMQ==","keyName":"ops.org","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTU3M2QzYzRhLTcwYTItNDA1Ni04YWY5LTJhYjEyNTZjMGQzNQ==","keyName":"ops.org_prefix","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTIxZjFjODkzLTg0NzEtNDA1Yy04YWJmLTQxOTNhM2E2ZTBlZg==","keyName":"ops.service_sizing.bigboy.cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTllMjIzNjc5LWRhZjAtNDliNy1hMzk1LTVjYTEzZDYzN2I5OQ==","keyName":"ops.service_sizing.bigboy.max_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTM0MDY4ZDEwLTQyYTEtNDBlZS1hNmVhLTAwNGM2ZjQxMjJjYg==","keyName":"ops.service_sizing.bigboy.memory","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWQ0NWQzZjY0LTJkNGEtNDU4ZC05MTM5LTg1ZmFjYTBlMTNkMg==","keyName":"ops.service_sizing.bigboy.min_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTUzYzRjZTAwLWE1MGMtNDQyNS1iMjUzLTJiNmM1MmNiN2Q5Mg==","keyName":"ops.service_sizing_default.cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTNiMGFjMGNjLWZlMGUtNDM3Mi1iZDQ0LTI1NGVlNmM0NjA5ZQ==","keyName":"ops.service_sizing_default.max_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTRlMTY4MzRmLWEyZGMtNDNlZS04ZmQ1LTNlZTZlMmM3MzQ5OA==","keyName":"ops.service_sizing_default.memory","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTNkODI1NjM1LWM4MDAtNDVlYS1hYjEwLWRhZTU3MTc5ZGIzMQ==","keyName":"ops.service_sizing_default.min_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTA5NTRjZDYzLTM0N2MtNGRlOC1iOTE4LTdlNDVmYjA2ZTIxMw==","keyName":"ops.skip_final_snapshot","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWYyN2VhNjc5LTg4YjEtNGNiMi05M2QwLTc3Y2ZiYjkyNDYzNQ==","keyName":"ops.vpc_cidr","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWYzYTc1ZjUwLWRlYmItNDc2NC1hMzE4LTBiYmM5NTJjMmMzMg==","keyName":"ops.vpc_enable_nat","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWJlZDllMjg1LTM5Y2EtNDM0Yy04ODVjLWQ0NmFkODAxMjkxYw==","keyName":"ops.vpc_enable_redundant_nat","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTdlZDJhNjUzLTI3YjgtNGU1ZS1hZWEyLWZlY2FlMjYzNzE5Nw==","keyName":"ops.website_bucket","isSecret":false,"environmentValue":{"parameterValue":null}},{"id":"UGFyYW1ldGVyLWFhN2VmZWQyLTQyM2EtNGRlMy05MjAxLTU5NTYxNTU1MjA3NQ==","keyName":"service.demo1.token","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWNmM2I4NjI2LWNlZWMtNDBiMS05YjkwLTYxMjEyYjQ4YjRjNQ==","keyName":"service.demo2.limit","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWQ0Mzg5YzdkLTI3ZDUtNGFkNC1hMjQwLWRhYTM5OTBlNzM4Yw==","keyName":"service.demo2.min","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWYwMzkzYmIzLWZhY2QtNDY0MS04MmUwLWNiMTJhYzNiN2VlYg==","keyName":"service.demo2.mykey","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLThkYWQ5NDZlLTdjMDQtNDI1OS05YTJmLTRhYmZkOGFiMmM3NQ==","keyName":"service.demo2.other","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWNlNTViNDY0LWExZTMtNGJmYi05MjRhLWRlOTYzNDQ3ZGRlZQ==","keyName":"service.demo3.foo","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY3YzYzMjc5LWY1M2ItNDUzYi1hNmI2LTc5NGJmNjE1ZTI5Nw==","keyName":"service.demo4.bar","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTI1ZmVmNDRiLWI2ZTMtNDg1Zi05MjQ0LWFjMzg0YjBjMzAwZQ==","keyName":"some_config","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTgxMWNmOTJjLTk4Y2MtNGZlYi04M2I1LTc3MmMzMTEzNjZiMg==","keyName":"svc.demo.active","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWU4YWNmMDIwLWEyNWUtNDgyOS04ZTdhLTU4ZGU1YWE4Zjg2Yg==","keyName":"svc.demo.enable_logging","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWFjZGVkMTQyLWIyZGYtNDkxMy1hZjU3LTY0ODJjNjhjYjVjOA==","keyName":"svc.demo.max_cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWJiZTZmNTcyLTVkM2UtNDZkYS1iMmQ1LTJkODlkODVhNGU0MQ==","keyName":"svc.demo.max_retries","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWUxNmJhYjM3LWFjYjItNGJiOS1iODc0LWMxYWFiNjA2OTFjNA==","keyName":"svc.demo.min_cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWJhYmFhZTM3LTMyNTMtNDE5NC05N2E1LWIyNDYyZjNiNTAyYw==","keyName":"svc.demo.region","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTI0ZGI2MGY2LWU2ODMtNDIzNi1iYmRmLTQ1ZWUzMGU3MDFjZA==","keyName":"svc.demo.timeout","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTUwODMzMWI3LThjNDAtNDkyYi05NjUyLWI4ZTc2MDM0YzIxMQ==","keyName":"web.app.background_color","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTJhNzI2MDUxLTRkNTEtNDBiZi05ZmJiLTQ4Mjg3NTBmMjAwMQ==","keyName":"web.app.polling_interval","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY4MjNlYWFkLWE4ZTEtNGRhYy05YTJlLTBjZWFkMDYzZjliZg==","keyName":"web_bucket","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTBjZWFjZjZiLTg4MzItNGZkZi1hNDk1LTQzNWJlNGRkNWFkOQ==","keyName":"web_distribution_id","isSecret":false,"environmentValue":{"parameterValue":""}}]}}}}}}' + recorded_at: Tue, 27 Apr 2021 14:10:57 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/CtApi/_parameters/uses_project_to_get_values.yml b/spec/fixtures/vcr/CtApi/_parameters/uses_project_to_get_values.yml new file mode 100644 index 0000000..efb21ea --- /dev/null +++ b/spec/fixtures/vcr/CtApi/_parameters/uses_project_to_get_values.yml @@ -0,0 +1,654 @@ +--- +http_interactions: +- request: + method: post + uri: https://api.cloudtruth.com/graphql + body: + encoding: UTF-8 + string: '{"query":"query IntrospectionQuery {\n __schema {\n queryType {\n name\n }\n mutationType + {\n name\n }\n subscriptionType {\n name\n }\n types + {\n ...FullType\n }\n directives {\n name\n description\n locations\n args + {\n ...InputValue\n }\n }\n }\n}\n\nfragment FullType on __Type + {\n kind\n name\n description\n fields(includeDeprecated: true) {\n name\n description\n args + {\n ...InputValue\n }\n type {\n ...TypeRef\n }\n isDeprecated\n deprecationReason\n }\n inputFields + {\n ...InputValue\n }\n interfaces {\n ...TypeRef\n }\n enumValues(includeDeprecated: + true) {\n name\n description\n isDeprecated\n deprecationReason\n }\n possibleTypes + {\n ...TypeRef\n }\n}\n\nfragment InputValue on __InputValue {\n name\n description\n type + {\n ...TypeRef\n }\n defaultValue\n}\n\nfragment TypeRef on __Type {\n kind\n name\n ofType + {\n kind\n name\n ofType {\n kind\n name\n ofType + {\n kind\n name\n ofType {\n kind\n name\n ofType + {\n kind\n name\n ofType {\n kind\n name\n ofType + {\n kind\n name\n }\n }\n }\n }\n }\n }\n }\n}","operationName":"IntrospectionQuery"}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - application/json + User-Agent: + - kubetruth/0.3.0 + Content-Type: + - application/json + Authorization: + - Bearer + response: + status: + code: 200 + message: OK + headers: + Date: + - Tue, 27 Apr 2021 14:11:04 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Connection: + - keep-alive + X-Frame-Options: + - SAMEORIGIN + X-Xss-Protection: + - 1; mode=block + X-Content-Type-Options: + - nosniff + X-Download-Options: + - noopen + X-Permitted-Cross-Domain-Policies: + - none + Referrer-Policy: + - strict-origin-when-cross-origin + Vary: + - Accept, Origin + Etag: + - W/"75ec2b3ba6f57bc364b5a38b5e8f606b" + Cache-Control: + - max-age=0, private, must-revalidate + X-Request-Id: + - '0966706b-c21f-451c-a593-685d9881c4f4' + X-Runtime: + - '1.381979' + body: + encoding: UTF-8 + string: '{"data":{"__schema":{"queryType":{"name":"Query"},"mutationType":{"name":"Mutation"},"subscriptionType":null,"types":[{"kind":"OBJECT","name":"AuditLogSnapshot","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fileUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SnapshotStatusEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditLogSnapshotConnection","description":"The + connection type for AuditLogSnapshot.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AuditLogSnapshotEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditLogSnapshotEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegration","description":null,"fields":[{"name":"accountId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"enabledServices","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsIntegrationEnum","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"externalId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"roleName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegrationConnection","description":"The + connection type for AwsIntegration.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegrationEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegration","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegrationEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AwsIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AwsIntegrationEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"S3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SSM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SECRETS_MANAGER","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INTERFACE","name":"BasePolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"InvitationPolicy","ofType":null},{"kind":"OBJECT","name":"NodePolicy","ofType":null},{"kind":"OBJECT","name":"OrganizationPolicy","ofType":null}]},{"kind":"SCALAR","name":"Boolean","description":"Represents + `true` or `false` values.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateAuditLogSnapshotInput","description":"Autogenerated + input type of CreateAuditLogSnapshot","fields":null,"inputFields":[{"name":"organizationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateAuditLogSnapshotPayload","description":"Autogenerated + return type of CreateAuditLogSnapshot","fields":[{"name":"auditLogSnapshot","description":null,"args":[],"type":{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateAwsIntegrationInput","description":"Autogenerated + input type of CreateAwsIntegration","fields":null,"inputFields":[{"name":"accountId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"accountName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"roleName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"enabledServices","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsIntegrationEnum","ofType":null}}},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateAwsIntegrationPayload","description":"Autogenerated + return type of CreateAwsIntegration","fields":[{"name":"awsIntegration","description":null,"args":[],"type":{"kind":"OBJECT","name":"AwsIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateEnvironmentInput","description":"Autogenerated + input type of CreateEnvironment","fields":null,"inputFields":[{"name":"parentId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateEnvironmentPayload","description":"Autogenerated + return type of CreateEnvironment","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environment","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateGithubSetupTokenInput","description":"Autogenerated + input type of CreateGithubSetupToken","fields":null,"inputFields":[{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateGithubSetupTokenPayload","description":"Autogenerated + return type of CreateGithubSetupToken","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"installationUrl","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"token","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateInvitationInput","description":"Autogenerated + input type of CreateInvitation","fields":null,"inputFields":[{"name":"memberEmail","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"memberRole","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateInvitationPayload","description":"Autogenerated + return type of CreateInvitation","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"invitation","description":null,"args":[],"type":{"kind":"OBJECT","name":"Invitation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateOrganizationInput","description":"Autogenerated + input type of CreateOrganization","fields":null,"inputFields":[{"name":"eaorgid","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateOrganizationPayload","description":"Autogenerated + return type of CreateOrganization","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateParameterInput","description":"Autogenerated + input type of CreateParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateParameterPayload","description":"Autogenerated + return type of CreateParameter","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreatePersonalAccessTokenInput","description":"Autogenerated + input type of CreatePersonalAccessToken","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"writeAccess","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreatePersonalAccessTokenPayload","description":"Autogenerated + return type of CreatePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateProjectInput","description":"Autogenerated + input type of CreateProject","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateProjectPayload","description":"Autogenerated + return type of CreateProject","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateServiceAccountInput","description":"Autogenerated + input type of CreateServiceAccount","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateServiceAccountPayload","description":"Autogenerated + return type of CreateServiceAccount","fields":[{"name":"apiToken","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"serviceAccount","description":null,"args":[],"type":{"kind":"OBJECT","name":"ServiceAccount","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","description":"Autogenerated + input type of CreateTemplate","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateTemplatePayload","description":"Autogenerated + return type of CreateTemplate","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteAllPersonalAccessTokensInput","description":"Autogenerated + input type of DeleteAllPersonalAccessTokens","fields":null,"inputFields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteAllPersonalAccessTokensPayload","description":"Autogenerated + return type of DeleteAllPersonalAccessTokens","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteAwsIntegrationInput","description":"Autogenerated + input type of DeleteAwsIntegration","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteAwsIntegrationPayload","description":"Autogenerated + return type of DeleteAwsIntegration","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedAwsIntegrationId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteEnvironmentInput","description":"Autogenerated + input type of DeleteEnvironment","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteEnvironmentPayload","description":"Autogenerated + return type of DeleteEnvironment","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedEnvironmentId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteGithubIntegrationInput","description":"Autogenerated + input type of DeleteGithubIntegration","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteGithubIntegrationPayload","description":"Autogenerated + return type of DeleteGithubIntegration","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedGithubIntegrationId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteInvitationInput","description":"Autogenerated + input type of DeleteInvitation","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteInvitationPayload","description":"Autogenerated + return type of DeleteInvitation","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedInvitationId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteMembershipInput","description":"Autogenerated + input type of DeleteMembership","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteMembershipPayload","description":"Autogenerated + return type of DeleteMembership","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedMembershipId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","description":"Autogenerated + input type of DeleteParameter","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteParameterPayload","description":"Autogenerated + return type of DeleteParameter","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedParameterId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeletePersonalAccessTokenInput","description":"Autogenerated + input type of DeletePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeletePersonalAccessTokenPayload","description":"Autogenerated + return type of DeletePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedPersonalAccessTokenId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteProjectInput","description":"Autogenerated + input type of DeleteProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteProjectPayload","description":"Autogenerated + return type of DeleteProject","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteServiceAccountInput","description":"Autogenerated + input type of DeleteServiceAccount","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteServiceAccountPayload","description":"Autogenerated + return type of DeleteServiceAccount","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedServiceAccountId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","description":"Autogenerated + input type of DeleteTemplate","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteTemplatePayload","description":"Autogenerated + return type of DeleteTemplate","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedTemplateId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Environment","description":null,"fields":[{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"children","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[{"name":"parameterId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterValue","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentConnection","description":"The + connection type for Environment.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentValue","description":null,"fields":[{"name":"environment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integrationFile","description":null,"args":[],"type":{"kind":"OBJECT","name":"IntegrationFile","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"jmesPath","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EnvironmentValueTypeEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"EnvironmentValueTypeEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"STATIC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DYNAMIC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ExportParameters","description":null,"fields":[{"name":"evaluated","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ExportParametersFormatEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"DOCKER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DOTENV","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SHELL","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ExportParametersOptions","description":null,"fields":null,"inputFields":[{"name":"secrets","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"export","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"startsWith","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"endsWith","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"contains","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","description":"Autogenerated + input type of FakeOrganizationData","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FakeOrganizationDataPayload","description":"Autogenerated + return type of FakeOrganizationData","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegration","description":null,"fields":[{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"availableRepositoryCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"installationUrl","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegrationConnection","description":"The + connection type for GithubIntegration.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"GithubIntegrationEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"GithubIntegration","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegrationEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"GithubIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"HasPolicy","description":null,"fields":[{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"BasePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"ServiceAccount","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null}]},{"kind":"SCALAR","name":"ID","description":"Represents + a unique identifier that is Base64 obfuscated. It is often used to refetch + an object or as key for a cache. The ID type appears in a JSON response as + a String; however, it is not intended to be human-readable. When expected + as an input type, any string (such as `\"VXNlci0xMA==\"`) or integer (such + as `4`) input value will be accepted as an ID.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"ISO8601DateTime","description":"An + ISO 8601-encoded datetime","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"IdComparisonExp","description":null,"fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"Int","description":"Represents + non-fractional signed whole numeric values. Int can represent values between + -(2^31) and 2^31 - 1.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"IntegrationFile","description":null,"fields":[{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"body","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"json","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"mimeType","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"IntegrationFileTree","description":null,"fields":[{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"IntegrationNode","description":"Service + base integration nodes (AWS, GitHub)","fields":[{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"ID + of the object.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"IntegrationFile","ofType":null},{"kind":"OBJECT","name":"IntegrationFileTree","ofType":null},{"kind":"OBJECT","name":"IntegrationServiceTree","ofType":null}]},{"kind":"OBJECT","name":"IntegrationServiceTree","description":null,"fields":[{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"IntegrationStateEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"CONNECTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ERRORED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PENDING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MISSING","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INTERFACE","name":"IntegrationTree","description":"Service + base integration nodes (AWS, GitHub)","fields":[{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"ID + of the object.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"IntegrationFileTree","ofType":null},{"kind":"OBJECT","name":"IntegrationServiceTree","ofType":null}]},{"kind":"OBJECT","name":"IntegrationTreeConnection","description":"The + connection type for IntegrationTree.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"IntegrationTreeEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"IntegrationTreeEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Invitation","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberEmail","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberRole","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationPolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InvitationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationConnection","description":"The + connection type for Invitation.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Invitation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Invitation","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationPolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resend","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"InvitationStateEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ACCEPTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DECLINED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PENDING","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Membership","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pictureUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MembershipConnection","description":"The + connection type for Membership.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Membership","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MembershipEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"MembershipRoleEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ADMIN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CONTRIBUTOR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VIEWER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"OWNER","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Mutation","description":null,"fields":[{"name":"createAuditLogSnapshot","description":null,"args":[{"name":"input","description":"Parameters + for CreateAuditLogSnapshot","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAuditLogSnapshotInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAuditLogSnapshotPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters + for CreateAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createEnvironment","description":null,"args":[{"name":"input","description":"Parameters + for CreateEnvironment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createGithubSetupToken","description":null,"args":[{"name":"input","description":"Parameters + for CreateGithubSetupToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateGithubSetupTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateGithubSetupTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createInvitation","description":null,"args":[{"name":"input","description":"Parameters + for CreateInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createOrganization","description":null,"args":[{"name":"input","description":"Parameters + for CreateOrganization","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrganizationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateOrganizationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createParameter","description":null,"args":[{"name":"input","description":"Parameters + for CreateParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createPersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for CreatePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createProject","description":null,"args":[{"name":"input","description":"Parameters + for CreateProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createServiceAccount","description":null,"args":[{"name":"input","description":"Parameters + for CreateServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateServiceAccountPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createTemplate","description":null,"args":[{"name":"input","description":"Parameters + for CreateTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAllPersonalAccessTokens","description":null,"args":[{"name":"input","description":"Parameters + for DeleteAllPersonalAccessTokens","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAllPersonalAccessTokensInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAllPersonalAccessTokensPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters + for DeleteAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteEnvironment","description":null,"args":[{"name":"input","description":"Parameters + for DeleteEnvironment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteGithubIntegration","description":null,"args":[{"name":"input","description":"Parameters + for DeleteGithubIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteGithubIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteGithubIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteInvitation","description":null,"args":[{"name":"input","description":"Parameters + for DeleteInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteMembership","description":null,"args":[{"name":"input","description":"Parameters + for DeleteMembership","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteMembershipInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteMembershipPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteParameter","description":null,"args":[{"name":"input","description":"Parameters + for DeleteParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deletePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for DeletePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeletePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeletePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteProject","description":null,"args":[{"name":"input","description":"Parameters + for DeleteProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteServiceAccount","description":null,"args":[{"name":"input","description":"Parameters + for DeleteServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteServiceAccountPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteTemplate","description":null,"args":[{"name":"input","description":"Parameters + for DeleteTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fakeOrganizationData","description":null,"args":[{"name":"input","description":"Parameters + for FakeOrganizationData","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"FakeOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refreshServiceAccountApiToken","description":null,"args":[{"name":"input","description":"Parameters + for RefreshServiceAccountApiToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RefreshServiceAccountApiTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RefreshServiceAccountApiTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"regeneratePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for RegeneratePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RegeneratePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resendInvitation","description":null,"args":[{"name":"input","description":"Parameters + for ResendInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResendInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResendInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resetOrganizationData","description":null,"args":[{"name":"input","description":"Parameters + for ResetOrganizationData","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResetOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters + for UpdateAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateEnvironment","description":null,"args":[{"name":"input","description":"Parameters + for UpdateEnvironment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateInvitation","description":null,"args":[{"name":"input","description":"Parameters + for UpdateInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateMembership","description":null,"args":[{"name":"input","description":"Parameters + for UpdateMembership","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateMembershipInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateMembershipPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateOrganization","description":null,"args":[{"name":"input","description":"Parameters + for UpdateOrganization","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateOrganizationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateOrganizationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateParameter","description":null,"args":[{"name":"input","description":"Parameters + for UpdateParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for UpdatePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateProject","description":null,"args":[{"name":"input","description":"Parameters + for UpdateProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateTemplate","description":null,"args":[{"name":"input","description":"Parameters + for UpdateTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"upsertParameter","description":null,"args":[{"name":"input","description":"Parameters + for UpsertParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpsertParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpsertParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"Node","description":"An + object with an ID.","fields":[{"name":"id","description":"ID of the object.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"IntegrationFile","ofType":null},{"kind":"OBJECT","name":"IntegrationFileTree","ofType":null},{"kind":"OBJECT","name":"IntegrationServiceTree","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"ServiceAccount","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null},{"kind":"OBJECT","name":"Viewer","ofType":null}]},{"kind":"OBJECT","name":"NodePolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"OrderByEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DESC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Organization","description":null,"fields":[{"name":"auditLogSnapshots","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AuditLogSnapshotConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"awsIntegrations","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegrationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"defaultProject","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"environment","description":null,"args":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environments","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"evaluateTemplate","description":null,"args":[{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TemplateEvaluation","ofType":null},"isDeprecated":true,"deprecationReason":"Use + project instead."},{"name":"githubIntegrations","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"GithubIntegrationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"integrations","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"IntegrationTreeConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"invitations","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"state","description":"Filter + invitation list by state.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InvitationStateEnum","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberships","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"userType","description":"Optionally + filter by user type.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"orderBy","description":"Sort + order for parameters.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","ofType":null}}},"defaultValue":null},{"name":"searchTerm","description":"Search + over parameter names.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"where","description":"Filter + parameter list.","type":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null},"defaultValue":null},{"name":"keyNames","description":"List + of key names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrganizationPolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projects","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ProjectConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionExpiresAt","description":null,"args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionId","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionPlanId","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionPlanName","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"names","description":"List + of template names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"vaultId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"OrganizationPolicy","description":null,"fields":[{"name":"createEnvironment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createIntegration","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createInvitation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createParameter","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Everything + will go through project in the near future."},{"name":"createProject","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createTemplate","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Everything + will go through the project in the near future."},{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursor","description":null,"fields":[{"name":"cursor","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isCurrent","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageNumber","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursors","description":null,"fields":[{"name":"around","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageCursor","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"first","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"last","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previous","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageInfo","description":"Information + about pagination in a connection.","fields":[{"name":"endCursor","description":"When + paginating forwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasNextPage","description":"When + paginating forwards, are there more items?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasPreviousPage","description":"When + paginating backwards, are there more items?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"startCursor","description":"When + paginating backwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Parameter","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValue","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValues","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"hasDynamicValue","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isSecret","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"keyName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","description":null,"fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"keyName","description":null,"type":{"kind":"INPUT_OBJECT","name":"StringComparisonExp","ofType":null},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"INPUT_OBJECT","name":"IdComparisonExp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterConnection","description":"The + connection type for Parameter.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Parameter","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","description":null,"fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null},{"name":"updatedAt","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterValue","description":null,"fields":[{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessToken","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastUsed","description":null,"args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"writeAccess","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessTokenConnection","description":"The + connection type for PersonalAccessToken.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PersonalAccessTokenEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessTokenEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Project","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"defaultForOrganization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"evaluateTemplate","description":null,"args":[{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TemplateEvaluation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"exportParameters","description":null,"args":[{"name":"format","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ExportParametersFormatEnum","ofType":null}},"defaultValue":null},{"name":"options","description":null,"type":{"kind":"INPUT_OBJECT","name":"ExportParametersOptions","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ExportParameters","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"orderBy","description":"Sort + order for parameters.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","ofType":null}}},"defaultValue":null},{"name":"searchTerm","description":"Search + over parameter names.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"where","description":"Filter + parameter list.","type":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null},"defaultValue":null},{"name":"keyNames","description":"List + of key names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"names","description":"List + of template names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectConnection","description":"The + connection type for Project.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ProjectEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Query","description":null,"fields":[{"name":"node","description":"Fetches + an object given its ID.","args":[{"name":"id","description":"ID of the object.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"INTERFACE","name":"Node","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"Fetches + a list of objects given a list of IDs.","args":[{"name":"ids","description":"IDs + of the objects.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INTERFACE","name":"Node","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RefreshServiceAccountApiTokenInput","description":"Autogenerated + input type of RefreshServiceAccountApiToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RefreshServiceAccountApiTokenPayload","description":"Autogenerated + return type of RefreshServiceAccountApiToken","fields":[{"name":"apiToken","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"serviceAccount","description":null,"args":[],"type":{"kind":"OBJECT","name":"ServiceAccount","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","description":"Autogenerated + input type of RegeneratePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RegeneratePersonalAccessTokenPayload","description":"Autogenerated + return type of RegeneratePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ResendInvitationInput","description":"Autogenerated + input type of ResendInvitation","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ResendInvitationPayload","description":"Autogenerated + return type of ResendInvitation","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"invitation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Invitation","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","description":"Autogenerated + input type of ResetOrganizationData","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ResetOrganizationDataPayload","description":"Autogenerated + return type of ResetOrganizationData","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ServiceAccount","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SnapshotStatusEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"REQUESTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PROCESSING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AVAILABLE","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"String","description":"Represents + textual data as UTF-8 character sequences. This type is most often used by + GraphQL to represent free-form human-readable text.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"StringComparisonExp","description":null,"fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Template","description":null,"fields":[{"name":"body","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"evaluated","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":true,"deprecationReason":"Use + project instead."},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TemplateConnection","description":"The + connection type for Template.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Template","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TemplateEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TemplateEvaluation","description":null,"fields":[{"name":"body","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"evaluated","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateAwsIntegrationInput","description":"Autogenerated + input type of UpdateAwsIntegration","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"accountId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"roleName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"enabledServices","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsIntegrationEnum","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateAwsIntegrationPayload","description":"Autogenerated + return type of UpdateAwsIntegration","fields":[{"name":"awsIntegration","description":null,"args":[],"type":{"kind":"OBJECT","name":"AwsIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateEnvironmentInput","description":"Autogenerated + input type of UpdateEnvironment","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateEnvironmentPayload","description":"Autogenerated + return type of UpdateEnvironment","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environment","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateInvitationInput","description":"Autogenerated + input type of UpdateInvitation","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"state","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InvitationStateEnum","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateInvitationPayload","description":"Autogenerated + return type of UpdateInvitation","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"membership","description":null,"args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateMembershipInput","description":"Autogenerated + input type of UpdateMembership","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateMembershipPayload","description":"Autogenerated + return type of UpdateMembership","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"membership","description":null,"args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateOrganizationInput","description":"Autogenerated + input type of UpdateOrganization","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateOrganizationPayload","description":"Autogenerated + return type of UpdateOrganization","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","description":"Autogenerated + input type of UpdateParameter","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"integrationFileId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"integrationFileFqn","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"jmesPath","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateParameterPayload","description":"Autogenerated + return type of UpdateParameter","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdatePersonalAccessTokenInput","description":"Autogenerated + input type of UpdatePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"writeAccess","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdatePersonalAccessTokenPayload","description":"Autogenerated + return type of UpdatePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateProjectInput","description":"Autogenerated + input type of UpdateProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateProjectPayload","description":"Autogenerated + return type of UpdateProject","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","description":"Autogenerated + input type of UpdateTemplate","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"body","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateTemplatePayload","description":"Autogenerated + return type of UpdateTemplate","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpsertParameterInput","description":"Autogenerated + input type of UpsertParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpsertParameterPayload","description":"Autogenerated + return type of UpsertParameter","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserError","description":"A + user-readable error","fields":[{"name":"message","description":"A description + of the error","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"path","description":"Which + input value this error came from","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Viewer","description":null,"fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberships","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[{"name":"id","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessTokens","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PersonalAccessTokenConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Directive","description":"A + Directive provides a way to describe alternate runtime execution and type + validation behavior in a GraphQL document.\n\nIn some cases, you need to provide + options to alter GraphQL''s execution behavior in ways field arguments will + not suffice, such as conditionally including or skipping a field. Directives + provide this by describing additional information to the executor.","fields":[{"name":"args","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locations","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__DirectiveLocation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"onField","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use + `locations`."},{"name":"onFragment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use + `locations`."},{"name":"onOperation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use + `locations`."}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__DirectiveLocation","description":"A + Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation + describes one such possible adjacencies.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"QUERY","description":"Location + adjacent to a query operation.","isDeprecated":false,"deprecationReason":null},{"name":"MUTATION","description":"Location + adjacent to a mutation operation.","isDeprecated":false,"deprecationReason":null},{"name":"SUBSCRIPTION","description":"Location + adjacent to a subscription operation.","isDeprecated":false,"deprecationReason":null},{"name":"FIELD","description":"Location + adjacent to a field.","isDeprecated":false,"deprecationReason":null},{"name":"FRAGMENT_DEFINITION","description":"Location + adjacent to a fragment definition.","isDeprecated":false,"deprecationReason":null},{"name":"FRAGMENT_SPREAD","description":"Location + adjacent to a fragment spread.","isDeprecated":false,"deprecationReason":null},{"name":"INLINE_FRAGMENT","description":"Location + adjacent to an inline fragment.","isDeprecated":false,"deprecationReason":null},{"name":"SCHEMA","description":"Location + adjacent to a schema definition.","isDeprecated":false,"deprecationReason":null},{"name":"SCALAR","description":"Location + adjacent to a scalar definition.","isDeprecated":false,"deprecationReason":null},{"name":"OBJECT","description":"Location + adjacent to an object type definition.","isDeprecated":false,"deprecationReason":null},{"name":"FIELD_DEFINITION","description":"Location + adjacent to a field definition.","isDeprecated":false,"deprecationReason":null},{"name":"ARGUMENT_DEFINITION","description":"Location + adjacent to an argument definition.","isDeprecated":false,"deprecationReason":null},{"name":"INTERFACE","description":"Location + adjacent to an interface definition.","isDeprecated":false,"deprecationReason":null},{"name":"UNION","description":"Location + adjacent to a union definition.","isDeprecated":false,"deprecationReason":null},{"name":"ENUM","description":"Location + adjacent to an enum definition.","isDeprecated":false,"deprecationReason":null},{"name":"ENUM_VALUE","description":"Location + adjacent to an enum value definition.","isDeprecated":false,"deprecationReason":null},{"name":"INPUT_OBJECT","description":"Location + adjacent to an input object type definition.","isDeprecated":false,"deprecationReason":null},{"name":"INPUT_FIELD_DEFINITION","description":"Location + adjacent to an input object field definition.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"__EnumValue","description":"One + possible value for a given Enum. Enum values are unique values, not a placeholder + for a string or numeric value. However an Enum value is returned in a JSON + response as a string.","fields":[{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Field","description":"Object + and Interface types are described by a list of Fields, each of which has a + name, potentially a list of arguments, and a return type.","fields":[{"name":"args","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__InputValue","description":"Arguments + provided to Fields or Directives and the input fields of an InputObject are + represented as Input Values which describe their type and optionally a default + value.","fields":[{"name":"defaultValue","description":"A GraphQL-formatted + string representing the default value for this input value.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Schema","description":"A + GraphQL Schema defines the capabilities of a GraphQL server. It exposes all + available types and directives on the server, as well as the entry points + for query, mutation, and subscription operations.","fields":[{"name":"directives","description":"A + list of all directives supported by this server.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Directive","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"mutationType","description":"If + this server supports mutation, the type that mutation operations will be rooted + at.","args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"queryType","description":"The + type that query operations will be rooted at.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionType","description":"If + this server support subscription, the type that subscription operations will + be rooted at.","args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"types","description":"A + list of all types supported by this server.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Type","description":"The + fundamental unit of any GraphQL Schema is the type. There are many kinds of + types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on + the kind of a type, certain fields describe information about that type. Scalar + types provide no information beyond a name and description, while Enum types + provide their values. Object and Interface types provide the fields they describe. + Abstract types, Union and Interface, provide the Object types possible at + runtime. List and NonNull types compose other types.","fields":[{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"enumValues","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__EnumValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"fields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Field","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"inputFields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"interfaces","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__TypeKind","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"ofType","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"possibleTypes","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__TypeKind","description":"An + enum describing what kind of type a given `__Type` is.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"SCALAR","description":"Indicates + this type is a scalar.","isDeprecated":false,"deprecationReason":null},{"name":"OBJECT","description":"Indicates + this type is an object. `fields` and `interfaces` are valid fields.","isDeprecated":false,"deprecationReason":null},{"name":"INTERFACE","description":"Indicates + this type is an interface. `fields` and `possibleTypes` are valid fields.","isDeprecated":false,"deprecationReason":null},{"name":"UNION","description":"Indicates + this type is a union. `possibleTypes` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"ENUM","description":"Indicates + this type is an enum. `enumValues` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"INPUT_OBJECT","description":"Indicates + this type is an input object. `inputFields` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"LIST","description":"Indicates + this type is a list. `ofType` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"NON_NULL","description":"Indicates + this type is a non-null. `ofType` is a valid field.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null}],"directives":[{"name":"include","description":"Directs + the executor to include this field or fragment only when the `if` argument + is true.","locations":["FIELD","FRAGMENT_SPREAD","INLINE_FRAGMENT"],"args":[{"name":"if","description":"Included + when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"skip","description":"Directs + the executor to skip this field or fragment when the `if` argument is true.","locations":["FIELD","FRAGMENT_SPREAD","INLINE_FRAGMENT"],"args":[{"name":"if","description":"Skipped + when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"deprecated","description":"Marks + an element of a GraphQL schema as no longer supported.","locations":["FIELD_DEFINITION","ENUM_VALUE","ARGUMENT_DEFINITION","INPUT_FIELD_DEFINITION"],"args":[{"name":"reason","description":"Explains + why this element was deprecated, usually also including a suggestion for how + to access supported similar data. Formatted in [Markdown](https://daringfireball.net/projects/markdown/).","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"\"No + longer supported\""}]}]}}}' + recorded_at: Tue, 27 Apr 2021 14:10:58 GMT +- request: + method: post + uri: https://api.cloudtruth.com/graphql + body: + encoding: UTF-8 + string: '{"query":"query GraphQL__Client__OperationDefinition_196160($organizationId: + ID) {\n viewer {\n organization(id: $organizationId) {\n environments + {\n nodes {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_196160"}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - application/json + User-Agent: + - kubetruth/0.3.0 + Content-Type: + - application/json + Authorization: + - Bearer + response: + status: + code: 200 + message: OK + headers: + Date: + - Tue, 27 Apr 2021 14:11:05 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Connection: + - keep-alive + X-Frame-Options: + - SAMEORIGIN + X-Xss-Protection: + - 1; mode=block + X-Content-Type-Options: + - nosniff + X-Download-Options: + - noopen + X-Permitted-Cross-Domain-Policies: + - none + Referrer-Policy: + - strict-origin-when-cross-origin + Vary: + - Accept, Origin + Etag: + - W/"4216eb2052c7088952da5a9791e740cd" + Cache-Control: + - max-age=0, private, must-revalidate + X-Request-Id: + - 7d557591-98f1-44c4-a8c4-5ddf88b94223 + X-Runtime: + - '0.034166' + body: + encoding: UTF-8 + string: '{"data":{"viewer":{"organization":{"environments":{"nodes":[{"id":"RW52aXJvbm1lbnQtZjk3MDI1NGEtNGQ0NS00YTA1LWJiYjctOTRjZTdhOGRmODky","name":"default"},{"id":"RW52aXJvbm1lbnQtOGRmMTVjMjYtN2FhZi00ODE5LWJlNzYtMTVmMzU2YzQ5YTg1","name":"production"},{"id":"RW52aXJvbm1lbnQtNmI5M2NlMWEtMTVkMS00MzRiLTg1NTAtODhjZDZhY2ZjYzU4","name":"development"},{"id":"RW52aXJvbm1lbnQtY2EyMDA0YzctZjQ3Mi00MzFlLWIyODgtNzg0NmYzMTBmMGZj","name":"ops"},{"id":"RW52aXJvbm1lbnQtMzY4MWRkMjctZDY2YS00NjdlLWI1NzMtYmI2YzU0ZmFjZDM1","name":"staging"},{"id":"RW52aXJvbm1lbnQtZDE4NGQ1ODctYjA2Yi00OWU2LThhMGItNjU1YTM2NDQwYjRj","name":"dev-matt"}]}}}}}' + recorded_at: Tue, 27 Apr 2021 14:10:58 GMT +- request: + method: post + uri: https://api.cloudtruth.com/graphql + body: + encoding: UTF-8 + string: '{"query":"query GraphQL__Client__OperationDefinition_196200($organizationId: + ID, $environmentId: ID, $projectName: String, $searchTerm: String) {\n viewer + {\n organization(id: $organizationId) {\n project(name: $projectName) + {\n parameters(searchTerm: $searchTerm, orderBy: {keyName: ASC}) {\n nodes + {\n id\n keyName\n isSecret\n environmentValue(environmentId: + $environmentId) {\n parameterValue\n }\n }\n }\n }\n }\n }\n}","variables":{"searchTerm":"","environmentId":"RW52aXJvbm1lbnQtZjk3MDI1NGEtNGQ0NS00YTA1LWJiYjctOTRjZTdhOGRmODky","projectName":"default"},"operationName":"GraphQL__Client__OperationDefinition_196200"}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - application/json + User-Agent: + - kubetruth/0.3.0 + Content-Type: + - application/json + Authorization: + - Bearer + response: + status: + code: 200 + message: OK + headers: + Date: + - Tue, 27 Apr 2021 14:11:06 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Connection: + - keep-alive + X-Frame-Options: + - SAMEORIGIN + X-Xss-Protection: + - 1; mode=block + X-Content-Type-Options: + - nosniff + X-Download-Options: + - noopen + X-Permitted-Cross-Domain-Policies: + - none + Referrer-Policy: + - strict-origin-when-cross-origin + Vary: + - Accept, Origin + Etag: + - W/"fe60a28a77577e7f2c8c439ebbfce64b" + Cache-Control: + - max-age=0, private, must-revalidate + X-Request-Id: + - 88cbbf76-0f47-4aba-b50a-85e6e4194f63 + X-Runtime: + - '0.967448' + body: + encoding: UTF-8 + string: '{"data":{"viewer":{"organization":{"project":{"parameters":{"nodes":[{"id":"UGFyYW1ldGVyLTFlZGRhNTRiLTYzOTItNDFhMS1iOTU0LWRhMjUyNjE2MzZhZQ==","keyName":"app.demo.color0","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWUxN2M2ZGIwLWU4NjYtNGM5Yi1iNmRjLTE2MjE2ZTJlM2MxZQ==","keyName":"app.demo.color1","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTQ0MTZhYzIyLTIxOGEtNGQ0Ni1iNjhjLTY4MmFmYTJiNmJmMw==","keyName":"app.demo.color2","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTk4NGQ4MDc2LWIxNGQtNGI1My05MmE0LTY4ZjllMDEwOGZhMw==","keyName":"app.demo.delay","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTliNmU4NzJkLTFiNjYtNDVlNS04ZmY0LTA3ZDcyMDEyOThjNw==","keyName":"app.demo.height","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWUyMzFkZmUyLWRmYTUtNDY5NS05NDc0LWFlOWI5MGEyZWYzYg==","keyName":"app.demo.label0","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTk1OGJjMmM4LTgwZjEtNDU2OC1hODY3LWYzMjEzOGFhODJmYg==","keyName":"app.demo.label1","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWVlM2JhY2E0LWEyNzQtNDMzOC05NGQyLWUyNzdjMGJhYTJhMQ==","keyName":"app.demo.label2","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTdjNjcwOTJhLTkzNTgtNGFkYy04NDI5LTExOWUxNGI1NmExMw==","keyName":"app.demo.max_instances","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTM4NjJhNzIxLTNkNGUtNDY2NC1iMTQ2LTBjOWUxMDM5ZjIyMw==","keyName":"app.demo.num_frames","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTRjZjJjOGViLTE4NzUtNDU0YS05MjZiLWY3Mzc0NWUxZWQ4Mw==","keyName":"app.demo.num_retries","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWM1ZmQzYWVmLWFkODUtNDRhMi1hYjFlLTVkODM3ZGQ1YjE3Yg==","keyName":"app.demo.series0","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTFmMWI1NWUzLWExNDMtNDg4NC1iYTk5LTA5YTc1NmQ4ZTRiNQ==","keyName":"app.demo.series1","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWMwNWFlYzgyLTJjNjYtNGViNS1hNjc5LWIwNTkzZjZkYjRmYw==","keyName":"app.demo.series2","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWNiMzU2YmE2LTkzZmEtNDk3NC1hMDQ3LTU3NWU3OTEzMzExZA==","keyName":"app.demo.timeout","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWVmMWE0OTI5LTJlMzgtNDliZi1iYzlmLWI3OWMyOTIyZjJiOA==","keyName":"app.demo.width","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWE5ZThjMTViLTk4ZTgtNGI5Mi1hNDFkLWNkMmNmOTk4MTUwOQ==","keyName":"aws_account_id","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY1YmMzMWY2LTdlNzgtNGQ2OC1iMzU5LWE5ZDcyNzlmMzA3Zg==","keyName":"aws_region","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWFlOTgzZjhiLTk3NTQtNGM2YS1hOTgyLWE3ZTI4MTIwOGYxMQ==","keyName":"cfdemo.bucket","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTg4MWE4ZmQyLTRjY2UtNDM3Ni05MWZkLTU1MjU4YmUzOTg5OA==","keyName":"cfdemo.message","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWE1ODZlY2I3LWMxMzQtNDA5Yi05ZTBiLTU1Yzc1MGIyZDc0MA==","keyName":"deploy.services.kubecfg","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTRhODkzMzgxLTE0NGUtNDZhNC04YTdmLWRmYjEzYWFkNDZiZQ==","keyName":"deployer_aws_access_key","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWIxMjNjZDJjLWEyYmUtNDdmOC05MzEwLWIwOTAwMDNlM2M1Yg==","keyName":"deployer_aws_access_secret","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLThlYjQ5NGFlLTc3NTUtNGNjNy04ODUzLTZmYTc5OTEyMDc1Mw==","keyName":"domain","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTFkMDNkMzU3LWJjODEtNGZkNy05YWIwLWFmZGU1OGViODIyYw==","keyName":"environment","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY5M2FiZTY0LTIxMzItNDA5MS05MWQ5LWZlNTJhMzg4ODEwNg==","keyName":"foo","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWEzYzhiYzkxLWE1ODUtNDFmNi1hMTE3LTMyYzU5NzcxOGMwMQ==","keyName":"myvalue","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTcyMGRkNDNjLTkwZGQtNDNjMi04MjJlLWU0YmQ3OGY2ZDkwMA==","keyName":"ops.az_count","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTI0NDBjYWUyLTAwOGYtNDVmYS05YmE2LTBjMmVmOGM0NGRlYg==","keyName":"ops.db_sizing.some-rds.count","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTA3YjY4ZGM3LTVlZmQtNGFmNS04NzhiLTNmODkzYjU5MzA1Ng==","keyName":"ops.db_sizing.some-rds.type","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTZiZjBhM2E5LTQzNmUtNDA1OS1iNjMzLWQzMDc2Nzk1NGNhZg==","keyName":"ops.force_destroy_buckets","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTE0YjkxNzRlLTRhNDgtNGQ1OS05ZTIwLTU1MGRiOWEyZGIxYg==","keyName":"ops.force_destroy_zones","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWEzNjkwYmJlLTM2YTktNGFjYy1iZTliLTdlM2M3ZDc2Yzg5Yw==","keyName":"ops.global_name_prefix","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTQyZjRmZWQ3LWQ4MzAtNDczZC1iYTAzLTYxOTViMThkNWIyZA==","keyName":"ops.is_dev","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTgzOTkzZDFkLTE5ZjgtNDBiMC1iM2E5LTA4ZmUxNDFmMThmYg==","keyName":"ops.local_name_prefix","isSecret":false,"environmentValue":{"parameterValue":null}},{"id":"UGFyYW1ldGVyLWQzMmNhOGU2LWRmNDYtNGU2YS04ZjExLTU5YjUwYTJlM2QwMg==","keyName":"ops.logs_bucket","isSecret":false,"environmentValue":{"parameterValue":null}},{"id":"UGFyYW1ldGVyLWU4MDgwYjFjLWNhYjAtNDk0My1hZDIzLWYwZjRjYmFlNjBkMg==","keyName":"ops.ops_email","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTYzY2YxNDY0LWIxMTgtNDc5NS1hNDRmLWY4OWVmMzkxMzczMQ==","keyName":"ops.org","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTU3M2QzYzRhLTcwYTItNDA1Ni04YWY5LTJhYjEyNTZjMGQzNQ==","keyName":"ops.org_prefix","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTIxZjFjODkzLTg0NzEtNDA1Yy04YWJmLTQxOTNhM2E2ZTBlZg==","keyName":"ops.service_sizing.bigboy.cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTllMjIzNjc5LWRhZjAtNDliNy1hMzk1LTVjYTEzZDYzN2I5OQ==","keyName":"ops.service_sizing.bigboy.max_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTM0MDY4ZDEwLTQyYTEtNDBlZS1hNmVhLTAwNGM2ZjQxMjJjYg==","keyName":"ops.service_sizing.bigboy.memory","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWQ0NWQzZjY0LTJkNGEtNDU4ZC05MTM5LTg1ZmFjYTBlMTNkMg==","keyName":"ops.service_sizing.bigboy.min_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTUzYzRjZTAwLWE1MGMtNDQyNS1iMjUzLTJiNmM1MmNiN2Q5Mg==","keyName":"ops.service_sizing_default.cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTNiMGFjMGNjLWZlMGUtNDM3Mi1iZDQ0LTI1NGVlNmM0NjA5ZQ==","keyName":"ops.service_sizing_default.max_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTRlMTY4MzRmLWEyZGMtNDNlZS04ZmQ1LTNlZTZlMmM3MzQ5OA==","keyName":"ops.service_sizing_default.memory","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTNkODI1NjM1LWM4MDAtNDVlYS1hYjEwLWRhZTU3MTc5ZGIzMQ==","keyName":"ops.service_sizing_default.min_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTA5NTRjZDYzLTM0N2MtNGRlOC1iOTE4LTdlNDVmYjA2ZTIxMw==","keyName":"ops.skip_final_snapshot","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWYyN2VhNjc5LTg4YjEtNGNiMi05M2QwLTc3Y2ZiYjkyNDYzNQ==","keyName":"ops.vpc_cidr","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWYzYTc1ZjUwLWRlYmItNDc2NC1hMzE4LTBiYmM5NTJjMmMzMg==","keyName":"ops.vpc_enable_nat","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWJlZDllMjg1LTM5Y2EtNDM0Yy04ODVjLWQ0NmFkODAxMjkxYw==","keyName":"ops.vpc_enable_redundant_nat","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTdlZDJhNjUzLTI3YjgtNGU1ZS1hZWEyLWZlY2FlMjYzNzE5Nw==","keyName":"ops.website_bucket","isSecret":false,"environmentValue":{"parameterValue":null}},{"id":"UGFyYW1ldGVyLWFhN2VmZWQyLTQyM2EtNGRlMy05MjAxLTU5NTYxNTU1MjA3NQ==","keyName":"service.demo1.token","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWNmM2I4NjI2LWNlZWMtNDBiMS05YjkwLTYxMjEyYjQ4YjRjNQ==","keyName":"service.demo2.limit","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWQ0Mzg5YzdkLTI3ZDUtNGFkNC1hMjQwLWRhYTM5OTBlNzM4Yw==","keyName":"service.demo2.min","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWYwMzkzYmIzLWZhY2QtNDY0MS04MmUwLWNiMTJhYzNiN2VlYg==","keyName":"service.demo2.mykey","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLThkYWQ5NDZlLTdjMDQtNDI1OS05YTJmLTRhYmZkOGFiMmM3NQ==","keyName":"service.demo2.other","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWNlNTViNDY0LWExZTMtNGJmYi05MjRhLWRlOTYzNDQ3ZGRlZQ==","keyName":"service.demo3.foo","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY3YzYzMjc5LWY1M2ItNDUzYi1hNmI2LTc5NGJmNjE1ZTI5Nw==","keyName":"service.demo4.bar","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTI1ZmVmNDRiLWI2ZTMtNDg1Zi05MjQ0LWFjMzg0YjBjMzAwZQ==","keyName":"some_config","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTgxMWNmOTJjLTk4Y2MtNGZlYi04M2I1LTc3MmMzMTEzNjZiMg==","keyName":"svc.demo.active","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWU4YWNmMDIwLWEyNWUtNDgyOS04ZTdhLTU4ZGU1YWE4Zjg2Yg==","keyName":"svc.demo.enable_logging","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWFjZGVkMTQyLWIyZGYtNDkxMy1hZjU3LTY0ODJjNjhjYjVjOA==","keyName":"svc.demo.max_cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWJiZTZmNTcyLTVkM2UtNDZkYS1iMmQ1LTJkODlkODVhNGU0MQ==","keyName":"svc.demo.max_retries","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWUxNmJhYjM3LWFjYjItNGJiOS1iODc0LWMxYWFiNjA2OTFjNA==","keyName":"svc.demo.min_cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWJhYmFhZTM3LTMyNTMtNDE5NC05N2E1LWIyNDYyZjNiNTAyYw==","keyName":"svc.demo.region","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTI0ZGI2MGY2LWU2ODMtNDIzNi1iYmRmLTQ1ZWUzMGU3MDFjZA==","keyName":"svc.demo.timeout","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTUwODMzMWI3LThjNDAtNDkyYi05NjUyLWI4ZTc2MDM0YzIxMQ==","keyName":"web.app.background_color","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTJhNzI2MDUxLTRkNTEtNDBiZi05ZmJiLTQ4Mjg3NTBmMjAwMQ==","keyName":"web.app.polling_interval","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY4MjNlYWFkLWE4ZTEtNGRhYy05YTJlLTBjZWFkMDYzZjliZg==","keyName":"web_bucket","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTBjZWFjZjZiLTg4MzItNGZkZi1hNDk1LTQzNWJlNGRkNWFkOQ==","keyName":"web_distribution_id","isSecret":false,"environmentValue":{"parameterValue":""}}]}}}}}}' + recorded_at: Tue, 27 Apr 2021 14:11:00 GMT +recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/CtApi/_parameters/uses_searchTerm_to_get_parameters.yml b/spec/fixtures/vcr/CtApi/_parameters/uses_searchTerm_to_get_parameters.yml index 44b840b..0c7e643 100644 --- a/spec/fixtures/vcr/CtApi/_parameters/uses_searchTerm_to_get_parameters.yml +++ b/spec/fixtures/vcr/CtApi/_parameters/uses_searchTerm_to_get_parameters.yml @@ -25,7 +25,7 @@ http_interactions: Accept: - application/json User-Agent: - - kubetruth/0.2.0 + - kubetruth/0.3.0 Content-Type: - application/json Authorization: @@ -36,7 +36,7 @@ http_interactions: message: OK headers: Date: - - Wed, 17 Feb 2021 15:58:22 GMT + - Tue, 27 Apr 2021 14:11:12 GMT Content-Type: - application/json; charset=utf-8 Transfer-Encoding: @@ -55,19 +55,19 @@ http_interactions: - none Referrer-Policy: - strict-origin-when-cross-origin + Vary: + - Accept, Origin Etag: - - W/"9fb738763ccd7d76282a12d15db153be" + - W/"75ec2b3ba6f57bc364b5a38b5e8f606b" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - 768b4ed0-bf1b-4523-b2bc-4aca620bd30c + - acc02592-baef-4864-94a6-47677690bcfa X-Runtime: - - '0.468063' - Vary: - - Origin + - '1.609389' body: encoding: UTF-8 - string: '{"data":{"__schema":{"queryType":{"name":"Query"},"mutationType":{"name":"Mutation"},"subscriptionType":null,"types":[{"kind":"OBJECT","name":"AuditLogSnapshot","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fileUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SnapshotStatusEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditLogSnapshotConnection","description":"The + string: '{"data":{"__schema":{"queryType":{"name":"Query"},"mutationType":{"name":"Mutation"},"subscriptionType":null,"types":[{"kind":"OBJECT","name":"AuditLogSnapshot","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fileUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SnapshotStatusEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditLogSnapshotConnection","description":"The connection type for AuditLogSnapshot.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AuditLogSnapshotEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -76,7 +76,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditLogSnapshotEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegration","description":null,"fields":[{"name":"accountId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"enabledServices","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsIntegrationEnum","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"externalId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"roleName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegrationConnection","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegration","description":null,"fields":[{"name":"accountId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"enabledServices","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsIntegrationEnum","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"externalId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"roleName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegrationConnection","description":"The connection type for AwsIntegration.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegrationEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegration","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -85,7 +85,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegrationEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AwsIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AwsIntegrationEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"S3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SSM","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"Boolean","description":"Represents + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AwsIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AwsIntegrationEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"S3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SSM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SECRETS_MANAGER","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INTERFACE","name":"BasePolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"InvitationPolicy","ofType":null},{"kind":"OBJECT","name":"NodePolicy","ofType":null},{"kind":"OBJECT","name":"OrganizationPolicy","ofType":null}]},{"kind":"SCALAR","name":"Boolean","description":"Represents `true` or `false` values.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateAuditLogSnapshotInput","description":"Autogenerated input type of CreateAuditLogSnapshot","fields":null,"inputFields":[{"name":"organizationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateAuditLogSnapshotPayload","description":"Autogenerated @@ -107,19 +107,27 @@ http_interactions: unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateInvitationPayload","description":"Autogenerated return type of CreateInvitation","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"invitation","description":null,"args":[],"type":{"kind":"OBJECT","name":"Invitation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateOrganizationInput","description":"Autogenerated - input type of CreateOrganization","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + input type of CreateOrganization","fields":null,"inputFields":[{"name":"eaorgid","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateOrganizationPayload","description":"Autogenerated return type of CreateOrganization","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateParameterInput","description":"Autogenerated - input type of CreateParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + input type of CreateParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateParameterPayload","description":"Autogenerated return type of CreateParameter","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreatePersonalAccessTokenInput","description":"Autogenerated input type of CreatePersonalAccessToken","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"writeAccess","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreatePersonalAccessTokenPayload","description":"Autogenerated return type of CreatePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","description":"Autogenerated - input type of CreateTemplate","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateProjectInput","description":"Autogenerated + input type of CreateProject","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateProjectPayload","description":"Autogenerated + return type of CreateProject","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateServiceAccountInput","description":"Autogenerated + input type of CreateServiceAccount","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateServiceAccountPayload","description":"Autogenerated + return type of CreateServiceAccount","fields":[{"name":"apiToken","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"serviceAccount","description":null,"args":[],"type":{"kind":"OBJECT","name":"ServiceAccount","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","description":"Autogenerated + input type of CreateTemplate","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateTemplatePayload","description":"Autogenerated return type of CreateTemplate","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteAllPersonalAccessTokensInput","description":"Autogenerated @@ -142,7 +150,11 @@ http_interactions: input type of DeleteInvitation","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteInvitationPayload","description":"Autogenerated return type of DeleteInvitation","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedInvitationId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedInvitationId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteMembershipInput","description":"Autogenerated + input type of DeleteMembership","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteMembershipPayload","description":"Autogenerated + return type of DeleteMembership","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedMembershipId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","description":"Autogenerated input type of DeleteParameter","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteParameterPayload","description":"Autogenerated return type of DeleteParameter","fields":[{"name":"clientMutationId","description":"A @@ -150,7 +162,15 @@ http_interactions: input type of DeletePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeletePersonalAccessTokenPayload","description":"Autogenerated return type of DeletePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedPersonalAccessTokenId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedPersonalAccessTokenId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteProjectInput","description":"Autogenerated + input type of DeleteProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteProjectPayload","description":"Autogenerated + return type of DeleteProject","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteServiceAccountInput","description":"Autogenerated + input type of DeleteServiceAccount","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteServiceAccountPayload","description":"Autogenerated + return type of DeleteServiceAccount","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedServiceAccountId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","description":"Autogenerated input type of DeleteTemplate","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteTemplatePayload","description":"Autogenerated return type of DeleteTemplate","fields":[{"name":"clientMutationId","description":"A @@ -158,7 +178,7 @@ http_interactions: the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[{"name":"parameterId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterValue","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentConnection","description":"The + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[{"name":"parameterId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterValue","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentConnection","description":"The connection type for Environment.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -167,11 +187,11 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentValue","description":null,"fields":[{"name":"environment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integrationFile","description":null,"args":[],"type":{"kind":"OBJECT","name":"IntegrationFile","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"jmesPath","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EnvironmentValueTypeEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"EnvironmentValueTypeEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"STATIC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DYNAMIC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","description":"Autogenerated + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentValue","description":null,"fields":[{"name":"environment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integrationFile","description":null,"args":[],"type":{"kind":"OBJECT","name":"IntegrationFile","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"jmesPath","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EnvironmentValueTypeEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"EnvironmentValueTypeEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"STATIC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DYNAMIC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ExportParameters","description":null,"fields":[{"name":"evaluated","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ExportParametersFormatEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"DOCKER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DOTENV","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SHELL","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ExportParametersOptions","description":null,"fields":null,"inputFields":[{"name":"secrets","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"export","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"startsWith","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"endsWith","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"contains","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","description":"Autogenerated input type of FakeOrganizationData","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FakeOrganizationDataPayload","description":"Autogenerated return type of FakeOrganizationData","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegration","description":null,"fields":[{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"availableRepositoryCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"installationUrl","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegrationConnection","description":"The + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegration","description":null,"fields":[{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"availableRepositoryCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"installationUrl","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegrationConnection","description":"The connection type for GithubIntegration.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"GithubIntegrationEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"GithubIntegration","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -180,7 +200,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegrationEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"GithubIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"ID","description":"Represents + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"GithubIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"HasPolicy","description":null,"fields":[{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"BasePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"ServiceAccount","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null}]},{"kind":"SCALAR","name":"ID","description":"Represents a unique identifier that is Base64 obfuscated. It is often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected @@ -201,7 +221,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"IntegrationTreeEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Invitation","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberEmail","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberRole","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InvitationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationConnection","description":"The + item at the end of the edge.","args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Invitation","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberEmail","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberRole","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationPolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InvitationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationConnection","description":"The connection type for Invitation.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Invitation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -210,7 +230,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Invitation","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"InvitationStateEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ACCEPTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DECLINED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PENDING","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Membership","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pictureUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MembershipConnection","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Invitation","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationPolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resend","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"InvitationStateEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ACCEPTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DECLINED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PENDING","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Membership","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pictureUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MembershipConnection","description":"The connection type for Membership.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Membership","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -219,8 +239,45 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MembershipEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"MembershipRoleEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ADMIN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CONTRIBUTOR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VIEWER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"OWNER","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Mutation","description":null,"fields":[{"name":"createAuditLogSnapshot","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAuditLogSnapshotInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAuditLogSnapshotPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createAwsIntegration","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createEnvironment","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createGithubSetupToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateGithubSetupTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateGithubSetupTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createInvitation","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createOrganization","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrganizationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateOrganizationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createParameter","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createPersonalAccessToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createTemplate","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAllPersonalAccessTokens","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAllPersonalAccessTokensInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAllPersonalAccessTokensPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAwsIntegration","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteEnvironment","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteGithubIntegration","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteGithubIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteGithubIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteInvitation","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteParameter","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deletePersonalAccessToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeletePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeletePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteTemplate","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fakeOrganizationData","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"FakeOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"regeneratePersonalAccessToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RegeneratePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resetOrganizationData","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResetOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateAwsIntegration","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateEnvironment","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateInvitation","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateMembership","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateMembershipInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateMembershipPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateParameter","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatePersonalAccessToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateTemplate","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"upsertParameter","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpsertParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpsertParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"Node","description":"An - object with an ID.","fields":[{"name":"id","description":"ID of the object.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"IntegrationFile","ofType":null},{"kind":"OBJECT","name":"IntegrationFileTree","ofType":null},{"kind":"OBJECT","name":"IntegrationServiceTree","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null},{"kind":"OBJECT","name":"Viewer","ofType":null}]},{"kind":"ENUM","name":"OrderByEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DESC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Organization","description":null,"fields":[{"name":"auditLogSnapshots","description":null,"args":[{"name":"after","description":"Returns + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"MembershipRoleEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ADMIN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CONTRIBUTOR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VIEWER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"OWNER","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Mutation","description":null,"fields":[{"name":"createAuditLogSnapshot","description":null,"args":[{"name":"input","description":"Parameters + for CreateAuditLogSnapshot","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAuditLogSnapshotInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAuditLogSnapshotPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters + for CreateAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createEnvironment","description":null,"args":[{"name":"input","description":"Parameters + for CreateEnvironment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createGithubSetupToken","description":null,"args":[{"name":"input","description":"Parameters + for CreateGithubSetupToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateGithubSetupTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateGithubSetupTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createInvitation","description":null,"args":[{"name":"input","description":"Parameters + for CreateInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createOrganization","description":null,"args":[{"name":"input","description":"Parameters + for CreateOrganization","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrganizationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateOrganizationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createParameter","description":null,"args":[{"name":"input","description":"Parameters + for CreateParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createPersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for CreatePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createProject","description":null,"args":[{"name":"input","description":"Parameters + for CreateProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createServiceAccount","description":null,"args":[{"name":"input","description":"Parameters + for CreateServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateServiceAccountPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createTemplate","description":null,"args":[{"name":"input","description":"Parameters + for CreateTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAllPersonalAccessTokens","description":null,"args":[{"name":"input","description":"Parameters + for DeleteAllPersonalAccessTokens","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAllPersonalAccessTokensInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAllPersonalAccessTokensPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters + for DeleteAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteEnvironment","description":null,"args":[{"name":"input","description":"Parameters + for DeleteEnvironment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteGithubIntegration","description":null,"args":[{"name":"input","description":"Parameters + for DeleteGithubIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteGithubIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteGithubIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteInvitation","description":null,"args":[{"name":"input","description":"Parameters + for DeleteInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteMembership","description":null,"args":[{"name":"input","description":"Parameters + for DeleteMembership","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteMembershipInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteMembershipPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteParameter","description":null,"args":[{"name":"input","description":"Parameters + for DeleteParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deletePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for DeletePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeletePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeletePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteProject","description":null,"args":[{"name":"input","description":"Parameters + for DeleteProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteServiceAccount","description":null,"args":[{"name":"input","description":"Parameters + for DeleteServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteServiceAccountPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteTemplate","description":null,"args":[{"name":"input","description":"Parameters + for DeleteTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fakeOrganizationData","description":null,"args":[{"name":"input","description":"Parameters + for FakeOrganizationData","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"FakeOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refreshServiceAccountApiToken","description":null,"args":[{"name":"input","description":"Parameters + for RefreshServiceAccountApiToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RefreshServiceAccountApiTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RefreshServiceAccountApiTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"regeneratePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for RegeneratePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RegeneratePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resendInvitation","description":null,"args":[{"name":"input","description":"Parameters + for ResendInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResendInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResendInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resetOrganizationData","description":null,"args":[{"name":"input","description":"Parameters + for ResetOrganizationData","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResetOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters + for UpdateAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateEnvironment","description":null,"args":[{"name":"input","description":"Parameters + for UpdateEnvironment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateInvitation","description":null,"args":[{"name":"input","description":"Parameters + for UpdateInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateMembership","description":null,"args":[{"name":"input","description":"Parameters + for UpdateMembership","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateMembershipInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateMembershipPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateOrganization","description":null,"args":[{"name":"input","description":"Parameters + for UpdateOrganization","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateOrganizationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateOrganizationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateParameter","description":null,"args":[{"name":"input","description":"Parameters + for UpdateParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for UpdatePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateProject","description":null,"args":[{"name":"input","description":"Parameters + for UpdateProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateTemplate","description":null,"args":[{"name":"input","description":"Parameters + for UpdateTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"upsertParameter","description":null,"args":[{"name":"input","description":"Parameters + for UpsertParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpsertParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpsertParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"Node","description":"An + object with an ID.","fields":[{"name":"id","description":"ID of the object.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"IntegrationFile","ofType":null},{"kind":"OBJECT","name":"IntegrationFileTree","ofType":null},{"kind":"OBJECT","name":"IntegrationServiceTree","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"ServiceAccount","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null},{"kind":"OBJECT","name":"Viewer","ofType":null}]},{"kind":"OBJECT","name":"NodePolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"OrderByEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DESC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Organization","description":null,"fields":[{"name":"auditLogSnapshots","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns @@ -228,11 +285,12 @@ http_interactions: the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegrationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"environment","description":null,"args":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environments","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegrationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"defaultProject","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"environment","description":null,"args":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environments","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"evaluateTemplate","description":null,"args":[{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TemplateEvaluation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"githubIntegrations","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"evaluateTemplate","description":null,"args":[{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TemplateEvaluation","ofType":null},"isDeprecated":true,"deprecationReason":"Use + project instead."},{"name":"githubIntegrations","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns @@ -244,11 +302,13 @@ http_interactions: the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberships","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"state","description":"Filter + invitation list by state.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InvitationStateEnum","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberships","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"userType","description":"Optionally + filter by user type.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns @@ -256,21 +316,27 @@ http_interactions: order for parameters.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","ofType":null}}},"defaultValue":null},{"name":"searchTerm","description":"Search over parameter names.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"where","description":"Filter parameter list.","type":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null},"defaultValue":null},{"name":"keyNames","description":"List - of key names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + of key names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrganizationPolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projects","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ProjectConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionExpiresAt","description":null,"args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionId","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionPlanId","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionPlanName","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"names","description":"List - of template names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursor","description":null,"fields":[{"name":"cursor","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isCurrent","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageNumber","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursors","description":null,"fields":[{"name":"around","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageCursor","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"first","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"last","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previous","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageInfo","description":"Information + of template names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"vaultId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"OrganizationPolicy","description":null,"fields":[{"name":"createEnvironment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createIntegration","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createInvitation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createParameter","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Everything + will go through project in the near future."},{"name":"createProject","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createTemplate","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Everything + will go through the project in the near future."},{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursor","description":null,"fields":[{"name":"cursor","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isCurrent","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageNumber","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursors","description":null,"fields":[{"name":"around","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageCursor","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"first","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"last","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previous","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageInfo","description":"Information about pagination in a connection.","fields":[{"name":"endCursor","description":"When paginating forwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasNextPage","description":"When paginating forwards, are there more items?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasPreviousPage","description":"When paginating backwards, are there more items?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"startCursor","description":"When - paginating backwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Parameter","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValue","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValues","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"hasDynamicValue","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isSecret","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"keyName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + paginating backwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Parameter","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValue","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValues","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"hasDynamicValue","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isSecret","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"keyName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","description":null,"fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"keyName","description":null,"type":{"kind":"INPUT_OBJECT","name":"StringComparisonExp","ofType":null},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"INPUT_OBJECT","name":"IdComparisonExp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterConnection","description":"The + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","description":null,"fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"keyName","description":null,"type":{"kind":"INPUT_OBJECT","name":"StringComparisonExp","ofType":null},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"INPUT_OBJECT","name":"IdComparisonExp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterConnection","description":"The connection type for Parameter.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Parameter","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -279,7 +345,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","description":null,"fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null},{"name":"updatedAt","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterValue","description":null,"fields":[{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessToken","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastUsed","description":null,"args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"writeAccess","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessTokenConnection","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","description":null,"fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null},{"name":"updatedAt","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterValue","description":null,"fields":[{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessToken","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastUsed","description":null,"args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"writeAccess","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessTokenConnection","description":"The connection type for PersonalAccessToken.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PersonalAccessTokenEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -288,20 +354,51 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessTokenEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Query","description":null,"fields":[{"name":"node","description":"Fetches + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Project","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"defaultForOrganization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"evaluateTemplate","description":null,"args":[{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TemplateEvaluation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"exportParameters","description":null,"args":[{"name":"format","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ExportParametersFormatEnum","ofType":null}},"defaultValue":null},{"name":"options","description":null,"type":{"kind":"INPUT_OBJECT","name":"ExportParametersOptions","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ExportParameters","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"orderBy","description":"Sort + order for parameters.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","ofType":null}}},"defaultValue":null},{"name":"searchTerm","description":"Search + over parameter names.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"where","description":"Filter + parameter list.","type":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null},"defaultValue":null},{"name":"keyNames","description":"List + of key names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"names","description":"List + of template names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectConnection","description":"The + connection type for Project.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ProjectEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Query","description":null,"fields":[{"name":"node","description":"Fetches an object given its ID.","args":[{"name":"id","description":"ID of the object.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"INTERFACE","name":"Node","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"Fetches a list of objects given a list of IDs.","args":[{"name":"ids","description":"IDs - of the objects.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INTERFACE","name":"Node","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","description":"Autogenerated + of the objects.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INTERFACE","name":"Node","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RefreshServiceAccountApiTokenInput","description":"Autogenerated + input type of RefreshServiceAccountApiToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RefreshServiceAccountApiTokenPayload","description":"Autogenerated + return type of RefreshServiceAccountApiToken","fields":[{"name":"apiToken","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"serviceAccount","description":null,"args":[],"type":{"kind":"OBJECT","name":"ServiceAccount","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","description":"Autogenerated input type of RegeneratePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RegeneratePersonalAccessTokenPayload","description":"Autogenerated return type of RegeneratePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ResendInvitationInput","description":"Autogenerated + input type of ResendInvitation","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ResendInvitationPayload","description":"Autogenerated + return type of ResendInvitation","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"invitation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Invitation","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","description":"Autogenerated input type of ResetOrganizationData","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ResetOrganizationDataPayload","description":"Autogenerated return type of ResetOrganizationData","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SnapshotStatusEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"REQUESTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PROCESSING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AVAILABLE","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"String","description":"Represents + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ServiceAccount","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SnapshotStatusEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"REQUESTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PROCESSING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AVAILABLE","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"String","description":"Represents textual data as UTF-8 character sequences. This type is most often used by - GraphQL to represent free-form human-readable text.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"StringComparisonExp","description":null,"fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Template","description":null,"fields":[{"name":"body","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"evaluated","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TemplateConnection","description":"The + GraphQL to represent free-form human-readable text.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"StringComparisonExp","description":null,"fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Template","description":null,"fields":[{"name":"body","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"evaluated","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":true,"deprecationReason":"Use + project instead."},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TemplateConnection","description":"The connection type for Template.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Template","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -326,7 +423,11 @@ http_interactions: input type of UpdateMembership","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateMembershipPayload","description":"Autogenerated return type of UpdateMembership","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"membership","description":null,"args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"membership","description":null,"args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateOrganizationInput","description":"Autogenerated + input type of UpdateOrganization","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateOrganizationPayload","description":"Autogenerated + return type of UpdateOrganization","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","description":"Autogenerated input type of UpdateParameter","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"integrationFileId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"integrationFileFqn","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"jmesPath","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateParameterPayload","description":"Autogenerated return type of UpdateParameter","fields":[{"name":"clientMutationId","description":"A @@ -334,12 +435,16 @@ http_interactions: input type of UpdatePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"writeAccess","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdatePersonalAccessTokenPayload","description":"Autogenerated return type of UpdatePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateProjectInput","description":"Autogenerated + input type of UpdateProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateProjectPayload","description":"Autogenerated + return type of UpdateProject","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","description":"Autogenerated input type of UpdateTemplate","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"body","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateTemplatePayload","description":"Autogenerated return type of UpdateTemplate","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpsertParameterInput","description":"Autogenerated - input type of UpsertParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + input type of UpsertParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpsertParameterPayload","description":"Autogenerated return type of UpsertParameter","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserError","description":"A @@ -358,7 +463,7 @@ http_interactions: validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL''s execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives - provide this by describing additional information to the executor.","fields":[{"name":"args","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locations","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__DirectiveLocation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"onField","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use + provide this by describing additional information to the executor.","fields":[{"name":"args","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locations","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__DirectiveLocation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"onField","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."},{"name":"onFragment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."},{"name":"onOperation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__DirectiveLocation","description":"A @@ -386,11 +491,11 @@ http_interactions: for a string or numeric value. However an Enum value is returned in a JSON response as a string.","fields":[{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Field","description":"Object and Interface types are described by a list of Fields, each of which has a - name, potentially a list of arguments, and a return type.","fields":[{"name":"args","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__InputValue","description":"Arguments + name, potentially a list of arguments, and a return type.","fields":[{"name":"args","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__InputValue","description":"Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.","fields":[{"name":"defaultValue","description":"A GraphQL-formatted - string representing the default value for this input value.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Schema","description":"A + string representing the default value for this input value.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Schema","description":"A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.","fields":[{"name":"directives","description":"A @@ -407,7 +512,7 @@ http_interactions: types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at - runtime. List and NonNull types compose other types.","fields":[{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"enumValues","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__EnumValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"fields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Field","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"inputFields","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"interfaces","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__TypeKind","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"ofType","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"possibleTypes","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__TypeKind","description":"An + runtime. List and NonNull types compose other types.","fields":[{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"enumValues","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__EnumValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"fields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Field","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"inputFields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"interfaces","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__TypeKind","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"ofType","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"possibleTypes","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__TypeKind","description":"An enum describing what kind of type a given `__Type` is.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"SCALAR","description":"Indicates this type is a scalar.","isDeprecated":false,"deprecationReason":null},{"name":"OBJECT","description":"Indicates this type is an object. `fields` and `interfaces` are valid fields.","isDeprecated":false,"deprecationReason":null},{"name":"INTERFACE","description":"Indicates @@ -422,26 +527,26 @@ http_interactions: when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"skip","description":"Directs the executor to skip this field or fragment when the `if` argument is true.","locations":["FIELD","FRAGMENT_SPREAD","INLINE_FRAGMENT"],"args":[{"name":"if","description":"Skipped when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"deprecated","description":"Marks - an element of a GraphQL schema as no longer supported.","locations":["FIELD_DEFINITION","ENUM_VALUE"],"args":[{"name":"reason","description":"Explains + an element of a GraphQL schema as no longer supported.","locations":["FIELD_DEFINITION","ENUM_VALUE","ARGUMENT_DEFINITION","INPUT_FIELD_DEFINITION"],"args":[{"name":"reason","description":"Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted in [Markdown](https://daringfireball.net/projects/markdown/).","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"\"No longer supported\""}]}]}}}' - recorded_at: Wed, 17 Feb 2021 15:58:21 GMT + recorded_at: Tue, 27 Apr 2021 14:11:06 GMT - request: method: post uri: https://api.cloudtruth.com/graphql body: encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_149100($organizationId: + string: '{"query":"query GraphQL__Client__OperationDefinition_225580($organizationId: ID) {\n viewer {\n organization(id: $organizationId) {\n environments - {\n nodes {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_149100"}' + {\n nodes {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_225580"}' headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - application/json User-Agent: - - kubetruth/0.2.0 + - kubetruth/0.3.0 Content-Type: - application/json Authorization: @@ -452,7 +557,7 @@ http_interactions: message: OK headers: Date: - - Wed, 17 Feb 2021 15:58:22 GMT + - Tue, 27 Apr 2021 14:11:12 GMT Content-Type: - application/json; charset=utf-8 Transfer-Encoding: @@ -471,37 +576,38 @@ http_interactions: - none Referrer-Policy: - strict-origin-when-cross-origin + Vary: + - Accept, Origin Etag: - - W/"65ef7ec24337fc3df9a19032eaf15852" + - W/"4216eb2052c7088952da5a9791e740cd" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - 2731c391-c9da-4570-8f79-fbbdeef993f4 + - 10e6321e-7a42-4f82-988b-dc0b0f0b9060 X-Runtime: - - '0.018551' - Vary: - - Origin + - '0.028297' body: encoding: UTF-8 - string: '{"data":{"viewer":{"organization":{"environments":{"nodes":[{"id":"RW52aXJvbm1lbnQtZjk3MDI1NGEtNGQ0NS00YTA1LWJiYjctOTRjZTdhOGRmODky","name":"default"},{"id":"RW52aXJvbm1lbnQtOGRmMTVjMjYtN2FhZi00ODE5LWJlNzYtMTVmMzU2YzQ5YTg1","name":"production"},{"id":"RW52aXJvbm1lbnQtNmI5M2NlMWEtMTVkMS00MzRiLTg1NTAtODhjZDZhY2ZjYzU4","name":"development"},{"id":"RW52aXJvbm1lbnQtY2EyMDA0YzctZjQ3Mi00MzFlLWIyODgtNzg0NmYzMTBmMGZj","name":"ops"},{"id":"RW52aXJvbm1lbnQtMzY4MWRkMjctZDY2YS00NjdlLWI1NzMtYmI2YzU0ZmFjZDM1","name":"staging"},{"id":"RW52aXJvbm1lbnQtZWE3MzBjYmMtYzg1Zi00M2M1LTlkNjgtY2Q5NTlmMmNhYjQ2","name":"Dev1"}]}}}}}' - recorded_at: Wed, 17 Feb 2021 15:58:21 GMT + string: '{"data":{"viewer":{"organization":{"environments":{"nodes":[{"id":"RW52aXJvbm1lbnQtZjk3MDI1NGEtNGQ0NS00YTA1LWJiYjctOTRjZTdhOGRmODky","name":"default"},{"id":"RW52aXJvbm1lbnQtOGRmMTVjMjYtN2FhZi00ODE5LWJlNzYtMTVmMzU2YzQ5YTg1","name":"production"},{"id":"RW52aXJvbm1lbnQtNmI5M2NlMWEtMTVkMS00MzRiLTg1NTAtODhjZDZhY2ZjYzU4","name":"development"},{"id":"RW52aXJvbm1lbnQtY2EyMDA0YzctZjQ3Mi00MzFlLWIyODgtNzg0NmYzMTBmMGZj","name":"ops"},{"id":"RW52aXJvbm1lbnQtMzY4MWRkMjctZDY2YS00NjdlLWI1NzMtYmI2YzU0ZmFjZDM1","name":"staging"},{"id":"RW52aXJvbm1lbnQtZDE4NGQ1ODctYjA2Yi00OWU2LThhMGItNjU1YTM2NDQwYjRj","name":"dev-matt"}]}}}}}' + recorded_at: Tue, 27 Apr 2021 14:11:06 GMT - request: method: post uri: https://api.cloudtruth.com/graphql body: encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_149140($organizationId: - ID, $environmentId: ID, $searchTerm: String) {\n viewer {\n organization(id: - $organizationId) {\n parameters(searchTerm: $searchTerm, orderBy: {keyName: - ASC}) {\n nodes {\n id\n keyName\n isSecret\n environmentValue(environmentId: - $environmentId) {\n parameterValue\n }\n }\n }\n }\n }\n}","variables":{"searchTerm":"","environmentId":"RW52aXJvbm1lbnQtZjk3MDI1NGEtNGQ0NS00YTA1LWJiYjctOTRjZTdhOGRmODky"},"operationName":"GraphQL__Client__OperationDefinition_149140"}' + string: '{"query":"query GraphQL__Client__OperationDefinition_225620($organizationId: + ID, $environmentId: ID, $projectName: String, $searchTerm: String) {\n viewer + {\n organization(id: $organizationId) {\n project(name: $projectName) + {\n parameters(searchTerm: $searchTerm, orderBy: {keyName: ASC}) {\n nodes + {\n id\n keyName\n isSecret\n environmentValue(environmentId: + $environmentId) {\n parameterValue\n }\n }\n }\n }\n }\n }\n}","variables":{"searchTerm":"","environmentId":"RW52aXJvbm1lbnQtZjk3MDI1NGEtNGQ0NS00YTA1LWJiYjctOTRjZTdhOGRmODky"},"operationName":"GraphQL__Client__OperationDefinition_225620"}' headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - application/json User-Agent: - - kubetruth/0.2.0 + - kubetruth/0.3.0 Content-Type: - application/json Authorization: @@ -512,7 +618,7 @@ http_interactions: message: OK headers: Date: - - Wed, 17 Feb 2021 15:58:23 GMT + - Tue, 27 Apr 2021 14:11:13 GMT Content-Type: - application/json; charset=utf-8 Transfer-Encoding: @@ -531,37 +637,38 @@ http_interactions: - none Referrer-Policy: - strict-origin-when-cross-origin + Vary: + - Accept, Origin Etag: - - W/"f978a622bc5ae28c92d17d710dddb552" + - W/"fe60a28a77577e7f2c8c439ebbfce64b" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - a9ff09a7-f5c6-4387-a16d-499acf274369 + - 63359c0d-cfdd-4192-91c3-9c684f958619 X-Runtime: - - '0.900824' - Vary: - - Origin + - '0.861728' body: encoding: UTF-8 - string: '{"data":{"viewer":{"organization":{"parameters":{"nodes":[{"id":"UGFyYW1ldGVyLTFlZGRhNTRiLTYzOTItNDFhMS1iOTU0LWRhMjUyNjE2MzZhZQ==","keyName":"app.demo.color0","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWUxN2M2ZGIwLWU4NjYtNGM5Yi1iNmRjLTE2MjE2ZTJlM2MxZQ==","keyName":"app.demo.color1","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTQ0MTZhYzIyLTIxOGEtNGQ0Ni1iNjhjLTY4MmFmYTJiNmJmMw==","keyName":"app.demo.color2","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTk4NGQ4MDc2LWIxNGQtNGI1My05MmE0LTY4ZjllMDEwOGZhMw==","keyName":"app.demo.delay","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTliNmU4NzJkLTFiNjYtNDVlNS04ZmY0LTA3ZDcyMDEyOThjNw==","keyName":"app.demo.height","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWUyMzFkZmUyLWRmYTUtNDY5NS05NDc0LWFlOWI5MGEyZWYzYg==","keyName":"app.demo.label0","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTk1OGJjMmM4LTgwZjEtNDU2OC1hODY3LWYzMjEzOGFhODJmYg==","keyName":"app.demo.label1","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWVlM2JhY2E0LWEyNzQtNDMzOC05NGQyLWUyNzdjMGJhYTJhMQ==","keyName":"app.demo.label2","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTdjNjcwOTJhLTkzNTgtNGFkYy04NDI5LTExOWUxNGI1NmExMw==","keyName":"app.demo.max_instances","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTM4NjJhNzIxLTNkNGUtNDY2NC1iMTQ2LTBjOWUxMDM5ZjIyMw==","keyName":"app.demo.num_frames","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTRjZjJjOGViLTE4NzUtNDU0YS05MjZiLWY3Mzc0NWUxZWQ4Mw==","keyName":"app.demo.num_retries","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWM1ZmQzYWVmLWFkODUtNDRhMi1hYjFlLTVkODM3ZGQ1YjE3Yg==","keyName":"app.demo.series0","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTFmMWI1NWUzLWExNDMtNDg4NC1iYTk5LTA5YTc1NmQ4ZTRiNQ==","keyName":"app.demo.series1","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWMwNWFlYzgyLTJjNjYtNGViNS1hNjc5LWIwNTkzZjZkYjRmYw==","keyName":"app.demo.series2","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWNiMzU2YmE2LTkzZmEtNDk3NC1hMDQ3LTU3NWU3OTEzMzExZA==","keyName":"app.demo.timeout","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWVmMWE0OTI5LTJlMzgtNDliZi1iYzlmLWI3OWMyOTIyZjJiOA==","keyName":"app.demo.width","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWE5ZThjMTViLTk4ZTgtNGI5Mi1hNDFkLWNkMmNmOTk4MTUwOQ==","keyName":"aws_account_id","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY1YmMzMWY2LTdlNzgtNGQ2OC1iMzU5LWE5ZDcyNzlmMzA3Zg==","keyName":"aws_region","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWE1ODZlY2I3LWMxMzQtNDA5Yi05ZTBiLTU1Yzc1MGIyZDc0MA==","keyName":"deploy.services.kubecfg","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTRhODkzMzgxLTE0NGUtNDZhNC04YTdmLWRmYjEzYWFkNDZiZQ==","keyName":"deployer_aws_access_key","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWIxMjNjZDJjLWEyYmUtNDdmOC05MzEwLWIwOTAwMDNlM2M1Yg==","keyName":"deployer_aws_access_secret","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLThlYjQ5NGFlLTc3NTUtNGNjNy04ODUzLTZmYTc5OTEyMDc1Mw==","keyName":"domain","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTFkMDNkMzU3LWJjODEtNGZkNy05YWIwLWFmZGU1OGViODIyYw==","keyName":"environment","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWEzYzhiYzkxLWE1ODUtNDFmNi1hMTE3LTMyYzU5NzcxOGMwMQ==","keyName":"myvalue","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTcyMGRkNDNjLTkwZGQtNDNjMi04MjJlLWU0YmQ3OGY2ZDkwMA==","keyName":"ops.az_count","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTI0NDBjYWUyLTAwOGYtNDVmYS05YmE2LTBjMmVmOGM0NGRlYg==","keyName":"ops.db_sizing.some-rds.count","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTA3YjY4ZGM3LTVlZmQtNGFmNS04NzhiLTNmODkzYjU5MzA1Ng==","keyName":"ops.db_sizing.some-rds.type","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTZiZjBhM2E5LTQzNmUtNDA1OS1iNjMzLWQzMDc2Nzk1NGNhZg==","keyName":"ops.force_destroy_buckets","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTE0YjkxNzRlLTRhNDgtNGQ1OS05ZTIwLTU1MGRiOWEyZGIxYg==","keyName":"ops.force_destroy_zones","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWEzNjkwYmJlLTM2YTktNGFjYy1iZTliLTdlM2M3ZDc2Yzg5Yw==","keyName":"ops.global_name_prefix","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTQyZjRmZWQ3LWQ4MzAtNDczZC1iYTAzLTYxOTViMThkNWIyZA==","keyName":"ops.is_dev","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTgzOTkzZDFkLTE5ZjgtNDBiMC1iM2E5LTA4ZmUxNDFmMThmYg==","keyName":"ops.local_name_prefix","isSecret":false,"environmentValue":{"parameterValue":null}},{"id":"UGFyYW1ldGVyLWQzMmNhOGU2LWRmNDYtNGU2YS04ZjExLTU5YjUwYTJlM2QwMg==","keyName":"ops.logs_bucket","isSecret":false,"environmentValue":{"parameterValue":null}},{"id":"UGFyYW1ldGVyLWU4MDgwYjFjLWNhYjAtNDk0My1hZDIzLWYwZjRjYmFlNjBkMg==","keyName":"ops.ops_email","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTYzY2YxNDY0LWIxMTgtNDc5NS1hNDRmLWY4OWVmMzkxMzczMQ==","keyName":"ops.org","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTU3M2QzYzRhLTcwYTItNDA1Ni04YWY5LTJhYjEyNTZjMGQzNQ==","keyName":"ops.org_prefix","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTIxZjFjODkzLTg0NzEtNDA1Yy04YWJmLTQxOTNhM2E2ZTBlZg==","keyName":"ops.service_sizing.bigboy.cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTllMjIzNjc5LWRhZjAtNDliNy1hMzk1LTVjYTEzZDYzN2I5OQ==","keyName":"ops.service_sizing.bigboy.max_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTM0MDY4ZDEwLTQyYTEtNDBlZS1hNmVhLTAwNGM2ZjQxMjJjYg==","keyName":"ops.service_sizing.bigboy.memory","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWQ0NWQzZjY0LTJkNGEtNDU4ZC05MTM5LTg1ZmFjYTBlMTNkMg==","keyName":"ops.service_sizing.bigboy.min_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTUzYzRjZTAwLWE1MGMtNDQyNS1iMjUzLTJiNmM1MmNiN2Q5Mg==","keyName":"ops.service_sizing_default.cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTNiMGFjMGNjLWZlMGUtNDM3Mi1iZDQ0LTI1NGVlNmM0NjA5ZQ==","keyName":"ops.service_sizing_default.max_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTRlMTY4MzRmLWEyZGMtNDNlZS04ZmQ1LTNlZTZlMmM3MzQ5OA==","keyName":"ops.service_sizing_default.memory","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTNkODI1NjM1LWM4MDAtNDVlYS1hYjEwLWRhZTU3MTc5ZGIzMQ==","keyName":"ops.service_sizing_default.min_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTA5NTRjZDYzLTM0N2MtNGRlOC1iOTE4LTdlNDVmYjA2ZTIxMw==","keyName":"ops.skip_final_snapshot","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWYyN2VhNjc5LTg4YjEtNGNiMi05M2QwLTc3Y2ZiYjkyNDYzNQ==","keyName":"ops.vpc_cidr","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWYzYTc1ZjUwLWRlYmItNDc2NC1hMzE4LTBiYmM5NTJjMmMzMg==","keyName":"ops.vpc_enable_nat","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWJlZDllMjg1LTM5Y2EtNDM0Yy04ODVjLWQ0NmFkODAxMjkxYw==","keyName":"ops.vpc_enable_redundant_nat","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTdlZDJhNjUzLTI3YjgtNGU1ZS1hZWEyLWZlY2FlMjYzNzE5Nw==","keyName":"ops.website_bucket","isSecret":false,"environmentValue":{"parameterValue":null}},{"id":"UGFyYW1ldGVyLTNhODAxNDNjLTQ2YTUtNDgyNi05ZmM0LWQzZTg3ZjE0MDhmNA==","keyName":"service.demo1.live_config_tid","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWFhN2VmZWQyLTQyM2EtNGRlMy05MjAxLTU5NTYxNTU1MjA3NQ==","keyName":"service.demo1.token","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWNmM2I4NjI2LWNlZWMtNDBiMS05YjkwLTYxMjEyYjQ4YjRjNQ==","keyName":"service.demo2.limit","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWQ0Mzg5YzdkLTI3ZDUtNGFkNC1hMjQwLWRhYTM5OTBlNzM4Yw==","keyName":"service.demo2.min","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWYwMzkzYmIzLWZhY2QtNDY0MS04MmUwLWNiMTJhYzNiN2VlYg==","keyName":"service.demo2.mykey","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLThkYWQ5NDZlLTdjMDQtNDI1OS05YTJmLTRhYmZkOGFiMmM3NQ==","keyName":"service.demo2.other","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTdhZjEwMzg1LTYyNDktNDFhMy05MTQ1LTM0ZjFjMzhiZmM2OQ==","keyName":"service.demo3.foo","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTc3NGMyZDY1LTVjYTMtNGYxMi04ZDAyLTc5YTcwMTc0MmQxMA==","keyName":"service.demo3.othersecret","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTI1ZmVmNDRiLWI2ZTMtNDg1Zi05MjQ0LWFjMzg0YjBjMzAwZQ==","keyName":"some_config","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTgxMWNmOTJjLTk4Y2MtNGZlYi04M2I1LTc3MmMzMTEzNjZiMg==","keyName":"svc.demo.active","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWU4YWNmMDIwLWEyNWUtNDgyOS04ZTdhLTU4ZGU1YWE4Zjg2Yg==","keyName":"svc.demo.enable_logging","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWFjZGVkMTQyLWIyZGYtNDkxMy1hZjU3LTY0ODJjNjhjYjVjOA==","keyName":"svc.demo.max_cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWJiZTZmNTcyLTVkM2UtNDZkYS1iMmQ1LTJkODlkODVhNGU0MQ==","keyName":"svc.demo.max_retries","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWUxNmJhYjM3LWFjYjItNGJiOS1iODc0LWMxYWFiNjA2OTFjNA==","keyName":"svc.demo.min_cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWJhYmFhZTM3LTMyNTMtNDE5NC05N2E1LWIyNDYyZjNiNTAyYw==","keyName":"svc.demo.region","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTI0ZGI2MGY2LWU2ODMtNDIzNi1iYmRmLTQ1ZWUzMGU3MDFjZA==","keyName":"svc.demo.timeout","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTUwODMzMWI3LThjNDAtNDkyYi05NjUyLWI4ZTc2MDM0YzIxMQ==","keyName":"web.app.background_color","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWQ4OWQ3NmMwLTFlODYtNDVhZi1hZWRjLTdkY2UyNjkxOTU1NQ==","keyName":"web.app.live_config_tid","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTJhNzI2MDUxLTRkNTEtNDBiZi05ZmJiLTQ4Mjg3NTBmMjAwMQ==","keyName":"web.app.polling_interval","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY4MjNlYWFkLWE4ZTEtNGRhYy05YTJlLTBjZWFkMDYzZjliZg==","keyName":"web_bucket","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTBjZWFjZjZiLTg4MzItNGZkZi1hNDk1LTQzNWJlNGRkNWFkOQ==","keyName":"web_distribution_id","isSecret":false,"environmentValue":{"parameterValue":""}}]}}}}}' - recorded_at: Wed, 17 Feb 2021 15:58:22 GMT + string: '{"data":{"viewer":{"organization":{"project":{"parameters":{"nodes":[{"id":"UGFyYW1ldGVyLTFlZGRhNTRiLTYzOTItNDFhMS1iOTU0LWRhMjUyNjE2MzZhZQ==","keyName":"app.demo.color0","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWUxN2M2ZGIwLWU4NjYtNGM5Yi1iNmRjLTE2MjE2ZTJlM2MxZQ==","keyName":"app.demo.color1","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTQ0MTZhYzIyLTIxOGEtNGQ0Ni1iNjhjLTY4MmFmYTJiNmJmMw==","keyName":"app.demo.color2","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTk4NGQ4MDc2LWIxNGQtNGI1My05MmE0LTY4ZjllMDEwOGZhMw==","keyName":"app.demo.delay","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTliNmU4NzJkLTFiNjYtNDVlNS04ZmY0LTA3ZDcyMDEyOThjNw==","keyName":"app.demo.height","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWUyMzFkZmUyLWRmYTUtNDY5NS05NDc0LWFlOWI5MGEyZWYzYg==","keyName":"app.demo.label0","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTk1OGJjMmM4LTgwZjEtNDU2OC1hODY3LWYzMjEzOGFhODJmYg==","keyName":"app.demo.label1","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWVlM2JhY2E0LWEyNzQtNDMzOC05NGQyLWUyNzdjMGJhYTJhMQ==","keyName":"app.demo.label2","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTdjNjcwOTJhLTkzNTgtNGFkYy04NDI5LTExOWUxNGI1NmExMw==","keyName":"app.demo.max_instances","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTM4NjJhNzIxLTNkNGUtNDY2NC1iMTQ2LTBjOWUxMDM5ZjIyMw==","keyName":"app.demo.num_frames","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTRjZjJjOGViLTE4NzUtNDU0YS05MjZiLWY3Mzc0NWUxZWQ4Mw==","keyName":"app.demo.num_retries","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWM1ZmQzYWVmLWFkODUtNDRhMi1hYjFlLTVkODM3ZGQ1YjE3Yg==","keyName":"app.demo.series0","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTFmMWI1NWUzLWExNDMtNDg4NC1iYTk5LTA5YTc1NmQ4ZTRiNQ==","keyName":"app.demo.series1","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWMwNWFlYzgyLTJjNjYtNGViNS1hNjc5LWIwNTkzZjZkYjRmYw==","keyName":"app.demo.series2","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWNiMzU2YmE2LTkzZmEtNDk3NC1hMDQ3LTU3NWU3OTEzMzExZA==","keyName":"app.demo.timeout","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWVmMWE0OTI5LTJlMzgtNDliZi1iYzlmLWI3OWMyOTIyZjJiOA==","keyName":"app.demo.width","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWE5ZThjMTViLTk4ZTgtNGI5Mi1hNDFkLWNkMmNmOTk4MTUwOQ==","keyName":"aws_account_id","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY1YmMzMWY2LTdlNzgtNGQ2OC1iMzU5LWE5ZDcyNzlmMzA3Zg==","keyName":"aws_region","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWFlOTgzZjhiLTk3NTQtNGM2YS1hOTgyLWE3ZTI4MTIwOGYxMQ==","keyName":"cfdemo.bucket","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTg4MWE4ZmQyLTRjY2UtNDM3Ni05MWZkLTU1MjU4YmUzOTg5OA==","keyName":"cfdemo.message","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWE1ODZlY2I3LWMxMzQtNDA5Yi05ZTBiLTU1Yzc1MGIyZDc0MA==","keyName":"deploy.services.kubecfg","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTRhODkzMzgxLTE0NGUtNDZhNC04YTdmLWRmYjEzYWFkNDZiZQ==","keyName":"deployer_aws_access_key","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWIxMjNjZDJjLWEyYmUtNDdmOC05MzEwLWIwOTAwMDNlM2M1Yg==","keyName":"deployer_aws_access_secret","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLThlYjQ5NGFlLTc3NTUtNGNjNy04ODUzLTZmYTc5OTEyMDc1Mw==","keyName":"domain","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTFkMDNkMzU3LWJjODEtNGZkNy05YWIwLWFmZGU1OGViODIyYw==","keyName":"environment","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY5M2FiZTY0LTIxMzItNDA5MS05MWQ5LWZlNTJhMzg4ODEwNg==","keyName":"foo","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWEzYzhiYzkxLWE1ODUtNDFmNi1hMTE3LTMyYzU5NzcxOGMwMQ==","keyName":"myvalue","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTcyMGRkNDNjLTkwZGQtNDNjMi04MjJlLWU0YmQ3OGY2ZDkwMA==","keyName":"ops.az_count","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTI0NDBjYWUyLTAwOGYtNDVmYS05YmE2LTBjMmVmOGM0NGRlYg==","keyName":"ops.db_sizing.some-rds.count","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTA3YjY4ZGM3LTVlZmQtNGFmNS04NzhiLTNmODkzYjU5MzA1Ng==","keyName":"ops.db_sizing.some-rds.type","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTZiZjBhM2E5LTQzNmUtNDA1OS1iNjMzLWQzMDc2Nzk1NGNhZg==","keyName":"ops.force_destroy_buckets","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTE0YjkxNzRlLTRhNDgtNGQ1OS05ZTIwLTU1MGRiOWEyZGIxYg==","keyName":"ops.force_destroy_zones","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWEzNjkwYmJlLTM2YTktNGFjYy1iZTliLTdlM2M3ZDc2Yzg5Yw==","keyName":"ops.global_name_prefix","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTQyZjRmZWQ3LWQ4MzAtNDczZC1iYTAzLTYxOTViMThkNWIyZA==","keyName":"ops.is_dev","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTgzOTkzZDFkLTE5ZjgtNDBiMC1iM2E5LTA4ZmUxNDFmMThmYg==","keyName":"ops.local_name_prefix","isSecret":false,"environmentValue":{"parameterValue":null}},{"id":"UGFyYW1ldGVyLWQzMmNhOGU2LWRmNDYtNGU2YS04ZjExLTU5YjUwYTJlM2QwMg==","keyName":"ops.logs_bucket","isSecret":false,"environmentValue":{"parameterValue":null}},{"id":"UGFyYW1ldGVyLWU4MDgwYjFjLWNhYjAtNDk0My1hZDIzLWYwZjRjYmFlNjBkMg==","keyName":"ops.ops_email","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTYzY2YxNDY0LWIxMTgtNDc5NS1hNDRmLWY4OWVmMzkxMzczMQ==","keyName":"ops.org","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTU3M2QzYzRhLTcwYTItNDA1Ni04YWY5LTJhYjEyNTZjMGQzNQ==","keyName":"ops.org_prefix","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTIxZjFjODkzLTg0NzEtNDA1Yy04YWJmLTQxOTNhM2E2ZTBlZg==","keyName":"ops.service_sizing.bigboy.cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTllMjIzNjc5LWRhZjAtNDliNy1hMzk1LTVjYTEzZDYzN2I5OQ==","keyName":"ops.service_sizing.bigboy.max_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTM0MDY4ZDEwLTQyYTEtNDBlZS1hNmVhLTAwNGM2ZjQxMjJjYg==","keyName":"ops.service_sizing.bigboy.memory","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWQ0NWQzZjY0LTJkNGEtNDU4ZC05MTM5LTg1ZmFjYTBlMTNkMg==","keyName":"ops.service_sizing.bigboy.min_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTUzYzRjZTAwLWE1MGMtNDQyNS1iMjUzLTJiNmM1MmNiN2Q5Mg==","keyName":"ops.service_sizing_default.cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTNiMGFjMGNjLWZlMGUtNDM3Mi1iZDQ0LTI1NGVlNmM0NjA5ZQ==","keyName":"ops.service_sizing_default.max_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTRlMTY4MzRmLWEyZGMtNDNlZS04ZmQ1LTNlZTZlMmM3MzQ5OA==","keyName":"ops.service_sizing_default.memory","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTNkODI1NjM1LWM4MDAtNDVlYS1hYjEwLWRhZTU3MTc5ZGIzMQ==","keyName":"ops.service_sizing_default.min_capacity","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTA5NTRjZDYzLTM0N2MtNGRlOC1iOTE4LTdlNDVmYjA2ZTIxMw==","keyName":"ops.skip_final_snapshot","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWYyN2VhNjc5LTg4YjEtNGNiMi05M2QwLTc3Y2ZiYjkyNDYzNQ==","keyName":"ops.vpc_cidr","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWYzYTc1ZjUwLWRlYmItNDc2NC1hMzE4LTBiYmM5NTJjMmMzMg==","keyName":"ops.vpc_enable_nat","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWJlZDllMjg1LTM5Y2EtNDM0Yy04ODVjLWQ0NmFkODAxMjkxYw==","keyName":"ops.vpc_enable_redundant_nat","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTdlZDJhNjUzLTI3YjgtNGU1ZS1hZWEyLWZlY2FlMjYzNzE5Nw==","keyName":"ops.website_bucket","isSecret":false,"environmentValue":{"parameterValue":null}},{"id":"UGFyYW1ldGVyLWFhN2VmZWQyLTQyM2EtNGRlMy05MjAxLTU5NTYxNTU1MjA3NQ==","keyName":"service.demo1.token","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWNmM2I4NjI2LWNlZWMtNDBiMS05YjkwLTYxMjEyYjQ4YjRjNQ==","keyName":"service.demo2.limit","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWQ0Mzg5YzdkLTI3ZDUtNGFkNC1hMjQwLWRhYTM5OTBlNzM4Yw==","keyName":"service.demo2.min","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWYwMzkzYmIzLWZhY2QtNDY0MS04MmUwLWNiMTJhYzNiN2VlYg==","keyName":"service.demo2.mykey","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLThkYWQ5NDZlLTdjMDQtNDI1OS05YTJmLTRhYmZkOGFiMmM3NQ==","keyName":"service.demo2.other","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWNlNTViNDY0LWExZTMtNGJmYi05MjRhLWRlOTYzNDQ3ZGRlZQ==","keyName":"service.demo3.foo","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY3YzYzMjc5LWY1M2ItNDUzYi1hNmI2LTc5NGJmNjE1ZTI5Nw==","keyName":"service.demo4.bar","isSecret":true,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTI1ZmVmNDRiLWI2ZTMtNDg1Zi05MjQ0LWFjMzg0YjBjMzAwZQ==","keyName":"some_config","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTgxMWNmOTJjLTk4Y2MtNGZlYi04M2I1LTc3MmMzMTEzNjZiMg==","keyName":"svc.demo.active","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWU4YWNmMDIwLWEyNWUtNDgyOS04ZTdhLTU4ZGU1YWE4Zjg2Yg==","keyName":"svc.demo.enable_logging","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWFjZGVkMTQyLWIyZGYtNDkxMy1hZjU3LTY0ODJjNjhjYjVjOA==","keyName":"svc.demo.max_cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWJiZTZmNTcyLTVkM2UtNDZkYS1iMmQ1LTJkODlkODVhNGU0MQ==","keyName":"svc.demo.max_retries","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWUxNmJhYjM3LWFjYjItNGJiOS1iODc0LWMxYWFiNjA2OTFjNA==","keyName":"svc.demo.min_cpu","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWJhYmFhZTM3LTMyNTMtNDE5NC05N2E1LWIyNDYyZjNiNTAyYw==","keyName":"svc.demo.region","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTI0ZGI2MGY2LWU2ODMtNDIzNi1iYmRmLTQ1ZWUzMGU3MDFjZA==","keyName":"svc.demo.timeout","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTUwODMzMWI3LThjNDAtNDkyYi05NjUyLWI4ZTc2MDM0YzIxMQ==","keyName":"web.app.background_color","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTJhNzI2MDUxLTRkNTEtNDBiZi05ZmJiLTQ4Mjg3NTBmMjAwMQ==","keyName":"web.app.polling_interval","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLWY4MjNlYWFkLWE4ZTEtNGRhYy05YTJlLTBjZWFkMDYzZjliZg==","keyName":"web_bucket","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTBjZWFjZjZiLTg4MzItNGZkZi1hNDk1LTQzNWJlNGRkNWFkOQ==","keyName":"web_distribution_id","isSecret":false,"environmentValue":{"parameterValue":""}}]}}}}}}' + recorded_at: Tue, 27 Apr 2021 14:11:07 GMT - request: method: post uri: https://api.cloudtruth.com/graphql body: encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_149140($organizationId: - ID, $environmentId: ID, $searchTerm: String) {\n viewer {\n organization(id: - $organizationId) {\n parameters(searchTerm: $searchTerm, orderBy: {keyName: - ASC}) {\n nodes {\n id\n keyName\n isSecret\n environmentValue(environmentId: - $environmentId) {\n parameterValue\n }\n }\n }\n }\n }\n}","variables":{"searchTerm":"nothingtoseehere","environmentId":"RW52aXJvbm1lbnQtZjk3MDI1NGEtNGQ0NS00YTA1LWJiYjctOTRjZTdhOGRmODky"},"operationName":"GraphQL__Client__OperationDefinition_149140"}' + string: '{"query":"query GraphQL__Client__OperationDefinition_225620($organizationId: + ID, $environmentId: ID, $projectName: String, $searchTerm: String) {\n viewer + {\n organization(id: $organizationId) {\n project(name: $projectName) + {\n parameters(searchTerm: $searchTerm, orderBy: {keyName: ASC}) {\n nodes + {\n id\n keyName\n isSecret\n environmentValue(environmentId: + $environmentId) {\n parameterValue\n }\n }\n }\n }\n }\n }\n}","variables":{"searchTerm":"nothingtoseehere","environmentId":"RW52aXJvbm1lbnQtZjk3MDI1NGEtNGQ0NS00YTA1LWJiYjctOTRjZTdhOGRmODky"},"operationName":"GraphQL__Client__OperationDefinition_225620"}' headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - application/json User-Agent: - - kubetruth/0.2.0 + - kubetruth/0.3.0 Content-Type: - application/json Authorization: @@ -572,7 +679,7 @@ http_interactions: message: OK headers: Date: - - Wed, 17 Feb 2021 15:58:23 GMT + - Tue, 27 Apr 2021 14:11:13 GMT Content-Type: - application/json; charset=utf-8 Transfer-Encoding: @@ -591,37 +698,38 @@ http_interactions: - none Referrer-Policy: - strict-origin-when-cross-origin + Vary: + - Accept, Origin Etag: - - W/"9bc4e88e90ebd95a0432691447765eec" + - W/"af7fd6d1f268e61fc3a6746c45a73b80" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - 01477650-e647-4a33-b9cc-9156750491f9 + - '079aed05-1e95-4d86-af2b-16e173048f9a' X-Runtime: - - '0.021892' - Vary: - - Origin + - '0.062179' body: encoding: UTF-8 - string: '{"data":{"viewer":{"organization":{"parameters":{"nodes":[]}}}}}' - recorded_at: Wed, 17 Feb 2021 15:58:22 GMT + string: '{"data":{"viewer":{"organization":{"project":{"parameters":{"nodes":[]}}}}}}' + recorded_at: Tue, 27 Apr 2021 14:11:07 GMT - request: method: post uri: https://api.cloudtruth.com/graphql body: encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_149140($organizationId: - ID, $environmentId: ID, $searchTerm: String) {\n viewer {\n organization(id: - $organizationId) {\n parameters(searchTerm: $searchTerm, orderBy: {keyName: - ASC}) {\n nodes {\n id\n keyName\n isSecret\n environmentValue(environmentId: - $environmentId) {\n parameterValue\n }\n }\n }\n }\n }\n}","variables":{"searchTerm":"services","environmentId":"RW52aXJvbm1lbnQtZjk3MDI1NGEtNGQ0NS00YTA1LWJiYjctOTRjZTdhOGRmODky"},"operationName":"GraphQL__Client__OperationDefinition_149140"}' + string: '{"query":"query GraphQL__Client__OperationDefinition_225620($organizationId: + ID, $environmentId: ID, $projectName: String, $searchTerm: String) {\n viewer + {\n organization(id: $organizationId) {\n project(name: $projectName) + {\n parameters(searchTerm: $searchTerm, orderBy: {keyName: ASC}) {\n nodes + {\n id\n keyName\n isSecret\n environmentValue(environmentId: + $environmentId) {\n parameterValue\n }\n }\n }\n }\n }\n }\n}","variables":{"searchTerm":"services","environmentId":"RW52aXJvbm1lbnQtZjk3MDI1NGEtNGQ0NS00YTA1LWJiYjctOTRjZTdhOGRmODky"},"operationName":"GraphQL__Client__OperationDefinition_225620"}' headers: Accept-Encoding: - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Accept: - application/json User-Agent: - - kubetruth/0.2.0 + - kubetruth/0.3.0 Content-Type: - application/json Authorization: @@ -632,7 +740,7 @@ http_interactions: message: OK headers: Date: - - Wed, 17 Feb 2021 15:58:23 GMT + - Tue, 27 Apr 2021 14:11:13 GMT Content-Type: - application/json; charset=utf-8 Transfer-Encoding: @@ -651,18 +759,18 @@ http_interactions: - none Referrer-Policy: - strict-origin-when-cross-origin + Vary: + - Accept, Origin Etag: - - W/"f0d5da2a22fb2755e4d6e762c6c447a5" + - W/"e20da6a637ca60cb2811b25a877f7089" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - f3de6039-6b0b-46c5-bee0-c8e074228f0e + - 9970702e-a937-4910-861c-91593e946b65 X-Runtime: - - '0.024373' - Vary: - - Origin + - '0.046607' body: encoding: UTF-8 - string: '{"data":{"viewer":{"organization":{"parameters":{"nodes":[{"id":"UGFyYW1ldGVyLWE1ODZlY2I3LWMxMzQtNDA5Yi05ZTBiLTU1Yzc1MGIyZDc0MA==","keyName":"deploy.services.kubecfg","isSecret":false,"environmentValue":{"parameterValue":""}}]}}}}}' - recorded_at: Wed, 17 Feb 2021 15:58:22 GMT + string: '{"data":{"viewer":{"organization":{"project":{"parameters":{"nodes":[{"id":"UGFyYW1ldGVyLWE1ODZlY2I3LWMxMzQtNDA5Yi05ZTBiLTU1Yzc1MGIyZDc0MA==","keyName":"deploy.services.kubecfg","isSecret":false,"environmentValue":{"parameterValue":""}}]}}}}}}' + recorded_at: Tue, 27 Apr 2021 14:11:07 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/CtApi/_projects/gets_projects.yml b/spec/fixtures/vcr/CtApi/_projects/gets_projects.yml new file mode 100644 index 0000000..5a43674 --- /dev/null +++ b/spec/fixtures/vcr/CtApi/_projects/gets_projects.yml @@ -0,0 +1,593 @@ +--- +http_interactions: +- request: + method: post + uri: https://api.cloudtruth.com/graphql + body: + encoding: UTF-8 + string: '{"query":"query IntrospectionQuery {\n __schema {\n queryType {\n name\n }\n mutationType + {\n name\n }\n subscriptionType {\n name\n }\n types + {\n ...FullType\n }\n directives {\n name\n description\n locations\n args + {\n ...InputValue\n }\n }\n }\n}\n\nfragment FullType on __Type + {\n kind\n name\n description\n fields(includeDeprecated: true) {\n name\n description\n args + {\n ...InputValue\n }\n type {\n ...TypeRef\n }\n isDeprecated\n deprecationReason\n }\n inputFields + {\n ...InputValue\n }\n interfaces {\n ...TypeRef\n }\n enumValues(includeDeprecated: + true) {\n name\n description\n isDeprecated\n deprecationReason\n }\n possibleTypes + {\n ...TypeRef\n }\n}\n\nfragment InputValue on __InputValue {\n name\n description\n type + {\n ...TypeRef\n }\n defaultValue\n}\n\nfragment TypeRef on __Type {\n kind\n name\n ofType + {\n kind\n name\n ofType {\n kind\n name\n ofType + {\n kind\n name\n ofType {\n kind\n name\n ofType + {\n kind\n name\n ofType {\n kind\n name\n ofType + {\n kind\n name\n }\n }\n }\n }\n }\n }\n }\n}","operationName":"IntrospectionQuery"}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - application/json + User-Agent: + - kubetruth/0.3.0 + Content-Type: + - application/json + Authorization: + - Bearer + response: + status: + code: 200 + message: OK + headers: + Date: + - Tue, 27 Apr 2021 14:10:52 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Connection: + - keep-alive + X-Frame-Options: + - SAMEORIGIN + X-Xss-Protection: + - 1; mode=block + X-Content-Type-Options: + - nosniff + X-Download-Options: + - noopen + X-Permitted-Cross-Domain-Policies: + - none + Referrer-Policy: + - strict-origin-when-cross-origin + Vary: + - Accept, Origin + Etag: + - W/"75ec2b3ba6f57bc364b5a38b5e8f606b" + Cache-Control: + - max-age=0, private, must-revalidate + X-Request-Id: + - 9b02192a-3ad3-478e-b6eb-e708bc2f66cf + X-Runtime: + - '0.940968' + body: + encoding: UTF-8 + string: '{"data":{"__schema":{"queryType":{"name":"Query"},"mutationType":{"name":"Mutation"},"subscriptionType":null,"types":[{"kind":"OBJECT","name":"AuditLogSnapshot","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fileUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SnapshotStatusEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditLogSnapshotConnection","description":"The + connection type for AuditLogSnapshot.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AuditLogSnapshotEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditLogSnapshotEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegration","description":null,"fields":[{"name":"accountId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"enabledServices","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsIntegrationEnum","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"externalId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"roleName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegrationConnection","description":"The + connection type for AwsIntegration.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegrationEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegration","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegrationEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AwsIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AwsIntegrationEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"S3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SSM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SECRETS_MANAGER","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INTERFACE","name":"BasePolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"InvitationPolicy","ofType":null},{"kind":"OBJECT","name":"NodePolicy","ofType":null},{"kind":"OBJECT","name":"OrganizationPolicy","ofType":null}]},{"kind":"SCALAR","name":"Boolean","description":"Represents + `true` or `false` values.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateAuditLogSnapshotInput","description":"Autogenerated + input type of CreateAuditLogSnapshot","fields":null,"inputFields":[{"name":"organizationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateAuditLogSnapshotPayload","description":"Autogenerated + return type of CreateAuditLogSnapshot","fields":[{"name":"auditLogSnapshot","description":null,"args":[],"type":{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateAwsIntegrationInput","description":"Autogenerated + input type of CreateAwsIntegration","fields":null,"inputFields":[{"name":"accountId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"accountName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"roleName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"enabledServices","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsIntegrationEnum","ofType":null}}},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateAwsIntegrationPayload","description":"Autogenerated + return type of CreateAwsIntegration","fields":[{"name":"awsIntegration","description":null,"args":[],"type":{"kind":"OBJECT","name":"AwsIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateEnvironmentInput","description":"Autogenerated + input type of CreateEnvironment","fields":null,"inputFields":[{"name":"parentId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateEnvironmentPayload","description":"Autogenerated + return type of CreateEnvironment","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environment","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateGithubSetupTokenInput","description":"Autogenerated + input type of CreateGithubSetupToken","fields":null,"inputFields":[{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateGithubSetupTokenPayload","description":"Autogenerated + return type of CreateGithubSetupToken","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"installationUrl","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"token","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateInvitationInput","description":"Autogenerated + input type of CreateInvitation","fields":null,"inputFields":[{"name":"memberEmail","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"memberRole","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateInvitationPayload","description":"Autogenerated + return type of CreateInvitation","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"invitation","description":null,"args":[],"type":{"kind":"OBJECT","name":"Invitation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateOrganizationInput","description":"Autogenerated + input type of CreateOrganization","fields":null,"inputFields":[{"name":"eaorgid","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateOrganizationPayload","description":"Autogenerated + return type of CreateOrganization","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateParameterInput","description":"Autogenerated + input type of CreateParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateParameterPayload","description":"Autogenerated + return type of CreateParameter","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreatePersonalAccessTokenInput","description":"Autogenerated + input type of CreatePersonalAccessToken","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"writeAccess","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreatePersonalAccessTokenPayload","description":"Autogenerated + return type of CreatePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateProjectInput","description":"Autogenerated + input type of CreateProject","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateProjectPayload","description":"Autogenerated + return type of CreateProject","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateServiceAccountInput","description":"Autogenerated + input type of CreateServiceAccount","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateServiceAccountPayload","description":"Autogenerated + return type of CreateServiceAccount","fields":[{"name":"apiToken","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"serviceAccount","description":null,"args":[],"type":{"kind":"OBJECT","name":"ServiceAccount","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","description":"Autogenerated + input type of CreateTemplate","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateTemplatePayload","description":"Autogenerated + return type of CreateTemplate","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteAllPersonalAccessTokensInput","description":"Autogenerated + input type of DeleteAllPersonalAccessTokens","fields":null,"inputFields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteAllPersonalAccessTokensPayload","description":"Autogenerated + return type of DeleteAllPersonalAccessTokens","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteAwsIntegrationInput","description":"Autogenerated + input type of DeleteAwsIntegration","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteAwsIntegrationPayload","description":"Autogenerated + return type of DeleteAwsIntegration","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedAwsIntegrationId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteEnvironmentInput","description":"Autogenerated + input type of DeleteEnvironment","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteEnvironmentPayload","description":"Autogenerated + return type of DeleteEnvironment","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedEnvironmentId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteGithubIntegrationInput","description":"Autogenerated + input type of DeleteGithubIntegration","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteGithubIntegrationPayload","description":"Autogenerated + return type of DeleteGithubIntegration","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedGithubIntegrationId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteInvitationInput","description":"Autogenerated + input type of DeleteInvitation","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteInvitationPayload","description":"Autogenerated + return type of DeleteInvitation","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedInvitationId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteMembershipInput","description":"Autogenerated + input type of DeleteMembership","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteMembershipPayload","description":"Autogenerated + return type of DeleteMembership","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedMembershipId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","description":"Autogenerated + input type of DeleteParameter","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteParameterPayload","description":"Autogenerated + return type of DeleteParameter","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedParameterId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeletePersonalAccessTokenInput","description":"Autogenerated + input type of DeletePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeletePersonalAccessTokenPayload","description":"Autogenerated + return type of DeletePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedPersonalAccessTokenId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteProjectInput","description":"Autogenerated + input type of DeleteProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteProjectPayload","description":"Autogenerated + return type of DeleteProject","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteServiceAccountInput","description":"Autogenerated + input type of DeleteServiceAccount","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteServiceAccountPayload","description":"Autogenerated + return type of DeleteServiceAccount","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedServiceAccountId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","description":"Autogenerated + input type of DeleteTemplate","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteTemplatePayload","description":"Autogenerated + return type of DeleteTemplate","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedTemplateId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Environment","description":null,"fields":[{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"children","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[{"name":"parameterId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterValue","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentConnection","description":"The + connection type for Environment.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentValue","description":null,"fields":[{"name":"environment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integrationFile","description":null,"args":[],"type":{"kind":"OBJECT","name":"IntegrationFile","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"jmesPath","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EnvironmentValueTypeEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"EnvironmentValueTypeEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"STATIC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DYNAMIC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ExportParameters","description":null,"fields":[{"name":"evaluated","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ExportParametersFormatEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"DOCKER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DOTENV","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SHELL","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ExportParametersOptions","description":null,"fields":null,"inputFields":[{"name":"secrets","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"export","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"startsWith","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"endsWith","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"contains","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","description":"Autogenerated + input type of FakeOrganizationData","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FakeOrganizationDataPayload","description":"Autogenerated + return type of FakeOrganizationData","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegration","description":null,"fields":[{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"availableRepositoryCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"installationUrl","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegrationConnection","description":"The + connection type for GithubIntegration.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"GithubIntegrationEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"GithubIntegration","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegrationEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"GithubIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"HasPolicy","description":null,"fields":[{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"BasePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"ServiceAccount","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null}]},{"kind":"SCALAR","name":"ID","description":"Represents + a unique identifier that is Base64 obfuscated. It is often used to refetch + an object or as key for a cache. The ID type appears in a JSON response as + a String; however, it is not intended to be human-readable. When expected + as an input type, any string (such as `\"VXNlci0xMA==\"`) or integer (such + as `4`) input value will be accepted as an ID.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"ISO8601DateTime","description":"An + ISO 8601-encoded datetime","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"IdComparisonExp","description":null,"fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"Int","description":"Represents + non-fractional signed whole numeric values. Int can represent values between + -(2^31) and 2^31 - 1.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"IntegrationFile","description":null,"fields":[{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"body","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"json","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"mimeType","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"IntegrationFileTree","description":null,"fields":[{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"IntegrationNode","description":"Service + base integration nodes (AWS, GitHub)","fields":[{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"ID + of the object.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"IntegrationFile","ofType":null},{"kind":"OBJECT","name":"IntegrationFileTree","ofType":null},{"kind":"OBJECT","name":"IntegrationServiceTree","ofType":null}]},{"kind":"OBJECT","name":"IntegrationServiceTree","description":null,"fields":[{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"IntegrationStateEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"CONNECTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ERRORED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PENDING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MISSING","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INTERFACE","name":"IntegrationTree","description":"Service + base integration nodes (AWS, GitHub)","fields":[{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"ID + of the object.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"IntegrationFileTree","ofType":null},{"kind":"OBJECT","name":"IntegrationServiceTree","ofType":null}]},{"kind":"OBJECT","name":"IntegrationTreeConnection","description":"The + connection type for IntegrationTree.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"IntegrationTreeEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"IntegrationTreeEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Invitation","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberEmail","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberRole","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationPolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InvitationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationConnection","description":"The + connection type for Invitation.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Invitation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Invitation","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationPolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resend","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"InvitationStateEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ACCEPTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DECLINED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PENDING","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Membership","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pictureUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MembershipConnection","description":"The + connection type for Membership.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Membership","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MembershipEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"MembershipRoleEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ADMIN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CONTRIBUTOR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VIEWER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"OWNER","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Mutation","description":null,"fields":[{"name":"createAuditLogSnapshot","description":null,"args":[{"name":"input","description":"Parameters + for CreateAuditLogSnapshot","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAuditLogSnapshotInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAuditLogSnapshotPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters + for CreateAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createEnvironment","description":null,"args":[{"name":"input","description":"Parameters + for CreateEnvironment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createGithubSetupToken","description":null,"args":[{"name":"input","description":"Parameters + for CreateGithubSetupToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateGithubSetupTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateGithubSetupTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createInvitation","description":null,"args":[{"name":"input","description":"Parameters + for CreateInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createOrganization","description":null,"args":[{"name":"input","description":"Parameters + for CreateOrganization","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrganizationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateOrganizationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createParameter","description":null,"args":[{"name":"input","description":"Parameters + for CreateParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createPersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for CreatePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createProject","description":null,"args":[{"name":"input","description":"Parameters + for CreateProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createServiceAccount","description":null,"args":[{"name":"input","description":"Parameters + for CreateServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateServiceAccountPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createTemplate","description":null,"args":[{"name":"input","description":"Parameters + for CreateTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAllPersonalAccessTokens","description":null,"args":[{"name":"input","description":"Parameters + for DeleteAllPersonalAccessTokens","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAllPersonalAccessTokensInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAllPersonalAccessTokensPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters + for DeleteAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteEnvironment","description":null,"args":[{"name":"input","description":"Parameters + for DeleteEnvironment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteGithubIntegration","description":null,"args":[{"name":"input","description":"Parameters + for DeleteGithubIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteGithubIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteGithubIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteInvitation","description":null,"args":[{"name":"input","description":"Parameters + for DeleteInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteMembership","description":null,"args":[{"name":"input","description":"Parameters + for DeleteMembership","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteMembershipInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteMembershipPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteParameter","description":null,"args":[{"name":"input","description":"Parameters + for DeleteParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deletePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for DeletePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeletePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeletePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteProject","description":null,"args":[{"name":"input","description":"Parameters + for DeleteProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteServiceAccount","description":null,"args":[{"name":"input","description":"Parameters + for DeleteServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteServiceAccountPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteTemplate","description":null,"args":[{"name":"input","description":"Parameters + for DeleteTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fakeOrganizationData","description":null,"args":[{"name":"input","description":"Parameters + for FakeOrganizationData","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"FakeOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refreshServiceAccountApiToken","description":null,"args":[{"name":"input","description":"Parameters + for RefreshServiceAccountApiToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RefreshServiceAccountApiTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RefreshServiceAccountApiTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"regeneratePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for RegeneratePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RegeneratePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resendInvitation","description":null,"args":[{"name":"input","description":"Parameters + for ResendInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResendInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResendInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resetOrganizationData","description":null,"args":[{"name":"input","description":"Parameters + for ResetOrganizationData","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResetOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters + for UpdateAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateEnvironment","description":null,"args":[{"name":"input","description":"Parameters + for UpdateEnvironment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateInvitation","description":null,"args":[{"name":"input","description":"Parameters + for UpdateInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateMembership","description":null,"args":[{"name":"input","description":"Parameters + for UpdateMembership","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateMembershipInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateMembershipPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateOrganization","description":null,"args":[{"name":"input","description":"Parameters + for UpdateOrganization","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateOrganizationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateOrganizationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateParameter","description":null,"args":[{"name":"input","description":"Parameters + for UpdateParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for UpdatePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateProject","description":null,"args":[{"name":"input","description":"Parameters + for UpdateProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateTemplate","description":null,"args":[{"name":"input","description":"Parameters + for UpdateTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"upsertParameter","description":null,"args":[{"name":"input","description":"Parameters + for UpsertParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpsertParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpsertParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"Node","description":"An + object with an ID.","fields":[{"name":"id","description":"ID of the object.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"IntegrationFile","ofType":null},{"kind":"OBJECT","name":"IntegrationFileTree","ofType":null},{"kind":"OBJECT","name":"IntegrationServiceTree","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"ServiceAccount","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null},{"kind":"OBJECT","name":"Viewer","ofType":null}]},{"kind":"OBJECT","name":"NodePolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"OrderByEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DESC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Organization","description":null,"fields":[{"name":"auditLogSnapshots","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AuditLogSnapshotConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"awsIntegrations","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegrationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"defaultProject","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"environment","description":null,"args":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environments","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"evaluateTemplate","description":null,"args":[{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TemplateEvaluation","ofType":null},"isDeprecated":true,"deprecationReason":"Use + project instead."},{"name":"githubIntegrations","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"GithubIntegrationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"integrations","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"IntegrationTreeConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"invitations","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"state","description":"Filter + invitation list by state.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InvitationStateEnum","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberships","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"userType","description":"Optionally + filter by user type.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"orderBy","description":"Sort + order for parameters.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","ofType":null}}},"defaultValue":null},{"name":"searchTerm","description":"Search + over parameter names.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"where","description":"Filter + parameter list.","type":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null},"defaultValue":null},{"name":"keyNames","description":"List + of key names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrganizationPolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projects","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ProjectConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionExpiresAt","description":null,"args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionId","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionPlanId","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionPlanName","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"names","description":"List + of template names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"vaultId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"OrganizationPolicy","description":null,"fields":[{"name":"createEnvironment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createIntegration","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createInvitation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createParameter","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Everything + will go through project in the near future."},{"name":"createProject","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createTemplate","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Everything + will go through the project in the near future."},{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursor","description":null,"fields":[{"name":"cursor","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isCurrent","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageNumber","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursors","description":null,"fields":[{"name":"around","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageCursor","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"first","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"last","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previous","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageInfo","description":"Information + about pagination in a connection.","fields":[{"name":"endCursor","description":"When + paginating forwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasNextPage","description":"When + paginating forwards, are there more items?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasPreviousPage","description":"When + paginating backwards, are there more items?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"startCursor","description":"When + paginating backwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Parameter","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValue","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValues","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"hasDynamicValue","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isSecret","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"keyName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","description":null,"fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"keyName","description":null,"type":{"kind":"INPUT_OBJECT","name":"StringComparisonExp","ofType":null},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"INPUT_OBJECT","name":"IdComparisonExp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterConnection","description":"The + connection type for Parameter.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Parameter","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","description":null,"fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null},{"name":"updatedAt","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterValue","description":null,"fields":[{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessToken","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastUsed","description":null,"args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"writeAccess","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessTokenConnection","description":"The + connection type for PersonalAccessToken.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PersonalAccessTokenEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessTokenEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Project","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"defaultForOrganization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"evaluateTemplate","description":null,"args":[{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TemplateEvaluation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"exportParameters","description":null,"args":[{"name":"format","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ExportParametersFormatEnum","ofType":null}},"defaultValue":null},{"name":"options","description":null,"type":{"kind":"INPUT_OBJECT","name":"ExportParametersOptions","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ExportParameters","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"orderBy","description":"Sort + order for parameters.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","ofType":null}}},"defaultValue":null},{"name":"searchTerm","description":"Search + over parameter names.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"where","description":"Filter + parameter list.","type":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null},"defaultValue":null},{"name":"keyNames","description":"List + of key names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"names","description":"List + of template names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectConnection","description":"The + connection type for Project.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ProjectEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Query","description":null,"fields":[{"name":"node","description":"Fetches + an object given its ID.","args":[{"name":"id","description":"ID of the object.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"INTERFACE","name":"Node","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"Fetches + a list of objects given a list of IDs.","args":[{"name":"ids","description":"IDs + of the objects.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INTERFACE","name":"Node","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RefreshServiceAccountApiTokenInput","description":"Autogenerated + input type of RefreshServiceAccountApiToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RefreshServiceAccountApiTokenPayload","description":"Autogenerated + return type of RefreshServiceAccountApiToken","fields":[{"name":"apiToken","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"serviceAccount","description":null,"args":[],"type":{"kind":"OBJECT","name":"ServiceAccount","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","description":"Autogenerated + input type of RegeneratePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RegeneratePersonalAccessTokenPayload","description":"Autogenerated + return type of RegeneratePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ResendInvitationInput","description":"Autogenerated + input type of ResendInvitation","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ResendInvitationPayload","description":"Autogenerated + return type of ResendInvitation","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"invitation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Invitation","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","description":"Autogenerated + input type of ResetOrganizationData","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ResetOrganizationDataPayload","description":"Autogenerated + return type of ResetOrganizationData","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ServiceAccount","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SnapshotStatusEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"REQUESTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PROCESSING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AVAILABLE","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"String","description":"Represents + textual data as UTF-8 character sequences. This type is most often used by + GraphQL to represent free-form human-readable text.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"StringComparisonExp","description":null,"fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Template","description":null,"fields":[{"name":"body","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"evaluated","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":true,"deprecationReason":"Use + project instead."},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TemplateConnection","description":"The + connection type for Template.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Template","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TemplateEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TemplateEvaluation","description":null,"fields":[{"name":"body","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"evaluated","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateAwsIntegrationInput","description":"Autogenerated + input type of UpdateAwsIntegration","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"accountId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"roleName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"enabledServices","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsIntegrationEnum","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateAwsIntegrationPayload","description":"Autogenerated + return type of UpdateAwsIntegration","fields":[{"name":"awsIntegration","description":null,"args":[],"type":{"kind":"OBJECT","name":"AwsIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateEnvironmentInput","description":"Autogenerated + input type of UpdateEnvironment","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateEnvironmentPayload","description":"Autogenerated + return type of UpdateEnvironment","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environment","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateInvitationInput","description":"Autogenerated + input type of UpdateInvitation","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"state","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InvitationStateEnum","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateInvitationPayload","description":"Autogenerated + return type of UpdateInvitation","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"membership","description":null,"args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateMembershipInput","description":"Autogenerated + input type of UpdateMembership","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateMembershipPayload","description":"Autogenerated + return type of UpdateMembership","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"membership","description":null,"args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateOrganizationInput","description":"Autogenerated + input type of UpdateOrganization","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateOrganizationPayload","description":"Autogenerated + return type of UpdateOrganization","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","description":"Autogenerated + input type of UpdateParameter","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"integrationFileId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"integrationFileFqn","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"jmesPath","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateParameterPayload","description":"Autogenerated + return type of UpdateParameter","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdatePersonalAccessTokenInput","description":"Autogenerated + input type of UpdatePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"writeAccess","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdatePersonalAccessTokenPayload","description":"Autogenerated + return type of UpdatePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateProjectInput","description":"Autogenerated + input type of UpdateProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateProjectPayload","description":"Autogenerated + return type of UpdateProject","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","description":"Autogenerated + input type of UpdateTemplate","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"body","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateTemplatePayload","description":"Autogenerated + return type of UpdateTemplate","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpsertParameterInput","description":"Autogenerated + input type of UpsertParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpsertParameterPayload","description":"Autogenerated + return type of UpsertParameter","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserError","description":"A + user-readable error","fields":[{"name":"message","description":"A description + of the error","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"path","description":"Which + input value this error came from","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Viewer","description":null,"fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberships","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[{"name":"id","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessTokens","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PersonalAccessTokenConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Directive","description":"A + Directive provides a way to describe alternate runtime execution and type + validation behavior in a GraphQL document.\n\nIn some cases, you need to provide + options to alter GraphQL''s execution behavior in ways field arguments will + not suffice, such as conditionally including or skipping a field. Directives + provide this by describing additional information to the executor.","fields":[{"name":"args","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locations","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__DirectiveLocation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"onField","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use + `locations`."},{"name":"onFragment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use + `locations`."},{"name":"onOperation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use + `locations`."}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__DirectiveLocation","description":"A + Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation + describes one such possible adjacencies.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"QUERY","description":"Location + adjacent to a query operation.","isDeprecated":false,"deprecationReason":null},{"name":"MUTATION","description":"Location + adjacent to a mutation operation.","isDeprecated":false,"deprecationReason":null},{"name":"SUBSCRIPTION","description":"Location + adjacent to a subscription operation.","isDeprecated":false,"deprecationReason":null},{"name":"FIELD","description":"Location + adjacent to a field.","isDeprecated":false,"deprecationReason":null},{"name":"FRAGMENT_DEFINITION","description":"Location + adjacent to a fragment definition.","isDeprecated":false,"deprecationReason":null},{"name":"FRAGMENT_SPREAD","description":"Location + adjacent to a fragment spread.","isDeprecated":false,"deprecationReason":null},{"name":"INLINE_FRAGMENT","description":"Location + adjacent to an inline fragment.","isDeprecated":false,"deprecationReason":null},{"name":"SCHEMA","description":"Location + adjacent to a schema definition.","isDeprecated":false,"deprecationReason":null},{"name":"SCALAR","description":"Location + adjacent to a scalar definition.","isDeprecated":false,"deprecationReason":null},{"name":"OBJECT","description":"Location + adjacent to an object type definition.","isDeprecated":false,"deprecationReason":null},{"name":"FIELD_DEFINITION","description":"Location + adjacent to a field definition.","isDeprecated":false,"deprecationReason":null},{"name":"ARGUMENT_DEFINITION","description":"Location + adjacent to an argument definition.","isDeprecated":false,"deprecationReason":null},{"name":"INTERFACE","description":"Location + adjacent to an interface definition.","isDeprecated":false,"deprecationReason":null},{"name":"UNION","description":"Location + adjacent to a union definition.","isDeprecated":false,"deprecationReason":null},{"name":"ENUM","description":"Location + adjacent to an enum definition.","isDeprecated":false,"deprecationReason":null},{"name":"ENUM_VALUE","description":"Location + adjacent to an enum value definition.","isDeprecated":false,"deprecationReason":null},{"name":"INPUT_OBJECT","description":"Location + adjacent to an input object type definition.","isDeprecated":false,"deprecationReason":null},{"name":"INPUT_FIELD_DEFINITION","description":"Location + adjacent to an input object field definition.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"__EnumValue","description":"One + possible value for a given Enum. Enum values are unique values, not a placeholder + for a string or numeric value. However an Enum value is returned in a JSON + response as a string.","fields":[{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Field","description":"Object + and Interface types are described by a list of Fields, each of which has a + name, potentially a list of arguments, and a return type.","fields":[{"name":"args","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__InputValue","description":"Arguments + provided to Fields or Directives and the input fields of an InputObject are + represented as Input Values which describe their type and optionally a default + value.","fields":[{"name":"defaultValue","description":"A GraphQL-formatted + string representing the default value for this input value.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Schema","description":"A + GraphQL Schema defines the capabilities of a GraphQL server. It exposes all + available types and directives on the server, as well as the entry points + for query, mutation, and subscription operations.","fields":[{"name":"directives","description":"A + list of all directives supported by this server.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Directive","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"mutationType","description":"If + this server supports mutation, the type that mutation operations will be rooted + at.","args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"queryType","description":"The + type that query operations will be rooted at.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionType","description":"If + this server support subscription, the type that subscription operations will + be rooted at.","args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"types","description":"A + list of all types supported by this server.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Type","description":"The + fundamental unit of any GraphQL Schema is the type. There are many kinds of + types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on + the kind of a type, certain fields describe information about that type. Scalar + types provide no information beyond a name and description, while Enum types + provide their values. Object and Interface types provide the fields they describe. + Abstract types, Union and Interface, provide the Object types possible at + runtime. List and NonNull types compose other types.","fields":[{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"enumValues","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__EnumValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"fields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Field","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"inputFields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"interfaces","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__TypeKind","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"ofType","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"possibleTypes","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__TypeKind","description":"An + enum describing what kind of type a given `__Type` is.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"SCALAR","description":"Indicates + this type is a scalar.","isDeprecated":false,"deprecationReason":null},{"name":"OBJECT","description":"Indicates + this type is an object. `fields` and `interfaces` are valid fields.","isDeprecated":false,"deprecationReason":null},{"name":"INTERFACE","description":"Indicates + this type is an interface. `fields` and `possibleTypes` are valid fields.","isDeprecated":false,"deprecationReason":null},{"name":"UNION","description":"Indicates + this type is a union. `possibleTypes` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"ENUM","description":"Indicates + this type is an enum. `enumValues` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"INPUT_OBJECT","description":"Indicates + this type is an input object. `inputFields` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"LIST","description":"Indicates + this type is a list. `ofType` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"NON_NULL","description":"Indicates + this type is a non-null. `ofType` is a valid field.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null}],"directives":[{"name":"include","description":"Directs + the executor to include this field or fragment only when the `if` argument + is true.","locations":["FIELD","FRAGMENT_SPREAD","INLINE_FRAGMENT"],"args":[{"name":"if","description":"Included + when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"skip","description":"Directs + the executor to skip this field or fragment when the `if` argument is true.","locations":["FIELD","FRAGMENT_SPREAD","INLINE_FRAGMENT"],"args":[{"name":"if","description":"Skipped + when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"deprecated","description":"Marks + an element of a GraphQL schema as no longer supported.","locations":["FIELD_DEFINITION","ENUM_VALUE","ARGUMENT_DEFINITION","INPUT_FIELD_DEFINITION"],"args":[{"name":"reason","description":"Explains + why this element was deprecated, usually also including a suggestion for how + to access supported similar data. Formatted in [Markdown](https://daringfireball.net/projects/markdown/).","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"\"No + longer supported\""}]}]}}}' + recorded_at: Tue, 27 Apr 2021 14:10:46 GMT +- request: + method: post + uri: https://api.cloudtruth.com/graphql + body: + encoding: UTF-8 + string: '{"query":"query GraphQL__Client__OperationDefinition_122440($organizationId: + ID) {\n viewer {\n organization(id: $organizationId) {\n projects + {\n nodes {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_122440"}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - application/json + User-Agent: + - kubetruth/0.3.0 + Content-Type: + - application/json + Authorization: + - Bearer + response: + status: + code: 200 + message: OK + headers: + Date: + - Tue, 27 Apr 2021 14:10:53 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Connection: + - keep-alive + X-Frame-Options: + - SAMEORIGIN + X-Xss-Protection: + - 1; mode=block + X-Content-Type-Options: + - nosniff + X-Download-Options: + - noopen + X-Permitted-Cross-Domain-Policies: + - none + Referrer-Policy: + - strict-origin-when-cross-origin + Vary: + - Accept, Origin + Etag: + - W/"9394974122ab13b12feb7bda1fc8fc59" + Cache-Control: + - max-age=0, private, must-revalidate + X-Request-Id: + - 60dfa6c9-deaa-4ff4-b244-db64f1bbe22d + X-Runtime: + - '0.022229' + body: + encoding: UTF-8 + string: '{"data":{"viewer":{"organization":{"projects":{"nodes":[{"id":"UHJvamVjdC1hMmUzMjgyYi0wMWE5LTRiMjEtOGJlMy04MDcyNzBiZWQ1MzQ=","name":"default"},{"id":"UHJvamVjdC1hMWRlNDZhMS0yNjA1LTQ5NjYtOTVjMC0wYWRmZDgxNDBhMzA=","name":"service"},{"id":"UHJvamVjdC04ZWRjNGI2NC0xZTdjLTRmZGMtOWU5Mi1iY2IyMWNlZWYyNmI=","name":"ops"},{"id":"UHJvamVjdC01ZDFmNjUwNC0wNTkzLTQ5ZGEtYjlkNi00ZTQ4YmUwMDExNmQ=","name":"web"}]}}}}}' + recorded_at: Tue, 27 Apr 2021 14:10:47 GMT +recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/CtApi/_projects/uses_organization_to_get_projects.yml b/spec/fixtures/vcr/CtApi/_projects/uses_organization_to_get_projects.yml new file mode 100644 index 0000000..97ddec1 --- /dev/null +++ b/spec/fixtures/vcr/CtApi/_projects/uses_organization_to_get_projects.yml @@ -0,0 +1,651 @@ +--- +http_interactions: +- request: + method: post + uri: https://api.cloudtruth.com/graphql + body: + encoding: UTF-8 + string: '{"query":"query IntrospectionQuery {\n __schema {\n queryType {\n name\n }\n mutationType + {\n name\n }\n subscriptionType {\n name\n }\n types + {\n ...FullType\n }\n directives {\n name\n description\n locations\n args + {\n ...InputValue\n }\n }\n }\n}\n\nfragment FullType on __Type + {\n kind\n name\n description\n fields(includeDeprecated: true) {\n name\n description\n args + {\n ...InputValue\n }\n type {\n ...TypeRef\n }\n isDeprecated\n deprecationReason\n }\n inputFields + {\n ...InputValue\n }\n interfaces {\n ...TypeRef\n }\n enumValues(includeDeprecated: + true) {\n name\n description\n isDeprecated\n deprecationReason\n }\n possibleTypes + {\n ...TypeRef\n }\n}\n\nfragment InputValue on __InputValue {\n name\n description\n type + {\n ...TypeRef\n }\n defaultValue\n}\n\nfragment TypeRef on __Type {\n kind\n name\n ofType + {\n kind\n name\n ofType {\n kind\n name\n ofType + {\n kind\n name\n ofType {\n kind\n name\n ofType + {\n kind\n name\n ofType {\n kind\n name\n ofType + {\n kind\n name\n }\n }\n }\n }\n }\n }\n }\n}","operationName":"IntrospectionQuery"}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - application/json + User-Agent: + - kubetruth/0.3.0 + Content-Type: + - application/json + Authorization: + - Bearer + response: + status: + code: 200 + message: OK + headers: + Date: + - Tue, 27 Apr 2021 14:10:54 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Connection: + - keep-alive + X-Frame-Options: + - SAMEORIGIN + X-Xss-Protection: + - 1; mode=block + X-Content-Type-Options: + - nosniff + X-Download-Options: + - noopen + X-Permitted-Cross-Domain-Policies: + - none + Referrer-Policy: + - strict-origin-when-cross-origin + Vary: + - Accept, Origin + Etag: + - W/"75ec2b3ba6f57bc364b5a38b5e8f606b" + Cache-Control: + - max-age=0, private, must-revalidate + X-Request-Id: + - e5755842-d01d-492b-8d73-a7ddfcab0fb6 + X-Runtime: + - '1.428923' + body: + encoding: UTF-8 + string: '{"data":{"__schema":{"queryType":{"name":"Query"},"mutationType":{"name":"Mutation"},"subscriptionType":null,"types":[{"kind":"OBJECT","name":"AuditLogSnapshot","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fileUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SnapshotStatusEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditLogSnapshotConnection","description":"The + connection type for AuditLogSnapshot.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AuditLogSnapshotEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditLogSnapshotEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegration","description":null,"fields":[{"name":"accountId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"enabledServices","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsIntegrationEnum","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"externalId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"roleName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegrationConnection","description":"The + connection type for AwsIntegration.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegrationEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegration","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegrationEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AwsIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AwsIntegrationEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"S3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SSM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SECRETS_MANAGER","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INTERFACE","name":"BasePolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"InvitationPolicy","ofType":null},{"kind":"OBJECT","name":"NodePolicy","ofType":null},{"kind":"OBJECT","name":"OrganizationPolicy","ofType":null}]},{"kind":"SCALAR","name":"Boolean","description":"Represents + `true` or `false` values.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateAuditLogSnapshotInput","description":"Autogenerated + input type of CreateAuditLogSnapshot","fields":null,"inputFields":[{"name":"organizationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateAuditLogSnapshotPayload","description":"Autogenerated + return type of CreateAuditLogSnapshot","fields":[{"name":"auditLogSnapshot","description":null,"args":[],"type":{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateAwsIntegrationInput","description":"Autogenerated + input type of CreateAwsIntegration","fields":null,"inputFields":[{"name":"accountId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"accountName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"roleName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"enabledServices","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsIntegrationEnum","ofType":null}}},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateAwsIntegrationPayload","description":"Autogenerated + return type of CreateAwsIntegration","fields":[{"name":"awsIntegration","description":null,"args":[],"type":{"kind":"OBJECT","name":"AwsIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateEnvironmentInput","description":"Autogenerated + input type of CreateEnvironment","fields":null,"inputFields":[{"name":"parentId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateEnvironmentPayload","description":"Autogenerated + return type of CreateEnvironment","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environment","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateGithubSetupTokenInput","description":"Autogenerated + input type of CreateGithubSetupToken","fields":null,"inputFields":[{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateGithubSetupTokenPayload","description":"Autogenerated + return type of CreateGithubSetupToken","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"installationUrl","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"token","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateInvitationInput","description":"Autogenerated + input type of CreateInvitation","fields":null,"inputFields":[{"name":"memberEmail","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"memberRole","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateInvitationPayload","description":"Autogenerated + return type of CreateInvitation","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"invitation","description":null,"args":[],"type":{"kind":"OBJECT","name":"Invitation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateOrganizationInput","description":"Autogenerated + input type of CreateOrganization","fields":null,"inputFields":[{"name":"eaorgid","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateOrganizationPayload","description":"Autogenerated + return type of CreateOrganization","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateParameterInput","description":"Autogenerated + input type of CreateParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateParameterPayload","description":"Autogenerated + return type of CreateParameter","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreatePersonalAccessTokenInput","description":"Autogenerated + input type of CreatePersonalAccessToken","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"writeAccess","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreatePersonalAccessTokenPayload","description":"Autogenerated + return type of CreatePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateProjectInput","description":"Autogenerated + input type of CreateProject","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateProjectPayload","description":"Autogenerated + return type of CreateProject","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateServiceAccountInput","description":"Autogenerated + input type of CreateServiceAccount","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateServiceAccountPayload","description":"Autogenerated + return type of CreateServiceAccount","fields":[{"name":"apiToken","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"serviceAccount","description":null,"args":[],"type":{"kind":"OBJECT","name":"ServiceAccount","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","description":"Autogenerated + input type of CreateTemplate","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateTemplatePayload","description":"Autogenerated + return type of CreateTemplate","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteAllPersonalAccessTokensInput","description":"Autogenerated + input type of DeleteAllPersonalAccessTokens","fields":null,"inputFields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteAllPersonalAccessTokensPayload","description":"Autogenerated + return type of DeleteAllPersonalAccessTokens","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteAwsIntegrationInput","description":"Autogenerated + input type of DeleteAwsIntegration","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteAwsIntegrationPayload","description":"Autogenerated + return type of DeleteAwsIntegration","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedAwsIntegrationId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteEnvironmentInput","description":"Autogenerated + input type of DeleteEnvironment","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteEnvironmentPayload","description":"Autogenerated + return type of DeleteEnvironment","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedEnvironmentId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteGithubIntegrationInput","description":"Autogenerated + input type of DeleteGithubIntegration","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteGithubIntegrationPayload","description":"Autogenerated + return type of DeleteGithubIntegration","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedGithubIntegrationId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteInvitationInput","description":"Autogenerated + input type of DeleteInvitation","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteInvitationPayload","description":"Autogenerated + return type of DeleteInvitation","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedInvitationId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteMembershipInput","description":"Autogenerated + input type of DeleteMembership","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteMembershipPayload","description":"Autogenerated + return type of DeleteMembership","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedMembershipId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","description":"Autogenerated + input type of DeleteParameter","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteParameterPayload","description":"Autogenerated + return type of DeleteParameter","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedParameterId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeletePersonalAccessTokenInput","description":"Autogenerated + input type of DeletePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeletePersonalAccessTokenPayload","description":"Autogenerated + return type of DeletePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedPersonalAccessTokenId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteProjectInput","description":"Autogenerated + input type of DeleteProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteProjectPayload","description":"Autogenerated + return type of DeleteProject","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteServiceAccountInput","description":"Autogenerated + input type of DeleteServiceAccount","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteServiceAccountPayload","description":"Autogenerated + return type of DeleteServiceAccount","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedServiceAccountId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","description":"Autogenerated + input type of DeleteTemplate","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteTemplatePayload","description":"Autogenerated + return type of DeleteTemplate","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedTemplateId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Environment","description":null,"fields":[{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"children","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[{"name":"parameterId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterValue","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentConnection","description":"The + connection type for Environment.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentValue","description":null,"fields":[{"name":"environment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integrationFile","description":null,"args":[],"type":{"kind":"OBJECT","name":"IntegrationFile","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"jmesPath","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EnvironmentValueTypeEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"EnvironmentValueTypeEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"STATIC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DYNAMIC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ExportParameters","description":null,"fields":[{"name":"evaluated","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ExportParametersFormatEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"DOCKER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DOTENV","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SHELL","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ExportParametersOptions","description":null,"fields":null,"inputFields":[{"name":"secrets","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"export","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"startsWith","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"endsWith","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"contains","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","description":"Autogenerated + input type of FakeOrganizationData","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FakeOrganizationDataPayload","description":"Autogenerated + return type of FakeOrganizationData","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegration","description":null,"fields":[{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"availableRepositoryCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"installationUrl","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegrationConnection","description":"The + connection type for GithubIntegration.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"GithubIntegrationEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"GithubIntegration","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegrationEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"GithubIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"HasPolicy","description":null,"fields":[{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"BasePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"ServiceAccount","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null}]},{"kind":"SCALAR","name":"ID","description":"Represents + a unique identifier that is Base64 obfuscated. It is often used to refetch + an object or as key for a cache. The ID type appears in a JSON response as + a String; however, it is not intended to be human-readable. When expected + as an input type, any string (such as `\"VXNlci0xMA==\"`) or integer (such + as `4`) input value will be accepted as an ID.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"ISO8601DateTime","description":"An + ISO 8601-encoded datetime","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"IdComparisonExp","description":null,"fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"Int","description":"Represents + non-fractional signed whole numeric values. Int can represent values between + -(2^31) and 2^31 - 1.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"IntegrationFile","description":null,"fields":[{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"body","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"json","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"mimeType","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"IntegrationFileTree","description":null,"fields":[{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"IntegrationNode","description":"Service + base integration nodes (AWS, GitHub)","fields":[{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"ID + of the object.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"IntegrationFile","ofType":null},{"kind":"OBJECT","name":"IntegrationFileTree","ofType":null},{"kind":"OBJECT","name":"IntegrationServiceTree","ofType":null}]},{"kind":"OBJECT","name":"IntegrationServiceTree","description":null,"fields":[{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"IntegrationStateEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"CONNECTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ERRORED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PENDING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"MISSING","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INTERFACE","name":"IntegrationTree","description":"Service + base integration nodes (AWS, GitHub)","fields":[{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":"ID + of the object.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"IntegrationFileTree","ofType":null},{"kind":"OBJECT","name":"IntegrationServiceTree","ofType":null}]},{"kind":"OBJECT","name":"IntegrationTreeConnection","description":"The + connection type for IntegrationTree.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"IntegrationTreeEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"IntegrationTreeEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Invitation","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberEmail","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberRole","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationPolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InvitationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationConnection","description":"The + connection type for Invitation.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Invitation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Invitation","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationPolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resend","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"InvitationStateEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ACCEPTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DECLINED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PENDING","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Membership","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pictureUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MembershipConnection","description":"The + connection type for Membership.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Membership","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MembershipEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"MembershipRoleEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ADMIN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CONTRIBUTOR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VIEWER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"OWNER","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Mutation","description":null,"fields":[{"name":"createAuditLogSnapshot","description":null,"args":[{"name":"input","description":"Parameters + for CreateAuditLogSnapshot","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAuditLogSnapshotInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAuditLogSnapshotPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters + for CreateAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createEnvironment","description":null,"args":[{"name":"input","description":"Parameters + for CreateEnvironment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createGithubSetupToken","description":null,"args":[{"name":"input","description":"Parameters + for CreateGithubSetupToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateGithubSetupTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateGithubSetupTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createInvitation","description":null,"args":[{"name":"input","description":"Parameters + for CreateInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createOrganization","description":null,"args":[{"name":"input","description":"Parameters + for CreateOrganization","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrganizationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateOrganizationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createParameter","description":null,"args":[{"name":"input","description":"Parameters + for CreateParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createPersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for CreatePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createProject","description":null,"args":[{"name":"input","description":"Parameters + for CreateProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createServiceAccount","description":null,"args":[{"name":"input","description":"Parameters + for CreateServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateServiceAccountPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createTemplate","description":null,"args":[{"name":"input","description":"Parameters + for CreateTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAllPersonalAccessTokens","description":null,"args":[{"name":"input","description":"Parameters + for DeleteAllPersonalAccessTokens","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAllPersonalAccessTokensInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAllPersonalAccessTokensPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters + for DeleteAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteEnvironment","description":null,"args":[{"name":"input","description":"Parameters + for DeleteEnvironment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteGithubIntegration","description":null,"args":[{"name":"input","description":"Parameters + for DeleteGithubIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteGithubIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteGithubIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteInvitation","description":null,"args":[{"name":"input","description":"Parameters + for DeleteInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteMembership","description":null,"args":[{"name":"input","description":"Parameters + for DeleteMembership","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteMembershipInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteMembershipPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteParameter","description":null,"args":[{"name":"input","description":"Parameters + for DeleteParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deletePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for DeletePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeletePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeletePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteProject","description":null,"args":[{"name":"input","description":"Parameters + for DeleteProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteServiceAccount","description":null,"args":[{"name":"input","description":"Parameters + for DeleteServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteServiceAccountPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteTemplate","description":null,"args":[{"name":"input","description":"Parameters + for DeleteTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fakeOrganizationData","description":null,"args":[{"name":"input","description":"Parameters + for FakeOrganizationData","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"FakeOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refreshServiceAccountApiToken","description":null,"args":[{"name":"input","description":"Parameters + for RefreshServiceAccountApiToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RefreshServiceAccountApiTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RefreshServiceAccountApiTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"regeneratePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for RegeneratePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RegeneratePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resendInvitation","description":null,"args":[{"name":"input","description":"Parameters + for ResendInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResendInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResendInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resetOrganizationData","description":null,"args":[{"name":"input","description":"Parameters + for ResetOrganizationData","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResetOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters + for UpdateAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateEnvironment","description":null,"args":[{"name":"input","description":"Parameters + for UpdateEnvironment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateInvitation","description":null,"args":[{"name":"input","description":"Parameters + for UpdateInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateMembership","description":null,"args":[{"name":"input","description":"Parameters + for UpdateMembership","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateMembershipInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateMembershipPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateOrganization","description":null,"args":[{"name":"input","description":"Parameters + for UpdateOrganization","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateOrganizationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateOrganizationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateParameter","description":null,"args":[{"name":"input","description":"Parameters + for UpdateParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for UpdatePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateProject","description":null,"args":[{"name":"input","description":"Parameters + for UpdateProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateTemplate","description":null,"args":[{"name":"input","description":"Parameters + for UpdateTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"upsertParameter","description":null,"args":[{"name":"input","description":"Parameters + for UpsertParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpsertParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpsertParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"Node","description":"An + object with an ID.","fields":[{"name":"id","description":"ID of the object.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"IntegrationFile","ofType":null},{"kind":"OBJECT","name":"IntegrationFileTree","ofType":null},{"kind":"OBJECT","name":"IntegrationServiceTree","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"ServiceAccount","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null},{"kind":"OBJECT","name":"Viewer","ofType":null}]},{"kind":"OBJECT","name":"NodePolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"OrderByEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DESC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Organization","description":null,"fields":[{"name":"auditLogSnapshots","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AuditLogSnapshotConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"awsIntegrations","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegrationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"defaultProject","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"environment","description":null,"args":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environments","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"evaluateTemplate","description":null,"args":[{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TemplateEvaluation","ofType":null},"isDeprecated":true,"deprecationReason":"Use + project instead."},{"name":"githubIntegrations","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"GithubIntegrationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"integrations","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"IntegrationTreeConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"invitations","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"state","description":"Filter + invitation list by state.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InvitationStateEnum","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberships","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"userType","description":"Optionally + filter by user type.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"orderBy","description":"Sort + order for parameters.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","ofType":null}}},"defaultValue":null},{"name":"searchTerm","description":"Search + over parameter names.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"where","description":"Filter + parameter list.","type":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null},"defaultValue":null},{"name":"keyNames","description":"List + of key names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrganizationPolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projects","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ProjectConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionExpiresAt","description":null,"args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionId","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionPlanId","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionPlanName","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"names","description":"List + of template names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"vaultId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"OrganizationPolicy","description":null,"fields":[{"name":"createEnvironment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createIntegration","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createInvitation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createParameter","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Everything + will go through project in the near future."},{"name":"createProject","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createTemplate","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Everything + will go through the project in the near future."},{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursor","description":null,"fields":[{"name":"cursor","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isCurrent","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageNumber","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursors","description":null,"fields":[{"name":"around","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageCursor","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"first","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"last","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previous","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageInfo","description":"Information + about pagination in a connection.","fields":[{"name":"endCursor","description":"When + paginating forwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasNextPage","description":"When + paginating forwards, are there more items?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasPreviousPage","description":"When + paginating backwards, are there more items?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"startCursor","description":"When + paginating backwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Parameter","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValue","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValues","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"hasDynamicValue","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isSecret","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"keyName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","description":null,"fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"keyName","description":null,"type":{"kind":"INPUT_OBJECT","name":"StringComparisonExp","ofType":null},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"INPUT_OBJECT","name":"IdComparisonExp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterConnection","description":"The + connection type for Parameter.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Parameter","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","description":null,"fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null},{"name":"updatedAt","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterValue","description":null,"fields":[{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessToken","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastUsed","description":null,"args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"writeAccess","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessTokenConnection","description":"The + connection type for PersonalAccessToken.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PersonalAccessTokenEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessTokenEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Project","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"defaultForOrganization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"evaluateTemplate","description":null,"args":[{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TemplateEvaluation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"exportParameters","description":null,"args":[{"name":"format","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ExportParametersFormatEnum","ofType":null}},"defaultValue":null},{"name":"options","description":null,"type":{"kind":"INPUT_OBJECT","name":"ExportParametersOptions","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ExportParameters","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"orderBy","description":"Sort + order for parameters.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","ofType":null}}},"defaultValue":null},{"name":"searchTerm","description":"Search + over parameter names.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"where","description":"Filter + parameter list.","type":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null},"defaultValue":null},{"name":"keyNames","description":"List + of key names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"names","description":"List + of template names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectConnection","description":"The + connection type for Project.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ProjectEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Query","description":null,"fields":[{"name":"node","description":"Fetches + an object given its ID.","args":[{"name":"id","description":"ID of the object.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"INTERFACE","name":"Node","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"Fetches + a list of objects given a list of IDs.","args":[{"name":"ids","description":"IDs + of the objects.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INTERFACE","name":"Node","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RefreshServiceAccountApiTokenInput","description":"Autogenerated + input type of RefreshServiceAccountApiToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RefreshServiceAccountApiTokenPayload","description":"Autogenerated + return type of RefreshServiceAccountApiToken","fields":[{"name":"apiToken","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"serviceAccount","description":null,"args":[],"type":{"kind":"OBJECT","name":"ServiceAccount","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","description":"Autogenerated + input type of RegeneratePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RegeneratePersonalAccessTokenPayload","description":"Autogenerated + return type of RegeneratePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ResendInvitationInput","description":"Autogenerated + input type of ResendInvitation","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ResendInvitationPayload","description":"Autogenerated + return type of ResendInvitation","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"invitation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Invitation","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","description":"Autogenerated + input type of ResetOrganizationData","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ResetOrganizationDataPayload","description":"Autogenerated + return type of ResetOrganizationData","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ServiceAccount","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SnapshotStatusEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"REQUESTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PROCESSING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AVAILABLE","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"String","description":"Represents + textual data as UTF-8 character sequences. This type is most often used by + GraphQL to represent free-form human-readable text.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"StringComparisonExp","description":null,"fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Template","description":null,"fields":[{"name":"body","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"evaluated","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":true,"deprecationReason":"Use + project instead."},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TemplateConnection","description":"The + connection type for Template.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Template","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TemplateEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TemplateEvaluation","description":null,"fields":[{"name":"body","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"evaluated","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateAwsIntegrationInput","description":"Autogenerated + input type of UpdateAwsIntegration","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"accountId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"roleName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"enabledServices","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsIntegrationEnum","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateAwsIntegrationPayload","description":"Autogenerated + return type of UpdateAwsIntegration","fields":[{"name":"awsIntegration","description":null,"args":[],"type":{"kind":"OBJECT","name":"AwsIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateEnvironmentInput","description":"Autogenerated + input type of UpdateEnvironment","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateEnvironmentPayload","description":"Autogenerated + return type of UpdateEnvironment","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environment","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateInvitationInput","description":"Autogenerated + input type of UpdateInvitation","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"state","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InvitationStateEnum","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateInvitationPayload","description":"Autogenerated + return type of UpdateInvitation","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"membership","description":null,"args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateMembershipInput","description":"Autogenerated + input type of UpdateMembership","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateMembershipPayload","description":"Autogenerated + return type of UpdateMembership","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"membership","description":null,"args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateOrganizationInput","description":"Autogenerated + input type of UpdateOrganization","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateOrganizationPayload","description":"Autogenerated + return type of UpdateOrganization","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","description":"Autogenerated + input type of UpdateParameter","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"integrationFileId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"integrationFileFqn","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"jmesPath","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateParameterPayload","description":"Autogenerated + return type of UpdateParameter","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdatePersonalAccessTokenInput","description":"Autogenerated + input type of UpdatePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"writeAccess","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdatePersonalAccessTokenPayload","description":"Autogenerated + return type of UpdatePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateProjectInput","description":"Autogenerated + input type of UpdateProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateProjectPayload","description":"Autogenerated + return type of UpdateProject","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","description":"Autogenerated + input type of UpdateTemplate","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"body","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateTemplatePayload","description":"Autogenerated + return type of UpdateTemplate","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpsertParameterInput","description":"Autogenerated + input type of UpsertParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpsertParameterPayload","description":"Autogenerated + return type of UpsertParameter","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserError","description":"A + user-readable error","fields":[{"name":"message","description":"A description + of the error","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"path","description":"Which + input value this error came from","args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Viewer","description":null,"fields":[{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberships","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[{"name":"id","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessTokens","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PersonalAccessTokenConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Directive","description":"A + Directive provides a way to describe alternate runtime execution and type + validation behavior in a GraphQL document.\n\nIn some cases, you need to provide + options to alter GraphQL''s execution behavior in ways field arguments will + not suffice, such as conditionally including or skipping a field. Directives + provide this by describing additional information to the executor.","fields":[{"name":"args","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locations","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__DirectiveLocation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"onField","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use + `locations`."},{"name":"onFragment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use + `locations`."},{"name":"onOperation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use + `locations`."}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__DirectiveLocation","description":"A + Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation + describes one such possible adjacencies.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"QUERY","description":"Location + adjacent to a query operation.","isDeprecated":false,"deprecationReason":null},{"name":"MUTATION","description":"Location + adjacent to a mutation operation.","isDeprecated":false,"deprecationReason":null},{"name":"SUBSCRIPTION","description":"Location + adjacent to a subscription operation.","isDeprecated":false,"deprecationReason":null},{"name":"FIELD","description":"Location + adjacent to a field.","isDeprecated":false,"deprecationReason":null},{"name":"FRAGMENT_DEFINITION","description":"Location + adjacent to a fragment definition.","isDeprecated":false,"deprecationReason":null},{"name":"FRAGMENT_SPREAD","description":"Location + adjacent to a fragment spread.","isDeprecated":false,"deprecationReason":null},{"name":"INLINE_FRAGMENT","description":"Location + adjacent to an inline fragment.","isDeprecated":false,"deprecationReason":null},{"name":"SCHEMA","description":"Location + adjacent to a schema definition.","isDeprecated":false,"deprecationReason":null},{"name":"SCALAR","description":"Location + adjacent to a scalar definition.","isDeprecated":false,"deprecationReason":null},{"name":"OBJECT","description":"Location + adjacent to an object type definition.","isDeprecated":false,"deprecationReason":null},{"name":"FIELD_DEFINITION","description":"Location + adjacent to a field definition.","isDeprecated":false,"deprecationReason":null},{"name":"ARGUMENT_DEFINITION","description":"Location + adjacent to an argument definition.","isDeprecated":false,"deprecationReason":null},{"name":"INTERFACE","description":"Location + adjacent to an interface definition.","isDeprecated":false,"deprecationReason":null},{"name":"UNION","description":"Location + adjacent to a union definition.","isDeprecated":false,"deprecationReason":null},{"name":"ENUM","description":"Location + adjacent to an enum definition.","isDeprecated":false,"deprecationReason":null},{"name":"ENUM_VALUE","description":"Location + adjacent to an enum value definition.","isDeprecated":false,"deprecationReason":null},{"name":"INPUT_OBJECT","description":"Location + adjacent to an input object type definition.","isDeprecated":false,"deprecationReason":null},{"name":"INPUT_FIELD_DEFINITION","description":"Location + adjacent to an input object field definition.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"__EnumValue","description":"One + possible value for a given Enum. Enum values are unique values, not a placeholder + for a string or numeric value. However an Enum value is returned in a JSON + response as a string.","fields":[{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Field","description":"Object + and Interface types are described by a list of Fields, each of which has a + name, potentially a list of arguments, and a return type.","fields":[{"name":"args","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__InputValue","description":"Arguments + provided to Fields or Directives and the input fields of an InputObject are + represented as Input Values which describe their type and optionally a default + value.","fields":[{"name":"defaultValue","description":"A GraphQL-formatted + string representing the default value for this input value.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Schema","description":"A + GraphQL Schema defines the capabilities of a GraphQL server. It exposes all + available types and directives on the server, as well as the entry points + for query, mutation, and subscription operations.","fields":[{"name":"directives","description":"A + list of all directives supported by this server.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Directive","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"mutationType","description":"If + this server supports mutation, the type that mutation operations will be rooted + at.","args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"queryType","description":"The + type that query operations will be rooted at.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionType","description":"If + this server support subscription, the type that subscription operations will + be rooted at.","args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"types","description":"A + list of all types supported by this server.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Type","description":"The + fundamental unit of any GraphQL Schema is the type. There are many kinds of + types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on + the kind of a type, certain fields describe information about that type. Scalar + types provide no information beyond a name and description, while Enum types + provide their values. Object and Interface types provide the fields they describe. + Abstract types, Union and Interface, provide the Object types possible at + runtime. List and NonNull types compose other types.","fields":[{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"enumValues","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__EnumValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"fields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Field","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"inputFields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"interfaces","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__TypeKind","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"ofType","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"possibleTypes","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__TypeKind","description":"An + enum describing what kind of type a given `__Type` is.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"SCALAR","description":"Indicates + this type is a scalar.","isDeprecated":false,"deprecationReason":null},{"name":"OBJECT","description":"Indicates + this type is an object. `fields` and `interfaces` are valid fields.","isDeprecated":false,"deprecationReason":null},{"name":"INTERFACE","description":"Indicates + this type is an interface. `fields` and `possibleTypes` are valid fields.","isDeprecated":false,"deprecationReason":null},{"name":"UNION","description":"Indicates + this type is a union. `possibleTypes` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"ENUM","description":"Indicates + this type is an enum. `enumValues` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"INPUT_OBJECT","description":"Indicates + this type is an input object. `inputFields` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"LIST","description":"Indicates + this type is a list. `ofType` is a valid field.","isDeprecated":false,"deprecationReason":null},{"name":"NON_NULL","description":"Indicates + this type is a non-null. `ofType` is a valid field.","isDeprecated":false,"deprecationReason":null}],"possibleTypes":null}],"directives":[{"name":"include","description":"Directs + the executor to include this field or fragment only when the `if` argument + is true.","locations":["FIELD","FRAGMENT_SPREAD","INLINE_FRAGMENT"],"args":[{"name":"if","description":"Included + when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"skip","description":"Directs + the executor to skip this field or fragment when the `if` argument is true.","locations":["FIELD","FRAGMENT_SPREAD","INLINE_FRAGMENT"],"args":[{"name":"if","description":"Skipped + when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"deprecated","description":"Marks + an element of a GraphQL schema as no longer supported.","locations":["FIELD_DEFINITION","ENUM_VALUE","ARGUMENT_DEFINITION","INPUT_FIELD_DEFINITION"],"args":[{"name":"reason","description":"Explains + why this element was deprecated, usually also including a suggestion for how + to access supported similar data. Formatted in [Markdown](https://daringfireball.net/projects/markdown/).","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"\"No + longer supported\""}]}]}}}' + recorded_at: Tue, 27 Apr 2021 14:10:48 GMT +- request: + method: post + uri: https://api.cloudtruth.com/graphql + body: + encoding: UTF-8 + string: '{"query":"query GraphQL__Client__OperationDefinition_136080 {\n viewer + {\n memberships {\n nodes {\n organization {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_136080"}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - application/json + User-Agent: + - kubetruth/0.3.0 + Content-Type: + - application/json + Authorization: + - Bearer + response: + status: + code: 200 + message: OK + headers: + Date: + - Tue, 27 Apr 2021 14:10:55 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Connection: + - keep-alive + X-Frame-Options: + - SAMEORIGIN + X-Xss-Protection: + - 1; mode=block + X-Content-Type-Options: + - nosniff + X-Download-Options: + - noopen + X-Permitted-Cross-Domain-Policies: + - none + Referrer-Policy: + - strict-origin-when-cross-origin + Vary: + - Accept, Origin + Etag: + - W/"3948b709f7ddb5be738bb5ecc5683449" + Cache-Control: + - max-age=0, private, must-revalidate + X-Request-Id: + - f4a4e6c7-f105-4939-8256-14868e66dbaf + X-Runtime: + - '0.035941' + body: + encoding: UTF-8 + string: '{"data":{"viewer":{"memberships":{"nodes":[{"organization":{"id":"T3JnYW5pemF0aW9uLTE1YzgxYjViLWVlM2ItNDlmNS1iNGVkLTIyYTc0NDI3N2ZiMw==","name":"CloudTruth + Demo"}}]}}}}' + recorded_at: Tue, 27 Apr 2021 14:10:49 GMT +- request: + method: post + uri: https://api.cloudtruth.com/graphql + body: + encoding: UTF-8 + string: '{"query":"query GraphQL__Client__OperationDefinition_136120($organizationId: + ID) {\n viewer {\n organization(id: $organizationId) {\n projects + {\n nodes {\n id\n name\n }\n }\n }\n }\n}","variables":{"organizationId":"T3JnYW5pemF0aW9uLTE1YzgxYjViLWVlM2ItNDlmNS1iNGVkLTIyYTc0NDI3N2ZiMw=="},"operationName":"GraphQL__Client__OperationDefinition_136120"}' + headers: + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - application/json + User-Agent: + - kubetruth/0.3.0 + Content-Type: + - application/json + Authorization: + - Bearer + response: + status: + code: 200 + message: OK + headers: + Date: + - Tue, 27 Apr 2021 14:10:55 GMT + Content-Type: + - application/json; charset=utf-8 + Transfer-Encoding: + - chunked + Connection: + - keep-alive + X-Frame-Options: + - SAMEORIGIN + X-Xss-Protection: + - 1; mode=block + X-Content-Type-Options: + - nosniff + X-Download-Options: + - noopen + X-Permitted-Cross-Domain-Policies: + - none + Referrer-Policy: + - strict-origin-when-cross-origin + Vary: + - Accept, Origin + Etag: + - W/"9394974122ab13b12feb7bda1fc8fc59" + Cache-Control: + - max-age=0, private, must-revalidate + X-Request-Id: + - 7c5796a4-6d00-431b-9f96-8aec1d7bfcc6 + X-Runtime: + - '0.034316' + body: + encoding: UTF-8 + string: '{"data":{"viewer":{"organization":{"projects":{"nodes":[{"id":"UHJvamVjdC1hMmUzMjgyYi0wMWE5LTRiMjEtOGJlMy04MDcyNzBiZWQ1MzQ=","name":"default"},{"id":"UHJvamVjdC1hMWRlNDZhMS0yNjA1LTQ5NjYtOTVjMC0wYWRmZDgxNDBhMzA=","name":"service"},{"id":"UHJvamVjdC04ZWRjNGI2NC0xZTdjLTRmZGMtOWU5Mi1iY2IyMWNlZWYyNmI=","name":"ops"},{"id":"UHJvamVjdC01ZDFmNjUwNC0wNTkzLTQ5ZGEtYjlkNi00ZTQ4YmUwMDExNmQ=","name":"web"}]}}}}}' + recorded_at: Tue, 27 Apr 2021 14:10:49 GMT +recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/CtApi/class_definition/defines_class_with_key/schema.yml b/spec/fixtures/vcr/CtApi/class_definition/defines_class_with_key/schema.yml index 747c33c..9d880b2 100644 --- a/spec/fixtures/vcr/CtApi/class_definition/defines_class_with_key/schema.yml +++ b/spec/fixtures/vcr/CtApi/class_definition/defines_class_with_key/schema.yml @@ -25,7 +25,7 @@ http_interactions: Accept: - application/json User-Agent: - - kubetruth/0.2.0 + - kubetruth/0.3.0 Content-Type: - application/json Authorization: @@ -36,7 +36,7 @@ http_interactions: message: OK headers: Date: - - Wed, 17 Feb 2021 15:58:10 GMT + - Tue, 27 Apr 2021 14:10:44 GMT Content-Type: - application/json; charset=utf-8 Transfer-Encoding: @@ -55,19 +55,19 @@ http_interactions: - none Referrer-Policy: - strict-origin-when-cross-origin + Vary: + - Accept, Origin Etag: - - W/"9fb738763ccd7d76282a12d15db153be" + - W/"75ec2b3ba6f57bc364b5a38b5e8f606b" Cache-Control: - max-age=0, private, must-revalidate X-Request-Id: - - 0f9cfff4-6dba-48cd-a636-ef31ece83447 + - a4fee981-dcca-475d-b76f-8a738ed7829e X-Runtime: - - '0.501427' - Vary: - - Origin + - '0.979025' body: encoding: UTF-8 - string: '{"data":{"__schema":{"queryType":{"name":"Query"},"mutationType":{"name":"Mutation"},"subscriptionType":null,"types":[{"kind":"OBJECT","name":"AuditLogSnapshot","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fileUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SnapshotStatusEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditLogSnapshotConnection","description":"The + string: '{"data":{"__schema":{"queryType":{"name":"Query"},"mutationType":{"name":"Mutation"},"subscriptionType":null,"types":[{"kind":"OBJECT","name":"AuditLogSnapshot","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fileUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"status","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"SnapshotStatusEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditLogSnapshotConnection","description":"The connection type for AuditLogSnapshot.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AuditLogSnapshotEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -76,7 +76,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AuditLogSnapshotEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegration","description":null,"fields":[{"name":"accountId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"enabledServices","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsIntegrationEnum","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"externalId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"roleName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegrationConnection","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegration","description":null,"fields":[{"name":"accountId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"enabledServices","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsIntegrationEnum","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"externalId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"roleName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegrationConnection","description":"The connection type for AwsIntegration.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegrationEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegration","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -85,7 +85,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"AwsIntegrationEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AwsIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AwsIntegrationEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"S3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SSM","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"Boolean","description":"Represents + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"AwsIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"AwsIntegrationEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"S3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SSM","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SECRETS_MANAGER","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INTERFACE","name":"BasePolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"InvitationPolicy","ofType":null},{"kind":"OBJECT","name":"NodePolicy","ofType":null},{"kind":"OBJECT","name":"OrganizationPolicy","ofType":null}]},{"kind":"SCALAR","name":"Boolean","description":"Represents `true` or `false` values.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateAuditLogSnapshotInput","description":"Autogenerated input type of CreateAuditLogSnapshot","fields":null,"inputFields":[{"name":"organizationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateAuditLogSnapshotPayload","description":"Autogenerated @@ -107,19 +107,27 @@ http_interactions: unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateInvitationPayload","description":"Autogenerated return type of CreateInvitation","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"invitation","description":null,"args":[],"type":{"kind":"OBJECT","name":"Invitation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateOrganizationInput","description":"Autogenerated - input type of CreateOrganization","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + input type of CreateOrganization","fields":null,"inputFields":[{"name":"eaorgid","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateOrganizationPayload","description":"Autogenerated return type of CreateOrganization","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateParameterInput","description":"Autogenerated - input type of CreateParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + input type of CreateParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateParameterPayload","description":"Autogenerated return type of CreateParameter","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreatePersonalAccessTokenInput","description":"Autogenerated input type of CreatePersonalAccessToken","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"writeAccess","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreatePersonalAccessTokenPayload","description":"Autogenerated return type of CreatePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","description":"Autogenerated - input type of CreateTemplate","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateProjectInput","description":"Autogenerated + input type of CreateProject","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateProjectPayload","description":"Autogenerated + return type of CreateProject","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateServiceAccountInput","description":"Autogenerated + input type of CreateServiceAccount","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateServiceAccountPayload","description":"Autogenerated + return type of CreateServiceAccount","fields":[{"name":"apiToken","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"serviceAccount","description":null,"args":[],"type":{"kind":"OBJECT","name":"ServiceAccount","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","description":"Autogenerated + input type of CreateTemplate","fields":null,"inputFields":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"CreateTemplatePayload","description":"Autogenerated return type of CreateTemplate","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteAllPersonalAccessTokensInput","description":"Autogenerated @@ -142,7 +150,11 @@ http_interactions: input type of DeleteInvitation","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteInvitationPayload","description":"Autogenerated return type of DeleteInvitation","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedInvitationId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedInvitationId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteMembershipInput","description":"Autogenerated + input type of DeleteMembership","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteMembershipPayload","description":"Autogenerated + return type of DeleteMembership","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedMembershipId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","description":"Autogenerated input type of DeleteParameter","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteParameterPayload","description":"Autogenerated return type of DeleteParameter","fields":[{"name":"clientMutationId","description":"A @@ -150,7 +162,15 @@ http_interactions: input type of DeletePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeletePersonalAccessTokenPayload","description":"Autogenerated return type of DeletePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedPersonalAccessTokenId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedPersonalAccessTokenId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteProjectInput","description":"Autogenerated + input type of DeleteProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteProjectPayload","description":"Autogenerated + return type of DeleteProject","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteServiceAccountInput","description":"Autogenerated + input type of DeleteServiceAccount","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteServiceAccountPayload","description":"Autogenerated + return type of DeleteServiceAccount","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deletedServiceAccountId","description":null,"args":[],"type":{"kind":"SCALAR","name":"ID","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","description":"Autogenerated input type of DeleteTemplate","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"DeleteTemplatePayload","description":"Autogenerated return type of DeleteTemplate","fields":[{"name":"clientMutationId","description":"A @@ -158,7 +178,7 @@ http_interactions: the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[{"name":"parameterId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterValue","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentConnection","description":"The + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[{"name":"parameterId","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterValue","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentConnection","description":"The connection type for Environment.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -167,11 +187,11 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentValue","description":null,"fields":[{"name":"environment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integrationFile","description":null,"args":[],"type":{"kind":"OBJECT","name":"IntegrationFile","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"jmesPath","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EnvironmentValueTypeEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"EnvironmentValueTypeEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"STATIC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DYNAMIC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","description":"Autogenerated + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"EnvironmentValue","description":null,"fields":[{"name":"environment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Environment","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integrationFile","description":null,"args":[],"type":{"kind":"OBJECT","name":"IntegrationFile","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"jmesPath","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"EnvironmentValueTypeEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"EnvironmentValueTypeEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"STATIC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DYNAMIC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"ExportParameters","description":null,"fields":[{"name":"evaluated","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"ExportParametersFormatEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"DOCKER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DOTENV","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SHELL","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ExportParametersOptions","description":null,"fields":null,"inputFields":[{"name":"secrets","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"export","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"startsWith","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"endsWith","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"contains","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","description":"Autogenerated input type of FakeOrganizationData","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"FakeOrganizationDataPayload","description":"Autogenerated return type of FakeOrganizationData","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegration","description":null,"fields":[{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"availableRepositoryCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"installationUrl","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegrationConnection","description":"The + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegration","description":null,"fields":[{"name":"accountName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"accountState","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"IntegrationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"ancestors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"availableRepositoryCount","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"entries","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"IntegrationNode","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"fqn","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"installationUrl","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parent","description":null,"args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"IntegrationNode","ofType":null},{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegrationConnection","description":"The connection type for GithubIntegration.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"GithubIntegrationEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"GithubIntegration","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -180,7 +200,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"GithubIntegrationEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"GithubIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"SCALAR","name":"ID","description":"Represents + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"GithubIntegration","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"HasPolicy","description":null,"fields":[{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INTERFACE","name":"BasePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"ServiceAccount","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null}]},{"kind":"SCALAR","name":"ID","description":"Represents a unique identifier that is Base64 obfuscated. It is often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected @@ -201,7 +221,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"IntegrationTreeEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Invitation","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberEmail","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberRole","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InvitationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationConnection","description":"The + item at the end of the edge.","args":[],"type":{"kind":"INTERFACE","name":"IntegrationTree","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Invitation","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberEmail","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberRole","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationPolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"state","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InvitationStateEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationConnection","description":"The connection type for Invitation.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Invitation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -210,7 +230,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Invitation","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"InvitationStateEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ACCEPTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DECLINED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PENDING","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Membership","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pictureUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MembershipConnection","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Invitation","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"InvitationPolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resend","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"InvitationStateEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ACCEPTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DECLINED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PENDING","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Membership","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"email","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pictureUrl","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MembershipConnection","description":"The connection type for Membership.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Membership","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -219,8 +239,45 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"MembershipEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"MembershipRoleEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ADMIN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CONTRIBUTOR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VIEWER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"OWNER","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Mutation","description":null,"fields":[{"name":"createAuditLogSnapshot","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAuditLogSnapshotInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAuditLogSnapshotPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createAwsIntegration","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createEnvironment","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createGithubSetupToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateGithubSetupTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateGithubSetupTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createInvitation","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createOrganization","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrganizationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateOrganizationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createParameter","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createPersonalAccessToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createTemplate","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAllPersonalAccessTokens","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAllPersonalAccessTokensInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAllPersonalAccessTokensPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAwsIntegration","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteEnvironment","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteGithubIntegration","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteGithubIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteGithubIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteInvitation","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteParameter","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deletePersonalAccessToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeletePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeletePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteTemplate","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fakeOrganizationData","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"FakeOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"regeneratePersonalAccessToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RegeneratePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resetOrganizationData","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResetOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateAwsIntegration","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateEnvironment","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateInvitation","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateMembership","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateMembershipInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateMembershipPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateParameter","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatePersonalAccessToken","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateTemplate","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"upsertParameter","description":null,"args":[{"name":"input","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpsertParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpsertParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"Node","description":"An - object with an ID.","fields":[{"name":"id","description":"ID of the object.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"IntegrationFile","ofType":null},{"kind":"OBJECT","name":"IntegrationFileTree","ofType":null},{"kind":"OBJECT","name":"IntegrationServiceTree","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null},{"kind":"OBJECT","name":"Viewer","ofType":null}]},{"kind":"ENUM","name":"OrderByEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DESC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Organization","description":null,"fields":[{"name":"auditLogSnapshots","description":null,"args":[{"name":"after","description":"Returns + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"MembershipRoleEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ADMIN","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CONTRIBUTOR","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"VIEWER","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"OWNER","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Mutation","description":null,"fields":[{"name":"createAuditLogSnapshot","description":null,"args":[{"name":"input","description":"Parameters + for CreateAuditLogSnapshot","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAuditLogSnapshotInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAuditLogSnapshotPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters + for CreateAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createEnvironment","description":null,"args":[{"name":"input","description":"Parameters + for CreateEnvironment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createGithubSetupToken","description":null,"args":[{"name":"input","description":"Parameters + for CreateGithubSetupToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateGithubSetupTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateGithubSetupTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createInvitation","description":null,"args":[{"name":"input","description":"Parameters + for CreateInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createOrganization","description":null,"args":[{"name":"input","description":"Parameters + for CreateOrganization","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateOrganizationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateOrganizationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createParameter","description":null,"args":[{"name":"input","description":"Parameters + for CreateParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createPersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for CreatePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createProject","description":null,"args":[{"name":"input","description":"Parameters + for CreateProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createServiceAccount","description":null,"args":[{"name":"input","description":"Parameters + for CreateServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateServiceAccountPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createTemplate","description":null,"args":[{"name":"input","description":"Parameters + for CreateTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"CreateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"CreateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAllPersonalAccessTokens","description":null,"args":[{"name":"input","description":"Parameters + for DeleteAllPersonalAccessTokens","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAllPersonalAccessTokensInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAllPersonalAccessTokensPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters + for DeleteAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteEnvironment","description":null,"args":[{"name":"input","description":"Parameters + for DeleteEnvironment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteGithubIntegration","description":null,"args":[{"name":"input","description":"Parameters + for DeleteGithubIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteGithubIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteGithubIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteInvitation","description":null,"args":[{"name":"input","description":"Parameters + for DeleteInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteMembership","description":null,"args":[{"name":"input","description":"Parameters + for DeleteMembership","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteMembershipInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteMembershipPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteParameter","description":null,"args":[{"name":"input","description":"Parameters + for DeleteParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deletePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for DeletePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeletePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeletePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteProject","description":null,"args":[{"name":"input","description":"Parameters + for DeleteProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteServiceAccount","description":null,"args":[{"name":"input","description":"Parameters + for DeleteServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteServiceAccountPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"deleteTemplate","description":null,"args":[{"name":"input","description":"Parameters + for DeleteTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"DeleteTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"DeleteTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"fakeOrganizationData","description":null,"args":[{"name":"input","description":"Parameters + for FakeOrganizationData","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"FakeOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"FakeOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"refreshServiceAccountApiToken","description":null,"args":[{"name":"input","description":"Parameters + for RefreshServiceAccountApiToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RefreshServiceAccountApiTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RefreshServiceAccountApiTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"regeneratePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for RegeneratePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RegeneratePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resendInvitation","description":null,"args":[{"name":"input","description":"Parameters + for ResendInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResendInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResendInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"resetOrganizationData","description":null,"args":[{"name":"input","description":"Parameters + for ResetOrganizationData","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ResetOrganizationDataPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateAwsIntegration","description":null,"args":[{"name":"input","description":"Parameters + for UpdateAwsIntegration","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateAwsIntegrationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateAwsIntegrationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateEnvironment","description":null,"args":[{"name":"input","description":"Parameters + for UpdateEnvironment","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateEnvironmentInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateEnvironmentPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateInvitation","description":null,"args":[{"name":"input","description":"Parameters + for UpdateInvitation","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateInvitationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateInvitationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateMembership","description":null,"args":[{"name":"input","description":"Parameters + for UpdateMembership","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateMembershipInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateMembershipPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateOrganization","description":null,"args":[{"name":"input","description":"Parameters + for UpdateOrganization","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateOrganizationInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateOrganizationPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateParameter","description":null,"args":[{"name":"input","description":"Parameters + for UpdateParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatePersonalAccessToken","description":null,"args":[{"name":"input","description":"Parameters + for UpdatePersonalAccessToken","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdatePersonalAccessTokenInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdatePersonalAccessTokenPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateProject","description":null,"args":[{"name":"input","description":"Parameters + for UpdateProject","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateProjectInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateProjectPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updateTemplate","description":null,"args":[{"name":"input","description":"Parameters + for UpdateTemplate","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateTemplatePayload","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"upsertParameter","description":null,"args":[{"name":"input","description":"Parameters + for UpsertParameter","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpsertParameterInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpsertParameterPayload","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INTERFACE","name":"Node","description":"An + object with an ID.","fields":[{"name":"id","description":"ID of the object.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":[{"kind":"OBJECT","name":"AuditLogSnapshot","ofType":null},{"kind":"OBJECT","name":"AwsIntegration","ofType":null},{"kind":"OBJECT","name":"Environment","ofType":null},{"kind":"OBJECT","name":"GithubIntegration","ofType":null},{"kind":"OBJECT","name":"IntegrationFile","ofType":null},{"kind":"OBJECT","name":"IntegrationFileTree","ofType":null},{"kind":"OBJECT","name":"IntegrationServiceTree","ofType":null},{"kind":"OBJECT","name":"Invitation","ofType":null},{"kind":"OBJECT","name":"Membership","ofType":null},{"kind":"OBJECT","name":"Organization","ofType":null},{"kind":"OBJECT","name":"Parameter","ofType":null},{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},{"kind":"OBJECT","name":"Project","ofType":null},{"kind":"OBJECT","name":"ServiceAccount","ofType":null},{"kind":"OBJECT","name":"Template","ofType":null},{"kind":"OBJECT","name":"Viewer","ofType":null}]},{"kind":"OBJECT","name":"NodePolicy","description":null,"fields":[{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"OrderByEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"ASC","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"DESC","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"OBJECT","name":"Organization","description":null,"fields":[{"name":"auditLogSnapshots","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns @@ -228,11 +285,12 @@ http_interactions: the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegrationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"environment","description":null,"args":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environments","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"AwsIntegrationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"defaultProject","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"environment","description":null,"args":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environments","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"evaluateTemplate","description":null,"args":[{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TemplateEvaluation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"githubIntegrations","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"evaluateTemplate","description":null,"args":[{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TemplateEvaluation","ofType":null},"isDeprecated":true,"deprecationReason":"Use + project instead."},{"name":"githubIntegrations","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns @@ -244,11 +302,13 @@ http_interactions: the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberships","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"state","description":"Filter + invitation list by state.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"InvitationStateEnum","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"InvitationConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"memberships","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"userType","description":"Optionally + filter by user type.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"MembershipConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns @@ -256,21 +316,27 @@ http_interactions: order for parameters.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","ofType":null}}},"defaultValue":null},{"name":"searchTerm","description":"Search over parameter names.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"where","description":"Filter parameter list.","type":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null},"defaultValue":null},{"name":"keyNames","description":"List - of key names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + of key names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"OrganizationPolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"projects","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ProjectConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionExpiresAt","description":null,"args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionId","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionPlanId","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"subscriptionPlanName","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"names","description":"List - of template names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursor","description":null,"fields":[{"name":"cursor","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isCurrent","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageNumber","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursors","description":null,"fields":[{"name":"around","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageCursor","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"first","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"last","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previous","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageInfo","description":"Information + of template names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"vaultId","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"OrganizationPolicy","description":null,"fields":[{"name":"createEnvironment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createIntegration","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createInvitation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createParameter","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Everything + will go through project in the near future."},{"name":"createProject","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"createTemplate","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Everything + will go through the project in the near future."},{"name":"destroy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"show","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"update","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"BasePolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursor","description":null,"fields":[{"name":"cursor","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isCurrent","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageNumber","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageCursors","description":null,"fields":[{"name":"around","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageCursor","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"first","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"last","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"previous","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursor","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PageInfo","description":"Information about pagination in a connection.","fields":[{"name":"endCursor","description":"When paginating forwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"hasNextPage","description":"When paginating forwards, are there more items?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"hasPreviousPage","description":"When paginating backwards, are there more items?","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"startCursor","description":"When - paginating backwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Parameter","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValue","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValues","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"hasDynamicValue","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isSecret","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"keyName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + paginating backwards, the cursor to continue.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Parameter","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValue","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"environmentValues","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"EnvironmentValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"hasDynamicValue","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"isSecret","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"keyName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns - the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","description":null,"fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"keyName","description":null,"type":{"kind":"INPUT_OBJECT","name":"StringComparisonExp","ofType":null},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"INPUT_OBJECT","name":"IdComparisonExp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterConnection","description":"The + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","description":null,"fields":null,"inputFields":[{"name":"_and","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"_or","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null}}},"defaultValue":null},{"name":"keyName","description":null,"type":{"kind":"INPUT_OBJECT","name":"StringComparisonExp","ofType":null},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"INPUT_OBJECT","name":"IdComparisonExp","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterConnection","description":"The connection type for Parameter.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Parameter","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -279,7 +345,7 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","description":null,"fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null},{"name":"updatedAt","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterValue","description":null,"fields":[{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessToken","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastUsed","description":null,"args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"writeAccess","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessTokenConnection","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","description":null,"fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null},{"name":"updatedAt","description":null,"type":{"kind":"ENUM","name":"OrderByEnum","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ParameterValue","description":null,"fields":[{"name":"inheritedFrom","description":null,"args":[],"type":{"kind":"OBJECT","name":"Environment","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameterName","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameterValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessToken","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"lastUsed","description":null,"args":[],"type":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"writeAccess","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessTokenConnection","description":"The connection type for PersonalAccessToken.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PersonalAccessTokenEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -288,20 +354,51 @@ http_interactions: # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"PersonalAccessTokenEdge","description":"An edge in a connection.","fields":[{"name":"cursor","description":"A cursor for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The - item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Query","description":null,"fields":[{"name":"node","description":"Fetches + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Project","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"defaultForOrganization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"evaluateTemplate","description":null,"args":[{"name":"body","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"TemplateEvaluation","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"exportParameters","description":null,"args":[{"name":"format","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"ExportParametersFormatEnum","ofType":null}},"defaultValue":null},{"name":"options","description":null,"type":{"kind":"INPUT_OBJECT","name":"ExportParametersOptions","ofType":null},"defaultValue":null}],"type":{"kind":"OBJECT","name":"ExportParameters","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"parameters","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"orderBy","description":"Sort + order for parameters.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"ParameterOrderBy","ofType":null}}},"defaultValue":null},{"name":"searchTerm","description":"Search + over parameter names.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"where","description":"Filter + parameter list.","type":{"kind":"INPUT_OBJECT","name":"ParameterBoolExp","ofType":null},"defaultValue":null},{"name":"keyNames","description":"List + of key names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ParameterConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null}],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"templates","description":null,"args":[{"name":"after","description":"Returns + the elements in the list that come after the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"before","description":"Returns + the elements in the list that come before the specified cursor.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"first","description":"Returns + the first _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"last","description":"Returns + the last _n_ elements from the list.","type":{"kind":"SCALAR","name":"Int","ofType":null},"defaultValue":null},{"name":"names","description":"List + of template names to return.","type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateConnection","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectConnection","description":"The + connection type for Project.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A + list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"ProjectEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A + list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information + to aid in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"PageInfo","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"pageSize","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalCount","description":"Total + # of nodes in connection","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"totalPageCount","description":"Total + # of pages, based on total count and page size","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ProjectEdge","description":"An + edge in a connection.","fields":[{"name":"cursor","description":"A cursor + for use in pagination.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"node","description":"The + item at the end of the edge.","args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Query","description":null,"fields":[{"name":"node","description":"Fetches an object given its ID.","args":[{"name":"id","description":"ID of the object.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null}],"type":{"kind":"INTERFACE","name":"Node","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"Fetches a list of objects given a list of IDs.","args":[{"name":"ids","description":"IDs - of the objects.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INTERFACE","name":"Node","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","description":"Autogenerated + of the objects.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}}}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"INTERFACE","name":"Node","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RefreshServiceAccountApiTokenInput","description":"Autogenerated + input type of RefreshServiceAccountApiToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RefreshServiceAccountApiTokenPayload","description":"Autogenerated + return type of RefreshServiceAccountApiToken","fields":[{"name":"apiToken","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"serviceAccount","description":null,"args":[],"type":{"kind":"OBJECT","name":"ServiceAccount","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"RegeneratePersonalAccessTokenInput","description":"Autogenerated input type of RegeneratePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"RegeneratePersonalAccessTokenPayload","description":"Autogenerated return type of RegeneratePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"tokenValue","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ResendInvitationInput","description":"Autogenerated + input type of ResendInvitation","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ResendInvitationPayload","description":"Autogenerated + return type of ResendInvitation","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"invitation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Invitation","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"ResetOrganizationDataInput","description":"Autogenerated input type of ResetOrganizationData","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ResetOrganizationDataPayload","description":"Autogenerated return type of ResetOrganizationData","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SnapshotStatusEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"REQUESTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PROCESSING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AVAILABLE","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"String","description":"Represents + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"ServiceAccount","description":null,"fields":[{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"role","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"SnapshotStatusEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"REQUESTED","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"PROCESSING","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AVAILABLE","description":null,"isDeprecated":false,"deprecationReason":null}],"possibleTypes":null},{"kind":"SCALAR","name":"String","description":"Represents textual data as UTF-8 character sequences. This type is most often used by - GraphQL to represent free-form human-readable text.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"StringComparisonExp","description":null,"fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Template","description":null,"fields":[{"name":"body","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"evaluated","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"url","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TemplateConnection","description":"The + GraphQL to represent free-form human-readable text.","fields":null,"inputFields":null,"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"StringComparisonExp","description":null,"fields":null,"inputFields":[{"name":"_eq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"_neq","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"Template","description":null,"fields":[{"name":"body","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"createdAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"evaluated","description":null,"args":[{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"id","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":true,"deprecationReason":"Use + project instead."},{"name":"policy","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"NodePolicy","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Project","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"updatedAt","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ISO8601DateTime","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[{"kind":"INTERFACE","name":"Node","ofType":null},{"kind":"INTERFACE","name":"HasPolicy","ofType":null}],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"TemplateConnection","description":"The connection type for Template.","fields":[{"name":"currentPage","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Int","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"edges","description":"A list of edges.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"TemplateEdge","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"nodes","description":"A list of nodes.","args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Template","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"pageCursors","description":null,"args":[],"type":{"kind":"OBJECT","name":"PageCursors","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"pageInfo","description":"Information @@ -326,7 +423,11 @@ http_interactions: input type of UpdateMembership","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"role","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"MembershipRoleEnum","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateMembershipPayload","description":"Autogenerated return type of UpdateMembership","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"membership","description":null,"args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"membership","description":null,"args":[],"type":{"kind":"OBJECT","name":"Membership","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateOrganizationInput","description":"Autogenerated + input type of UpdateOrganization","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateOrganizationPayload","description":"Autogenerated + return type of UpdateOrganization","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"OBJECT","name":"Organization","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateParameterInput","description":"Autogenerated input type of UpdateParameter","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"environmentId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"integrationFileId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"integrationFileFqn","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"jmesPath","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateParameterPayload","description":"Autogenerated return type of UpdateParameter","fields":[{"name":"clientMutationId","description":"A @@ -334,12 +435,16 @@ http_interactions: input type of UpdatePersonalAccessToken","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"writeAccess","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdatePersonalAccessTokenPayload","description":"Autogenerated return type of UpdatePersonalAccessToken","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","description":"Autogenerated + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"personalAccessToken","description":null,"args":[],"type":{"kind":"OBJECT","name":"PersonalAccessToken","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateProjectInput","description":"Autogenerated + input type of UpdateProject","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"name","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateProjectPayload","description":"Autogenerated + return type of UpdateProject","fields":[{"name":"clientMutationId","description":"A + unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"organization","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Organization","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"project","description":null,"args":[],"type":{"kind":"OBJECT","name":"Project","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpdateTemplateInput","description":"Autogenerated input type of UpdateTemplate","fields":null,"inputFields":[{"name":"id","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"ID","ofType":null}},"defaultValue":null},{"name":"body","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpdateTemplatePayload","description":"Autogenerated return type of UpdateTemplate","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"template","description":null,"args":[],"type":{"kind":"OBJECT","name":"Template","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"viewer","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Viewer","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"INPUT_OBJECT","name":"UpsertParameterInput","description":"Autogenerated - input type of UpsertParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"organizationId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A + input type of UpsertParameter","fields":null,"inputFields":[{"name":"keyName","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"defaultValue":null},{"name":"value","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"projectId","description":null,"type":{"kind":"SCALAR","name":"ID","ofType":null},"defaultValue":null},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"isSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":null},{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null}],"interfaces":null,"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UpsertParameterPayload","description":"Autogenerated return type of UpsertParameter","fields":[{"name":"clientMutationId","description":"A unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"errors","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UserError","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"parameter","description":null,"args":[],"type":{"kind":"OBJECT","name":"Parameter","ofType":null},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"UserError","description":"A @@ -358,7 +463,7 @@ http_interactions: validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL''s execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives - provide this by describing additional information to the executor.","fields":[{"name":"args","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locations","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__DirectiveLocation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"onField","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use + provide this by describing additional information to the executor.","fields":[{"name":"args","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"locations","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__DirectiveLocation","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"onField","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."},{"name":"onFragment","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."},{"name":"onOperation","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":true,"deprecationReason":"Use `locations`."}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__DirectiveLocation","description":"A @@ -386,11 +491,11 @@ http_interactions: for a string or numeric value. However an Enum value is returned in a JSON response as a string.","fields":[{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Field","description":"Object and Interface types are described by a list of Fields, each of which has a - name, potentially a list of arguments, and a return type.","fields":[{"name":"args","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__InputValue","description":"Arguments + name, potentially a list of arguments, and a return type.","fields":[{"name":"args","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}}},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__InputValue","description":"Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.","fields":[{"name":"defaultValue","description":"A GraphQL-formatted - string representing the default value for this input value.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Schema","description":"A + string representing the default value for this input value.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"deprecationReason","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"isDeprecated","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"String","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"type","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"OBJECT","name":"__Schema","description":"A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.","fields":[{"name":"directives","description":"A @@ -407,7 +512,7 @@ http_interactions: types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at - runtime. List and NonNull types compose other types.","fields":[{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"enumValues","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__EnumValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"fields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Field","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"inputFields","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"interfaces","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__TypeKind","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"ofType","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"possibleTypes","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__TypeKind","description":"An + runtime. List and NonNull types compose other types.","fields":[{"name":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"enumValues","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__EnumValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"fields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Field","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"inputFields","description":null,"args":[{"name":"includeDeprecated","description":null,"type":{"kind":"SCALAR","name":"Boolean","ofType":null},"defaultValue":"false"}],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__InputValue","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"interfaces","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null},{"name":"kind","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"__TypeKind","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"name":"name","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"ofType","description":null,"args":[],"type":{"kind":"OBJECT","name":"__Type","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"possibleTypes","description":null,"args":[],"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"__Type","ofType":null}}},"isDeprecated":false,"deprecationReason":null}],"inputFields":null,"interfaces":[],"enumValues":null,"possibleTypes":null},{"kind":"ENUM","name":"__TypeKind","description":"An enum describing what kind of type a given `__Type` is.","fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"SCALAR","description":"Indicates this type is a scalar.","isDeprecated":false,"deprecationReason":null},{"name":"OBJECT","description":"Indicates this type is an object. `fields` and `interfaces` are valid fields.","isDeprecated":false,"deprecationReason":null},{"name":"INTERFACE","description":"Indicates @@ -422,9 +527,9 @@ http_interactions: when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"skip","description":"Directs the executor to skip this field or fragment when the `if` argument is true.","locations":["FIELD","FRAGMENT_SPREAD","INLINE_FRAGMENT"],"args":[{"name":"if","description":"Skipped when true.","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"defaultValue":null}]},{"name":"deprecated","description":"Marks - an element of a GraphQL schema as no longer supported.","locations":["FIELD_DEFINITION","ENUM_VALUE"],"args":[{"name":"reason","description":"Explains + an element of a GraphQL schema as no longer supported.","locations":["FIELD_DEFINITION","ENUM_VALUE","ARGUMENT_DEFINITION","INPUT_FIELD_DEFINITION"],"args":[{"name":"reason","description":"Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted in [Markdown](https://daringfireball.net/projects/markdown/).","type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":"\"No longer supported\""}]}]}}}' - recorded_at: Wed, 17 Feb 2021 15:58:10 GMT + recorded_at: Tue, 27 Apr 2021 14:10:38 GMT recorded_with: VCR 6.0.0 diff --git a/spec/kubetruth/cli_spec.rb b/spec/kubetruth/cli_spec.rb index fcfaf04..a61f49d 100644 --- a/spec/kubetruth/cli_spec.rb +++ b/spec/kubetruth/cli_spec.rb @@ -90,23 +90,14 @@ def all_usage(clazz, path=[]) --environment production --organization acme --api-key abc123 - --namespace-template nstmpl - --name-template ntmpl - --key-template ktmpl - --key-prefix prefix1 - --key-prefix prefix2 - --key-pattern pat1 - --key-pattern pat2 - --skip-secrets - --secrets-as-config + --config-file file.yml --kube-namespace kn --kube-token kt --kube-url ku --dry-run ] etl = double(ETL) - expect(ETL).to receive(:new).with(key_prefixes: %w[prefix1 prefix2], key_patterns: [/pat1/, /pat2/], - namespace_template: "nstmpl", name_template: "ntmpl", key_template: "ktmpl", + expect(ETL).to receive(:new).with(config_file: "file.yml", ct_context: { organization: "acme", environment: "production", @@ -117,7 +108,7 @@ def all_usage(clazz, path=[]) token: "kt", api_url: "ku" }).and_return(etl) - expect(etl).to receive(:apply).with(dry_run: true, skip_secrets: true, secrets_as_config: true) + expect(etl).to receive(:apply).with(dry_run: true) cli.run(args) end diff --git a/spec/kubetruth/config_spec.rb b/spec/kubetruth/config_spec.rb new file mode 100644 index 0000000..a5bfddc --- /dev/null +++ b/spec/kubetruth/config_spec.rb @@ -0,0 +1,170 @@ +require 'rspec' +require 'kubetruth/config' + +module Kubetruth + describe Config do + + let(:config) { described_class.new(config_file: "kubetruth.yaml") } + + describe "initialization" do + + it "sets config file" do + expect(config.instance_variable_get(:@config_file)).to eq("kubetruth.yaml") + end + + end + + describe "stale?" do + + it "reports when not up to date" do + within_construct do |c| + c.file('kubetruth.yaml', "") + expect(config.stale?).to be_truthy + config.load + expect(config.stale?).to be_falsey + sleep(0.2) # fails on GithubActions without this + c.file('kubetruth.yaml', "---") + expect(config.stale?).to be_truthy + end + end + + end + + describe "load" do + + it "set defaults" do + within_construct do |c| + c.file('kubetruth.yaml', "") + expect(config.instance_variable_get(:@config)).to be_nil + config.load + expect(config.instance_variable_get(:@config)).to eq(Kubetruth::Config::DEFAULT_SPEC) + end + end + + it "is memoized" do + within_construct do |c| + c.file('kubetruth.yaml', "") + expect(config.instance_variable_get(:@config)).to be_nil + config.load + old = config.instance_variable_get(:@config) + expect(File).to receive(:read).never + config.load + expect(config.instance_variable_get(:@config)).to equal(old) + end + end + + it "raises error for invalid config" do + within_construct do |c| + c.file('kubetruth.yaml', YAML.dump(foo: "bar")) + expect { config.load }.to raise_error(ArgumentError, /unknown keywords: foo/) + c.file('kubetruth.yaml', YAML.dump(project_overrides: [{bar: "baz"}])) + expect { config.load }.to raise_error(ArgumentError, /unknown keywords: bar/) + end + end + + it "loads data into config" do + within_construct do |c| + data = { + project_selector: "project_selector", + key_selector: "key_selector", + key_filter: "key_filter", + configmap_name_template: "configmap_name_template", + secret_name_template: "secret_name_template", + namespace_template: "namespace_template", + key_template: "key_template", + skip: true, + skip_secrets: true, + included_projects: ["included_projects"], + project_overrides: [ + { + project_selector: "project_overrides:project_selector", + configmap_name_template: "project_overrides:configmap_name_template" + } + ] + } + c.file('kubetruth.yaml', YAML.dump(data)) + config.load + expect(config.instance_variable_get(:@config)).to_not eq(Kubetruth::Config::DEFAULT_SPEC) + data.each do |k, v| + next if k == :project_overrides + expect(config.instance_variable_get(:@config)[k]).to eq(data[k]) + end + expect(config.root_spec).to be_an_instance_of(Kubetruth::Config::ProjectSpec) + expect(config.root_spec.configmap_name_template).to eq("configmap_name_template") + expect(config.root_spec.key_selector).to eq(/key_selector/) + expect(config.override_specs.size).to eq(1) + expect(config.override_specs.first).to be_an_instance_of(Kubetruth::Config::ProjectSpec) + expect(config.override_specs.first.configmap_name_template).to eq("project_overrides:configmap_name_template") + expect(config.override_specs.first.secret_name_template).to eq(config.root_spec.secret_name_template) + end + end + + end + + describe "root_spec" do + + it "loads and returns the root spec" do + within_construct do |c| + c.file('kubetruth.yaml', "") + expect(config).to receive(:load).and_call_original + expect(config.root_spec).to be_an_instance_of(Kubetruth::Config::ProjectSpec) + end + end + + end + + describe "override_specs" do + + it "loads and returns the override specs" do + within_construct do |c| + c.file('kubetruth.yaml', YAML.dump(project_overrides: [{project_selector: ""}])) + expect(config).to receive(:load).and_call_original + expect(config.override_specs).to all(be_an_instance_of(Kubetruth::Config::ProjectSpec)) + end + end + + it "doesn't return nil when none" do + within_construct do |c| + c.file('kubetruth.yaml', "") + expect(config).to receive(:load).and_call_original + expect(config.override_specs).to eq([]) + end + end + + end + + describe "spec_for_project" do + + it "returns root spec if no matching override" do + within_construct do |c| + c.file('kubetruth.yaml', "") + expect(config.spec_for_project("foo")).to equal(config.root_spec) + end + end + + it "returns the matching override specs" do + within_construct do |c| + c.file('kubetruth.yaml', YAML.dump(project_overrides: [{project_selector: "fo+", configmap_name_template: "foocm"}])) + spec = config.spec_for_project("foo") + expect(spec).to_not equal(config.root_spec) + expect(spec.configmap_name_template).to eq("foocm") + end + end + + it "warns for multiple matching specs" do + within_construct do |c| + c.file('kubetruth.yaml', YAML.dump(project_overrides: [ + {project_selector: "bo+", configmap_name_template: "not"}, + {project_selector: "fo+", configmap_name_template: "first"}, + {project_selector: "foo", configmap_name_template: "second"} + ])) + spec = config.spec_for_project("foo") + expect(Logging.contents).to include("Multiple configuration specs match the project") + expect(spec.configmap_name_template).to eq("first") + end + end + + end + + end +end diff --git a/spec/kubetruth/ctapi_spec.rb b/spec/kubetruth/ctapi_spec.rb index 5c014cb..9dea11c 100644 --- a/spec/kubetruth/ctapi_spec.rb +++ b/spec/kubetruth/ctapi_spec.rb @@ -22,8 +22,8 @@ module Kubetruth it "gets organizations" do api = ctapi.new - expect(api.organizations).to match hash_including("Personal") - expect(api.organization_names).to match array_including("Personal") + expect(api.organizations).to match hash_including("CloudTruth Demo") + expect(api.organization_names).to match array_including("CloudTruth Demo") end end @@ -38,7 +38,7 @@ module Kubetruth end it "uses organization to get environments" do - api = ctapi.new(organization: "Personal") + api = ctapi.new(organization: "CloudTruth Demo") expect(api).to receive(:organizations).and_call_original allow(ctapi.client).to receive(:query).and_call_original expect(ctapi::client).to receive(:query). @@ -50,6 +50,28 @@ module Kubetruth end + describe "#projects" do + + it "gets projects" do + api = ctapi.new + expect(api).to_not receive(:organizations) + expect(api.projects).to match hash_including("default") + expect(api.project_names).to match array_including("default") + end + + it "uses organization to get projects" do + api = ctapi.new(organization: "CloudTruth Demo") + expect(api).to receive(:organizations).and_call_original + allow(ctapi.client).to receive(:query).and_call_original + expect(ctapi::client).to receive(:query). + with(ctapi.queries[:ProjectsQuery], + variables: hash_including(:organizationId)).and_call_original + expect(api.projects).to match hash_including("default") + expect(api.project_names).to match array_including("default") + end + + end + describe "#parameters" do it "gets parameters without a search" do @@ -67,7 +89,7 @@ module Kubetruth end it "uses organization to get values" do - api = ctapi.new(organization: "Personal") + api = ctapi.new(organization: "CloudTruth Demo") expect(api).to receive(:organizations).at_least(:once).and_call_original allow(ctapi.client).to receive(:query).and_call_original expect(ctapi.client).to receive(:query). @@ -76,6 +98,12 @@ module Kubetruth expect(api.parameters).to match array_including(Parameter) end + it "uses project to get values" do + api = ctapi.new + expect(api).to_not receive(:organizations) + expect(api.parameters(project: "default")).to match array_including(Parameter) + end + it "uses environment to get values" do api = ctapi.new(environment: "development") dev_id = api.environments["development"] diff --git a/spec/kubetruth/etl_spec.rb b/spec/kubetruth/etl_spec.rb index a584eb7..5c15b85 100644 --- a/spec/kubetruth/etl_spec.rb +++ b/spec/kubetruth/etl_spec.rb @@ -5,9 +5,7 @@ module Kubetruth describe ETL do let(:init_args) {{ - key_prefixes: [""], key_patterns: [/./], - namespace_template: nil, name_template: "%s", key_template: "%s", - ct_context: {}, kube_context: {} + config_file: "kubetruth.yaml", ct_context: {}, kube_context: {} }} def kubeapi(ns) @@ -20,13 +18,20 @@ def kubeapi(ns) kapi end + around(:each) do |ex| + within_construct do |c| + c.file('kubetruth.yaml', "") + ex.run + end + end + before(:each) do @ctapi_class = Class.new @ctapi = double() allow(Kubetruth).to receive(:CtApi).and_return(@ctapi_class) allow(@ctapi_class).to receive(:new).and_return(@ctapi) - @kubeapi = kubeapi(nil) + @kubeapi = kubeapi("") end describe "#ctapi" do @@ -54,37 +59,12 @@ def kubeapi(ns) it "is memoized" do etl = described_class.new(init_args) - expect(etl.kubeapi(nil)).to equal(etl.kubeapi(nil)) + expect(etl.kubeapi("")).to equal(etl.kubeapi("")) end - end - - describe "#partition_secrets" do - - it "handles empty" do + it "same behavior with nil or blank namespace" do etl = described_class.new(init_args) - configs, secrets = etl.partition_secrets({}) - expect(configs).to eq({}) - expect(secrets).to eq({}) - end - - it "segregates secret params into their own hash" do - etl = described_class.new(init_args) - param_groups = { - {namespace: nil, name: "group1"} => [ - Parameter.new(key: "param1", value: "value1", secret: false), - Parameter.new(key: "param2", value: "value2", secret: false) - ], - {namespace: nil, name: "group2"} => [ - Parameter.new(key: "param3", value: "value3", secret: true), - Parameter.new(key: "param4", value: "value4", secret: false) - ] - } - config, secrets = etl.partition_secrets(param_groups) - expect(config.keys).to eq(param_groups.keys) - expect(config.values.flatten.collect(&:key)).to eq(["param1", "param2", "param4"]) - expect(secrets.keys).to eq([{namespace: nil, name: "group2"}]) - expect(secrets.values.flatten.collect(&:key)).to eq(["param3"]) + expect(etl.kubeapi("")).to equal(etl.kubeapi(nil)) end end @@ -108,122 +88,98 @@ def kubeapi(ns) end - describe "#get_param_groups" do + describe "#load_config" do - it "handles empty" do + it "loads config" do etl = described_class.new(init_args) - expect(@ctapi).to receive(:parameters).and_return([]) - param_groups = etl.get_param_groups - expect(param_groups).to eq({}) + config = etl.load_config + expect(config).to be_an_instance_of(Kubetruth::Config) + expect(etl.load_config).to equal(config) + sleep(0.2) # fails on GithubActions without this + File.write(init_args[:config_file], "---") + expect(etl.load_config).to_not equal(config) end - it "only selects for matching prefix" do - etl = described_class.new(init_args.merge(key_prefixes: ["svc"])) - expect(@ctapi).to receive(:parameters).and_return([ - Parameter.new(key: "param1", value: "value1", secret: false), - Parameter.new(key: "svc.param2.foo", value: "value2", secret: false), - Parameter.new(key: "bar.svc.param3", value: "value3", secret: false), - ]) - param_groups = etl.get_param_groups - expect(param_groups.values.flatten.size).to eq(1) - expect(param_groups.values.flatten.collect(&:original_key)).to eq(["svc.param2.foo"]) - end + end - it "selects for multiple prefixes" do - etl = described_class.new(init_args.merge(key_prefixes: ["svc", "bar"])) - expect(@ctapi).to receive(:parameters).with(searchTerm: "svc").and_return([ - Parameter.new(key: "svc.param2.foo", value: "value2", secret: false), - ]) - expect(@ctapi).to receive(:parameters).with(searchTerm: "bar").and_return([ - Parameter.new(key: "bar.svc.param3", value: "value3", secret: false), - ]) - param_groups = etl.get_param_groups - expect(param_groups.values.flatten.size).to eq(2) - expect(param_groups.values.flatten.collect(&:original_key)).to eq(["svc.param2.foo", "bar.svc.param3"]) - end + describe "#get_params" do - it "only selects for matching pattern" do - etl = described_class.new(init_args.merge(key_patterns: [/^(?[^\.]+)\.(?[^\.]+)\.(?.*)/])) - expect(@ctapi).to receive(:parameters).and_return([ - Parameter.new(key: "svc.param1", value: "value1", secret: false), - Parameter.new(key: "svc.param2.foo", value: "value2", secret: false), - ]) - param_groups = etl.get_param_groups - expect(param_groups.values.flatten.size).to eq(1) - expect(param_groups.values.flatten.collect(&:original_key)).to eq(["svc.param2.foo"]) + let(:etl) { described_class.new(init_args) } + let(:project) { "foo" } + let(:project_spec) { etl.load_config.spec_for_project(project) } + + it "handles empty" do + expect(@ctapi).to receive(:parameters).with(searchTerm: "", project: "foo").and_return([]) + params = etl.get_params(project, project_spec) + expect(params).to eq([]) end - it "selects for multiple patterns" do - etl = described_class.new(init_args.merge(key_patterns: [/^svc/, /^bar/])) - expect(@ctapi).to receive(:parameters).and_return([ - Parameter.new(key: "foo.param1", value: "value1", secret: false), - Parameter.new(key: "svc.param2.foo", value: "value2", secret: false), - Parameter.new(key: "bar.svc.param3", value: "value3", secret: false) - ]) - param_groups = etl.get_param_groups - expect(param_groups.values.flatten.size).to eq(2) - expect(param_groups.values.flatten.collect(&:original_key)).to eq(["svc.param2.foo", "bar.svc.param3"]) + it "only selects for matching key_filter" do + project_spec.key_filter = "svc" + expect(@ctapi).to receive(:parameters).with(searchTerm: "svc", project: "foo").and_return([]) + params = etl.get_params(project, project_spec) end - it "applies templates to matches" do - etl = described_class.new(init_args.merge( - key_patterns: [/^(?[^\.]+)\.(?[^\.]+)\.(?.*)/], - namespace_template: "ns-%{name}", - name_template: "%{name}", - key_template: "%{key}" - )) - expect(@ctapi).to receive(:parameters).and_return([ - Parameter.new(key: "svc.name1.key1", value: "value1", secret: false), - Parameter.new(key: "svc.name2.key2", value: "value2", secret: false) - ]) - param_groups = etl.get_param_groups - expect(param_groups.size).to eq(2) - expect(param_groups[{namespace: "ns-name1", name: "name1"}]).to eq([Parameter.new(original_key: "svc.name1.key1", key: "key1", value: "value1", secret: false)]) - expect(param_groups[{namespace: "ns-name2", name: "name2"}]).to eq([Parameter.new(original_key: "svc.name2.key2", key: "key2", value: "value2", secret: false)]) + it "only selects for matching selector" do + project_spec.key_selector = /foo$/ + expect(@ctapi).to receive(:parameters).with(searchTerm: "", project: "foo").and_return([ + Parameter.new(key: "svc.param1", value: "value1", secret: false), + Parameter.new(key: "svc.param2.foo", value: "value2", secret: false), + ]) + params = etl.get_params(project, project_spec) + expect(params.size).to eq(1) + expect(params.collect(&:original_key)).to eq(["svc.param2.foo"]) end - it "makes name and namespace dns safe" do - etl = described_class.new(init_args.merge( - key_patterns: [/^(?[^\.]+)\.(?[^\.]+)\.(?.*)/], - namespace_template: "ns_%{name}", - name_template: "nm_%{name}", - key_template: "k_%{key}" - )) - expect(@ctapi).to receive(:parameters).and_return([ - Parameter.new(key: "svc.name1.key1", value: "value1", secret: false), - Parameter.new(key: "svc.name2.key2", value: "value2", secret: false) - ]) - param_groups = etl.get_param_groups - expect(param_groups.size).to eq(2) - expect(param_groups[{namespace: "ns-name1", name: "nm-name1"}]).to eq([Parameter.new(original_key: "svc.name1.key1", key: "k_key1", value: "value1", secret: false)]) - expect(param_groups[{namespace: "ns-name2", name: "nm-name2"}]).to eq([Parameter.new(original_key: "svc.name2.key2", key: "k_key2", value: "value2", secret: false)]) + it "applies templates to matches" do + expect(@ctapi).to receive(:parameters).with(searchTerm: "", project: "foo").and_return([ + Parameter.new(key: "foo.key1", value: "value1", secret: false), + Parameter.new(key: "bar.key2", value: "value2", secret: false) + ]) + project_spec.key_selector = /^(?.*)\.(?.*)$/ + project_spec.key_template = "%{key}_%{prefix}_%{project}" + params = etl.get_params(project, project_spec, template_matches: {project: "myproj"}) + expect(params.size).to eq(2) + expect(params).to eq([ + Parameter.new(original_key: "foo.key1", key: "key1_foo_myproj", value: "value1", secret: false), + Parameter.new(original_key: "bar.key2", key: "key2_bar_myproj", value: "value2", secret: false) + ]) + end + + it "sets key in template if not in selector" do + expect(@ctapi).to receive(:parameters).with(searchTerm: "", project: "foo").and_return([ + Parameter.new(key: "key1", value: "value1", secret: false), + ]) + project_spec.key_selector = // + project_spec.key_template = "my_%{key}" + params = etl.get_params(project, project_spec) + expect(params).to eq([ + Parameter.new(original_key: "key1", key: "my_key1", value: "value1", secret: false), + ]) end it "has a number of template options" do - etl = described_class.new(init_args.merge( - key_patterns: [/^(?[^\.]+)\.(?[^\.]+)\.(?.*)/], - name_template: "%{prefix}.%{name}", - key_template: "start.%{key}.%{name}.%{prefix}.middle.%{key_upcase}.%{name_upcase}.%{prefix_upcase}.end" - )) - expect(@ctapi).to receive(:parameters).and_return([ - Parameter.new(key: "svc.name1.key1", value: "value1", secret: false), - ]) - param_groups = etl.get_param_groups - expect(param_groups.size).to eq(1) - expect(param_groups[{namespace: nil, name: "svc.name1"}]).to eq([Parameter.new(original_key: "svc.name1.key1", key: "start.key1.name1.svc.middle.KEY1.NAME1.SVC.end", value: "value1", secret: false)]) + expect(@ctapi).to receive(:parameters).with(searchTerm: "", project: "foo").and_return([ + Parameter.new(key: "svc.name1.key1", value: "value1", secret: false), + ]) + project_spec.key_selector = /^(?[^\.]+)\.(?[^\.]+)\.(?.*)/ + project_spec.key_template = "start.%{key}.%{name}.%{prefix}.middle.%{key_upcase}.%{name_upcase}.%{prefix_upcase}.end" + params = etl.get_params(project, project_spec) + expect(params).to eq([ + Parameter.new(original_key: "svc.name1.key1", key: "start.key1.name1.svc.middle.KEY1.NAME1.SVC.end", value: "value1", secret: false) + ]) end it "doesn't expose secret in debug log" do Logging.setup_logging(level: :debug, color: false) - etl = described_class.new(init_args) - expect(@ctapi).to receive(:parameters).and_return([ + expect(@ctapi).to receive(:parameters).with(searchTerm: "", project: "foo").and_return([ Parameter.new(key: "param1", value: "value1", secret: false), Parameter.new(key: "param2", value: "sekret", secret: true), Parameter.new(key: "param3", value: "alsosekret", secret: true), Parameter.new(key: "param4", value: "value4", secret: false), ]) - param_groups = etl.get_param_groups + params = etl.get_params(project, project_spec) expect(Logging.contents).to include("param2") expect(Logging.contents).to include("param3") expect(Logging.contents).to include("") @@ -232,124 +188,99 @@ def kubeapi(ns) end - describe "#apply_config_maps" do + describe "#apply_config_map" do + + let(:etl) { described_class.new(init_args) } it "calls kube to create new config map" do - etl = described_class.new(init_args) - param_groups = { - {namespace: nil, name: "group1"} => [ - Parameter.new(key: "param1", value: "value1", secret: false), - Parameter.new(key: "param2", value: "value2", secret: false) - ] - } + params = [ + Parameter.new(key: "param1", value: "value1", secret: false), + Parameter.new(key: "param2", value: "value2", secret: false) + ] expect(@kubeapi).to receive(:get_config_map).with("group1").and_raise(Kubeclient::ResourceNotFoundError.new(1, "", 2)) expect(@kubeapi).to_not receive(:update_config_map) expect(@kubeapi).to receive(:create_config_map).with("group1", {"param1" => "value1", "param2" => "value2"}) - etl.apply_config_maps(param_groups) + etl.apply_config_map(namespace: '', name: "group1", params: params) end it "calls kube to update config map" do - etl = described_class.new(init_args) - param_groups = { - {namespace: nil, name: "group1"} => [ - Parameter.new(key: "param1", value: "value1", secret: false), - Parameter.new(key: "param2", value: "value2", secret: false) - ] - } + params = [ + Parameter.new(key: "param1", value: "value1", secret: false), + Parameter.new(key: "param2", value: "value2", secret: false) + ] resource = Kubeclient::Resource.new resource.data = {oldparam: "oldvalue"} expect(@kubeapi).to receive(:get_config_map).with("group1").and_return(resource) expect(@kubeapi).to receive(:under_management?).with(resource).and_return(true) expect(@kubeapi).to_not receive(:create_config_map) expect(@kubeapi).to receive(:update_config_map).with("group1", {"param1" => "value1", "param2" => "value2"}) - etl.apply_config_maps(param_groups) + etl.apply_config_map(namespace: '', name: "group1", params: params) end it "doesn't update config map if data same" do - etl = described_class.new(init_args) - param_groups = { - {namespace: nil, name: "group1"} => [ - Parameter.new(key: "param1", value: "value1", secret: false), - Parameter.new(key: "param2", value: "value2", secret: false) - ] - } + params = [ + Parameter.new(key: "param1", value: "value1", secret: false), + Parameter.new(key: "param2", value: "value2", secret: false) + ] resource = Kubeclient::Resource.new resource.data = {param1: "value1", param2: "value2"} expect(@kubeapi).to receive(:get_config_map).with("group1").and_return(resource) expect(@kubeapi).to receive(:under_management?).with(resource).and_return(true) expect(@kubeapi).to_not receive(:create_config_map) expect(@kubeapi).to_not receive(:update_config_map) - etl.apply_config_maps(param_groups) + etl.apply_config_map(namespace: '', name: "group1", params: params) end it "doesn't update config map if not under management" do - etl = described_class.new(init_args) - param_groups = { - {namespace: nil, name: "group1"} => [ - Parameter.new(key: "param1", value: "value1", secret: false), - Parameter.new(key: "param2", value: "value2", secret: false) - ] - } + params = [ + Parameter.new(key: "param1", value: "value1", secret: false), + Parameter.new(key: "param2", value: "value2", secret: false) + ] resource = Kubeclient::Resource.new resource.data = {oldparam: "oldvalue"} expect(@kubeapi).to receive(:get_config_map).with("group1").and_return(resource) expect(@kubeapi).to receive(:under_management?).with(resource).and_return(false) expect(@kubeapi).to_not receive(:create_config_map) expect(@kubeapi).to_not receive(:update_config_map) - etl.apply_config_maps(param_groups) + etl.apply_config_map(namespace: '', name: "group1", params: params) expect(Logging.contents).to match(/Skipping config map 'group1'/) end it "uses namespace for kube when supplied" do - etl = described_class.new(init_args.merge(namespace_template: "%{name}")) - param_groups = { - {namespace: "foo", name: "group1"} => [ - Parameter.new(key: "param1", value: "value1", secret: false), - Parameter.new(key: "param2", value: "value2", secret: false) - ], - {namespace: "bar", name: "group2"} => [ - Parameter.new(key: "param21", value: "value21", secret: false) - ] - } + params = [ + Parameter.new(key: "param1", value: "value1", secret: false), + Parameter.new(key: "param2", value: "value2", secret: false) + ] foo_kapi = kubeapi("foo") - bar_kapi = kubeapi("bar") expect(etl).to receive(:kubeapi).with("foo").at_least(:once).and_return(foo_kapi) - expect(etl).to receive(:kubeapi).with("bar").at_least(:once).and_return(bar_kapi) expect(foo_kapi).to receive(:get_config_map).with("group1").and_raise(Kubeclient::ResourceNotFoundError.new(1, "", 2)) expect(foo_kapi).to_not receive(:update_config_map) expect(foo_kapi).to receive(:create_config_map).with("group1", {"param1" => "value1", "param2" => "value2"}) - expect(bar_kapi).to receive(:get_config_map).with("group2").and_raise(Kubeclient::ResourceNotFoundError.new(1, "", 2)) - expect(bar_kapi).to_not receive(:update_config_map) - expect(bar_kapi).to receive(:create_config_map).with("group2", {"param21" => "value21"}) - etl.apply_config_maps(param_groups) + etl.apply_config_map(namespace: 'foo', name: "group1", params: params) end end - describe "#apply_secrets" do + describe "#apply_secret" do + + let(:etl) { described_class.new(init_args) } it "calls kube to create new secret" do - etl = described_class.new(init_args) - param_groups = { - {namespace: nil, name: "group1"} => [ - Parameter.new(key: "param1", value: "value1", secret: true), - Parameter.new(key: "param2", value: "value2", secret: true) - ] - } + params = [ + Parameter.new(key: "param1", value: "value1", secret: true), + Parameter.new(key: "param2", value: "value2", secret: true) + ] expect(@kubeapi).to receive(:get_secret).with("group1").and_raise(Kubeclient::ResourceNotFoundError.new(1, "", 2)) expect(@kubeapi).to_not receive(:update_secret) expect(@kubeapi).to receive(:create_secret).with("group1", {"param1" => "value1", "param2" => "value2"}) - etl.apply_secrets(param_groups) + etl.apply_secret(namespace: '', name: "group1", params: params) end it "calls kube to update secret" do - etl = described_class.new(init_args) - param_groups = { - {namespace: nil, name: "group1"} => [ - Parameter.new(key: "param1", value: "value1", secret: true), - Parameter.new(key: "param2", value: "value2", secret: true) - ] - } + params = [ + Parameter.new(key: "param1", value: "value1", secret: true), + Parameter.new(key: "param2", value: "value2", secret: true) + ] resource = Kubeclient::Resource.new resource.stringData = {oldparam: "oldvalue"} expect(@kubeapi).to receive(:get_secret).with("group1").and_return(resource) @@ -357,17 +288,14 @@ def kubeapi(ns) expect(@kubeapi).to receive(:secret_hash).with(resource).and_return({oldparam: "oldvalue"}) expect(@kubeapi).to_not receive(:create_secret) expect(@kubeapi).to receive(:update_secret).with("group1", {"param1" => "value1", "param2" => "value2"}) - etl.apply_secrets(param_groups) + etl.apply_secret(namespace: '', name: "group1", params: params) end it "doesn't update secret if data same" do - etl = described_class.new(init_args) - param_groups = { - {namespace: nil, name: "group1"} => [ - Parameter.new(key: "param1", value: "value1", secret: true), - Parameter.new(key: "param2", value: "value2", secret: true) - ] - } + params = [ + Parameter.new(key: "param1", value: "value1", secret: true), + Parameter.new(key: "param2", value: "value2", secret: true) + ] resource = Kubeclient::Resource.new resource.stringData = {param1: "value1", param2: "value2"} expect(@kubeapi).to receive(:get_secret).with("group1").and_return(resource) @@ -375,17 +303,14 @@ def kubeapi(ns) expect(@kubeapi).to receive(:secret_hash).with(resource).and_return({param1: "value1", param2: "value2"}) expect(@kubeapi).to_not receive(:create_secret) expect(@kubeapi).to_not receive(:update_secret) - etl.apply_secrets(param_groups) + etl.apply_secret(namespace: '', name: "group1", params: params) end it "doesn't update secret if not under management=" do - etl = described_class.new(init_args) - param_groups = { - {namespace: nil, name: "group1"} => [ - Parameter.new(key: "param1", value: "value1", secret: true), - Parameter.new(key: "param2", value: "value2", secret: true) - ] - } + params = [ + Parameter.new(key: "param1", value: "value1", secret: true), + Parameter.new(key: "param2", value: "value2", secret: true) + ] resource = Kubeclient::Resource.new resource.stringData = {oldparam: "oldvalue"} expect(@kubeapi).to receive(:get_secret).with("group1").and_return(resource) @@ -393,88 +318,136 @@ def kubeapi(ns) expect(@kubeapi).to receive(:secret_hash).with(resource).and_return({oldparam: "oldvalue"}) expect(@kubeapi).to_not receive(:create_secret) expect(@kubeapi).to_not receive(:update_secret) - etl.apply_secrets(param_groups) + etl.apply_secret(namespace: '', name: "group1", params: params) expect(Logging.contents).to match(/Skipping secret 'group1'/) end it "uses namespace for kube when supplied" do - etl = described_class.new(init_args) - param_groups = { - {namespace: "foo", name: "group1"} => [ - Parameter.new(key: "param1", value: "value1", secret: true), - Parameter.new(key: "param2", value: "value2", secret: true) - ] - } + params = [ + Parameter.new(key: "param1", value: "value1", secret: true), + Parameter.new(key: "param2", value: "value2", secret: true) + ] foo_kapi = kubeapi("foo") expect(foo_kapi).to receive(:get_secret).with("group1").and_raise(Kubeclient::ResourceNotFoundError.new(1, "", 2)) expect(foo_kapi).to_not receive(:update_secret) expect(foo_kapi).to receive(:create_secret).with("group1", {"param1" => "value1", "param2" => "value2"}) - etl.apply_secrets(param_groups) + etl.apply_secret(namespace: 'foo', name: "group1", params: params) end end describe "#apply" do + let(:etl) { described_class.new(init_args) } + it "sets config and secrets" do - etl = described_class.new(init_args) - param_groups = { - {namespace: nil, name: "group1"} => [ - Parameter.new(key: "param1", value: "value1", secret: false), - Parameter.new(key: "param2", value: "value2", secret: true) - ] - } - pgkey = {namespace: nil, name: "group1"} - expect(etl).to receive(:get_param_groups).and_return(param_groups) - expect(etl).to receive(:apply_config_maps).with({pgkey => [param_groups[pgkey][0]]}) - expect(etl).to receive(:apply_secrets).with({pgkey => [param_groups[pgkey][1]]}) + params = [ + Parameter.new(key: "param1", value: "value1", secret: false), + Parameter.new(key: "param2", value: "value2", secret: true) + ] + expect(etl.ctapi).to receive(:project_names).and_return(["default"]) + expect(etl).to receive(:get_params).and_return(params) + expect(etl).to receive(:apply_config_map).with(namespace: '', name: "default", params: [params[0]]) + expect(etl).to receive(:apply_secret).with(namespace: '', name: "default", params: [params[1]]) etl.apply() end - it "sets secrets as config" do - etl = described_class.new(init_args) - param_groups = { - {namespace: nil, name: "group1"} => [ - Parameter.new(key: "param1", value: "value1", secret: false), - Parameter.new(key: "param2", value: "value2", secret: true) - ] - } - expect(etl).to receive(:get_param_groups).and_return(param_groups) - expect(etl).to receive(:apply_config_maps).with(param_groups) - expect(etl).to receive(:apply_secrets).never - etl.apply(secrets_as_config: true) - end - it "skips secrets" do - etl = described_class.new(init_args) - param_groups = { - {namespace: nil, name: "group1"} => [ - Parameter.new(key: "param1", value: "value1", secret: false), - Parameter.new(key: "param2", value: "value2", secret: true) - ] - } - pgkey = {namespace: nil, name: "group1"} - expect(etl).to receive(:get_param_groups).and_return(param_groups) - expect(etl).to receive(:apply_config_maps).with({pgkey => [param_groups[pgkey][0]]}) - expect(etl).to receive(:apply_secrets).never - etl.apply(skip_secrets: true) + params = [ + Parameter.new(key: "param1", value: "value1", secret: false), + Parameter.new(key: "param2", value: "value2", secret: true) + ] + etl.load_config.root_spec.skip_secrets = true + expect(etl.ctapi).to receive(:project_names).and_return(["default"]) + expect(etl).to receive(:get_params).and_return(params) + expect(etl).to receive(:apply_config_map).with(namespace: '', name: "default", params: [params[0]]) + expect(etl).to_not receive(:apply_secret) + etl.apply() end it "allows dryrun" do - etl = described_class.new(init_args) - param_groups = { - {namespace: nil, name: "group1"} => [ - Parameter.new(key: "param1", value: "value1", secret: false), - Parameter.new(key: "param2", value: "value2", secret: true) - ] - } - expect(etl).to receive(:get_param_groups).and_return(param_groups) - expect(etl).to receive(:apply_config_maps).never - expect(etl).to receive(:apply_secrets).never + params = [ + Parameter.new(key: "param1", value: "value1", secret: false), + Parameter.new(key: "param2", value: "value2", secret: true) + ] + etl.load_config.root_spec.skip_secrets = true + expect(etl.ctapi).to receive(:project_names).and_return(["default"]) + expect(etl).to receive(:get_params).and_return(params) + expect(etl).to_not receive(:apply_config_map) + expect(etl).to_not receive(:apply_secret) etl.apply(dry_run: true) expect(Logging.contents).to match("Performing dry-run") end + it "makes name and namespace dns safe" do + params = [ + Parameter.new(key: "param1", value: "value1", secret: false), + Parameter.new(key: "param2", value: "value2", secret: true) + ] + etl.load_config.root_spec.namespace_template = "ns_%{project}" + etl.load_config.root_spec.configmap_name_template = "cm_%{project}" + etl.load_config.root_spec.secret_name_template = "s_%{project}" + expect(etl.ctapi).to receive(:project_names).and_return(["default"]) + expect(etl).to receive(:get_params).and_return(params) + expect(etl).to receive(:apply_config_map).with(namespace: 'ns-default', name: "cm-default", params: [params[0]]) + expect(etl).to receive(:apply_secret).with(namespace: 'ns-default', name: "s-default", params: [params[1]]) + etl.apply() + end + + it "skips projects when selector fails" do + etl.load_config.root_spec.project_selector = /oo/ + expect(etl.ctapi).to receive(:project_names).and_return(["default", "foo", "bar"]) + expect(etl).to_not receive(:get_params).with("default", any_args) + expect(etl).to receive(:get_params).with("foo", any_args).and_return([]) + expect(etl).to_not receive(:get_params).with("bar", any_args) + expect(etl).to receive(:apply_config_map) + expect(etl).to receive(:apply_secret) + etl.apply() + end + + it "skips projects if flag is set" do + within_construct do |c| + c.file('kubetruth.yaml', YAML.dump( + project_overrides: [ + {project_selector: "foo", skip: true} + ] + )) + + expect(etl.ctapi).to receive(:project_names).and_return(["default", "foo", "bar"]) + expect(etl).to receive(:get_params).with("default", any_args).and_return([]) + expect(etl).to_not receive(:get_params).with("foo", any_args) + expect(etl).to receive(:get_params).with("bar", any_args).and_return([]) + allow(etl).to receive(:apply_config_map) + allow(etl).to receive(:apply_secret) + etl.apply() + end + end + + it "gets captures for template from both levels of project selectors" do + within_construct do |c| + c.file('kubetruth.yaml', YAML.dump( + project_selector: "^(?[^.]+)", + namespace_template: "%{child_match}-%{root_match}", + key_template: "%{root_match}:%{child_match}:%{project}:%{key}", + project_overrides: [ + {project_selector: "(?[^.]+)$"} + ] + )) + + params = [ + Parameter.new(key: "param1", value: "value1", secret: false) + ] + expect(etl.ctapi).to receive(:project_names).and_return(["foo.bar"]) + expect(etl.ctapi).to receive(:parameters).and_return(params) + expect(etl).to receive(:apply_config_map). + with(namespace: 'bar-foo', + name: "foo.bar", + params: [Parameter.new(key: "foo:bar:foo.bar:param1", original_key: "param1", value: "value1", secret: false),]) + expect(etl).to receive(:apply_secret) + etl.apply + end + end + end end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 58caaaf..0cdb3ad 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -110,6 +110,8 @@ def filter_object!(object, text, replacement_text) end +require "test_construct/rspec_integration" + RSpec::Matchers.define :be_line_width_for_cli do |name| match do |actual| @actual = []