From 22b35845c7f76883478a15ea25a132309cec282c Mon Sep 17 00:00:00 2001 From: Matt Conway Date: Tue, 13 Jul 2021 17:16:02 -0400 Subject: [PATCH 01/17] initial conversion to use cloudtruth rest api --- .github/workflows/cd.yml | 10 +- .gitignore | 1 + Dockerfile | 1 + Gemfile | 2 +- Gemfile.lock | 16 +- Rakefile | 46 +- lib/kubetruth/cli.rb | 17 +- lib/kubetruth/ctapi.rb | 221 +- lib/kubetruth/etl.rb | 6 +- lib/kubetruth/kubeapi.rb | 11 + lib/kubetruth/project.rb | 16 +- lib/kubetruth/project_collection.rb | 4 +- openapi.yml | 4590 +++++++++++++++++ .../vcr/CtApi/_environment_id/gets_id.yml | 603 --- .../raises_if_environment_doesn_t_exist.yml | 660 --- .../retries_if_environment_doesn_t_exist.yml | 660 --- .../CtApi/_environments/gets_environments.yml | 603 --- .../_environments/memoizes_environments.yml | 603 --- .../doesn_t_expose_secret_in_debug_log.yml | 663 --- .../gets_parameters_without_a_search.yml | 663 --- .../uses_environment_to_get_values.yml | 663 --- .../uses_project_to_get_values.yml | 663 --- .../uses_searchTerm_to_get_parameters.yml | 783 --- .../_projects/doesn_t_cache_projects_.yml | 774 --- .../vcr/CtApi/_projects/gets_projects.yml | 660 --- .../CtApi/class_definition/defines_class.yml | 546 -- .../_environment_id/gets_id.yml | 58 + .../raises_if_environment_doesn_t_exist.yml | 113 + .../retries_if_environment_doesn_t_exist.yml | 113 + .../_environments/gets_environments.yml | 58 + .../_environments/memoizes_environments.yml | 58 + .../doesn_t_expose_secret_in_debug_log.yml | 577 +++ .../_parameters/gets_parameters.yml | 471 ++ .../uses_environment_to_get_values.yml | 786 +++ .../_projects/doesn_t_memoize_projects_.yml | 211 + .../_projects/gets_projects.yml | 107 + spec/kubetruth/cli_spec.rb | 29 +- spec/kubetruth/ctapi_spec.rb | 143 +- spec/kubetruth/etl_spec.rb | 62 +- spec/kubetruth/kubeapi_spec.rb | 18 + spec/kubetruth/project_collection_spec.rb | 15 - spec/kubetruth/project_spec.rb | 14 +- spec/spec_helper.rb | 55 +- 43 files changed, 7445 insertions(+), 8928 deletions(-) create mode 100644 openapi.yml delete mode 100644 spec/fixtures/vcr/CtApi/_environment_id/gets_id.yml delete mode 100644 spec/fixtures/vcr/CtApi/_environment_id/raises_if_environment_doesn_t_exist.yml delete mode 100644 spec/fixtures/vcr/CtApi/_environment_id/retries_if_environment_doesn_t_exist.yml delete mode 100644 spec/fixtures/vcr/CtApi/_environments/gets_environments.yml delete mode 100644 spec/fixtures/vcr/CtApi/_environments/memoizes_environments.yml delete mode 100644 spec/fixtures/vcr/CtApi/_parameters/doesn_t_expose_secret_in_debug_log.yml delete mode 100644 spec/fixtures/vcr/CtApi/_parameters/gets_parameters_without_a_search.yml delete mode 100644 spec/fixtures/vcr/CtApi/_parameters/uses_environment_to_get_values.yml delete mode 100644 spec/fixtures/vcr/CtApi/_parameters/uses_project_to_get_values.yml delete mode 100644 spec/fixtures/vcr/CtApi/_parameters/uses_searchTerm_to_get_parameters.yml delete mode 100644 spec/fixtures/vcr/CtApi/_projects/doesn_t_cache_projects_.yml delete mode 100644 spec/fixtures/vcr/CtApi/_projects/gets_projects.yml delete mode 100644 spec/fixtures/vcr/CtApi/class_definition/defines_class.yml create mode 100644 spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/gets_id.yml create mode 100644 spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/raises_if_environment_doesn_t_exist.yml create mode 100644 spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/retries_if_environment_doesn_t_exist.yml create mode 100644 spec/fixtures/vcr/Kubetruth_CtApi/_environments/gets_environments.yml create mode 100644 spec/fixtures/vcr/Kubetruth_CtApi/_environments/memoizes_environments.yml create mode 100644 spec/fixtures/vcr/Kubetruth_CtApi/_parameters/doesn_t_expose_secret_in_debug_log.yml create mode 100644 spec/fixtures/vcr/Kubetruth_CtApi/_parameters/gets_parameters.yml create mode 100644 spec/fixtures/vcr/Kubetruth_CtApi/_parameters/uses_environment_to_get_values.yml create mode 100644 spec/fixtures/vcr/Kubetruth_CtApi/_projects/doesn_t_memoize_projects_.yml create mode 100644 spec/fixtures/vcr/Kubetruth_CtApi/_projects/gets_projects.yml diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 4ea4525..32281d3 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -20,13 +20,11 @@ jobs: restore-keys: | ${{ runner.os }}-gems- - - name: Install Ruby version specified in `.ruby-version` - uses: eregon/use-ruby-action@master + - uses: satackey/action-docker-layer-caching@v0.0.11 + continue-on-error: true - - run: gem install --no-document bundler - - run: bundle config path vendor/bundle - - run: bundle install --jobs 4 --retry 3 - - run: bundle exec rspec + - name: Run the tests + run: rake test deploy: if: startsWith(github.ref, 'refs/tags/v') diff --git a/.gitignore b/.gitignore index 89af2f2..2e0ddd0 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ packaged-chart/ old-index.yaml # rspec failure tracking .rspec_status +client diff --git a/Dockerfile b/Dockerfile index 25aaac9..a25bb81 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,6 +28,7 @@ RUN apk add --no-cache \ --virtual build_deps \ $BUILD_PACKAGES +COPY client $APP_DIR/client COPY Gemfile* $APP_DIR/ RUN bundle config --local without 'development test' && \ bundle install --jobs=4 diff --git a/Gemfile b/Gemfile index 898d049..3b515f4 100644 --- a/Gemfile +++ b/Gemfile @@ -21,7 +21,7 @@ gem 'gem_logger' gem 'logging' gem 'activesupport' gem 'clamp' -gem 'graphql-client' +gem 'cloudtruth-client', path: "client" gem 'kubeclient' gem 'liquid' gem 'yaml-safe_load_stream', git: "https://github.com/wr0ngway/yaml-safe_load_stream.git", branch: "ruby_3" diff --git a/Gemfile.lock b/Gemfile.lock index 228be7c..2be54d4 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -5,6 +5,12 @@ GIT specs: yaml-safe_load_stream (0.1.2) +PATH + remote: client + specs: + cloudtruth-client (1.0.0) + typhoeus (~> 1.0, >= 1.0.1) + GEM remote: https://rubygems.org/ specs: @@ -34,6 +40,8 @@ GEM docile (1.4.0) domain_name (0.5.20190701) unf (>= 0.0.5, < 1.0.0) + ethon (0.14.0) + ffi (>= 1.15.0) ffi (1.15.3) ffi-compiler (1.0.1) ffi (>= 1.0.0) @@ -41,10 +49,6 @@ GEM fiber-local (1.0.0) gem_logger (0.3.0) activesupport - graphql (1.12.13) - graphql-client (0.16.0) - activesupport (>= 3.0) - graphql (~> 1.8) hashdiff (1.0.1) http (4.4.1) addressable (~> 2.3) @@ -114,6 +118,8 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.3) timers (4.3.3) + typhoeus (1.4.0) + ethon (>= 0.9.0) tzinfo (2.0.4) concurrent-ruby (~> 1.0) unf (0.1.4) @@ -133,9 +139,9 @@ DEPENDENCIES activesupport async clamp + cloudtruth-client! codecov gem_logger - graphql-client kubeclient liquid logging diff --git a/Rakefile b/Rakefile index 8da3b7c..ee2ed19 100644 --- a/Rakefile +++ b/Rakefile @@ -1,14 +1,14 @@ require 'yaml' require 'open-uri' -ROOT_DIR = File.expand_path(__dir__) -APP = YAML.load(File.read("#{ROOT_DIR}/.app.yml"), filename: "#{ROOT_DIR}/.app.yml", symbolize_names: true) -TMP_DIR = "#{ROOT_DIR}/tmp" +APP = YAML.load(File.read(".app.yml"), filename: ".app.yml", symbolize_names: true) +TMP_DIR = "tmp" HELMV2_DIR = "#{TMP_DIR}/helmv2" HELM_PKG_DIR = "#{TMP_DIR}/packaged-chart" +CLIENT_DIR = "client" require 'rake/clean' -CLEAN << TMP_DIR +CLEAN << TMP_DIR << CLIENT_DIR def get_var(name, env_name: name.to_s.upcase, yml_name: name.to_s.downcase.to_sym, prompt: true, required: true) value = ENV[env_name] @@ -41,8 +41,8 @@ end directory HELMV2_DIR file "#{HELMV2_DIR}/#{APP[:name]}/Chart.yaml" => [HELMV2_DIR] do - cp_r "#{ROOT_DIR}/helm/#{APP[:name]}", HELMV2_DIR, preserve: true - cp_r "#{ROOT_DIR}/helm/helmv2/.", "#{HELMV2_DIR}/#{APP[:name]}/", preserve: true + cp_r "helm/#{APP[:name]}", HELMV2_DIR, preserve: true + cp_r "helm/helmv2/.", "#{HELMV2_DIR}/#{APP[:name]}/", preserve: true chart = File.read("#{HELMV2_DIR}/#{APP[:name]}/Chart.yaml") chart = chart.gsub(/apiVersion: v2/, "apiVersion: v1") chart = chart.gsub(/version: ([0-9.]*)/, 'version: \1-helmv2') @@ -53,7 +53,7 @@ task :generate_helmv2 => ["#{HELMV2_DIR}/#{APP[:name]}/Chart.yaml"] directory HELM_PKG_DIR -HELM_SRC_DIR = "#{ROOT_DIR}/helm/#{APP[:name]}" +HELM_SRC_DIR = "helm/#{APP[:name]}" task :helm_build_package => [HELM_PKG_DIR] do sh "helm package #{HELM_SRC_DIR}", chdir: HELM_PKG_DIR end @@ -80,12 +80,16 @@ end task :helm_package => [:helm_index] -task :build_development do +task :build_development => [:client] do sh "docker build --target development -t #{APP[:name]}-development ." end task :test => [:build_development] do - sh "docker run -e CI -e CODECOV_TOKEN #{APP[:name]}-development test" + if ENV['CI'] && ENV['CODECOV_TOKEN'] + sh "set -e && ci_env=$(curl -s https://codecov.io/env | bash) && docker run -e CI -e CODECOV_TOKEN ${ci_env} #{APP[:name]}-development test" + else + sh "docker run -e CI -e CODECOV_TOKEN #{APP[:name]}-development test" + end end task :rspec do @@ -94,7 +98,7 @@ task :rspec do Rake::Task[:spec].invoke end -task :build_release do +task :build_release => [:client] do sh "docker build --target release -t #{APP[:name]} ." end @@ -111,11 +115,11 @@ end task :set_version do version = get_var('VERSION') - gsub_file("#{ROOT_DIR}/helm/#{APP[:name]}/Chart.yaml", + gsub_file("helm/#{APP[:name]}/Chart.yaml", /^version:.*/, "version: #{version}") - gsub_file("#{ROOT_DIR}/helm/#{APP[:name]}/Chart.yaml", + gsub_file("helm/#{APP[:name]}/Chart.yaml", /^appVersion:.*/, "appVersion: #{version}") - gsub_file("#{ROOT_DIR}/.app.yml", + gsub_file(".app.yml", /version:.*/, "version: #{version}") end @@ -217,3 +221,19 @@ task :console do require "pry" Pry.start end + +file "#{CLIENT_DIR}/Gemfile" => "openapi.yml" do + rm_rf "client" + sh *%W[ + docker run --rm + -v #{Dir.pwd}:/data + --user #{Process.uid}:#{Process.gid} + openapitools/openapi-generator-cli generate + -i /data/openapi.yml + -g ruby + -o /data/client + --additional-properties=gemName=cloudtruth-client + ] +end + +task :client => "#{CLIENT_DIR}/Gemfile" diff --git a/lib/kubetruth/cli.rb b/lib/kubetruth/cli.rb index b271e12..829d8d6 100755 --- a/lib/kubetruth/cli.rb +++ b/lib/kubetruth/cli.rb @@ -1,5 +1,6 @@ require_relative 'cli_base' require_relative 'ctapi' +require_relative 'kubeapi' require_relative 'etl' module Kubetruth @@ -16,6 +17,11 @@ class CLI < CLIBase environment_variable: 'CLOUDTRUTH_API_KEY', required: true + option "--api-url", + 'APIURL', "The cloudtruth api endpoint", + environment_variable: 'CLOUDTRUTH_API_URL', + default: "https://api.cloudtruth.com" + option "--kube-namespace", 'NAMESPACE', "The kubernetes namespace. Defaults to runtime namespace when run in kube" @@ -38,15 +44,10 @@ class CLI < CLIBase def execute super - kube_context = { - namespace: kube_namespace, - token: kube_token, - api_url: kube_url - } - - Kubetruth.ctapi_setup(api_key: api_key) + Kubetruth::CtApi.configure(api_key: api_key, api_url: api_url) + Kubetruth::KubeApi.configure(namespace: kube_namespace, token: kube_token, api_url: kube_url) - etl = ETL.new(kube_context: kube_context, dry_run: dry_run?) + etl = ETL.new(dry_run: dry_run?) Signal.trap("HUP") do puts "Handling HUP signal - waking up ETL poller" # logger cant be called from trap diff --git a/lib/kubetruth/ctapi.rb b/lib/kubetruth/ctapi.rb index 66c38f6..bbd417c 100644 --- a/lib/kubetruth/ctapi.rb +++ b/lib/kubetruth/ctapi.rb @@ -1,147 +1,126 @@ -require "graphql/client" -require "graphql/client/http" +require 'uri' +require "cloudtruth-client" require_relative 'parameter' module Kubetruth + class CtApi - def self.ctapi_setup(api_key:, api_url: nil) - unless Kubetruth.const_defined?(:CtApi) - ::Logging.logger.root.debug {"Setting up CtApi"} - api_url ||= "https://api.cloudtruth.com/graphql" + @@instance = nil - clazz = Class.new do + def self.configure(api_key:, api_url:) + @@instance = self.new(api_key: api_key, api_url: api_url) + end - include GemLogger::LoggerSupport + def self.instance + raise ArgumentError.new("CtApi has not been configured") if @@instance.nil? + return @@instance + end - cattr_accessor :http, :schema, :client, :queries + include GemLogger::LoggerSupport - self.http = ::GraphQL::Client::HTTP.new(api_url) do - define_method :headers do |context = {}| - { "User-Agent": "kubetruth/#{Kubetruth::VERSION}", "Authorization": "Bearer #{api_key}" } - end - end - self.schema = ::GraphQL::Client.load_schema(http) - self.client = ::GraphQL::Client.new(schema: schema, execute: http) - self.client.allow_dynamic_queries = true - - self.queries = {} - - self.queries[:EnvironmentsQuery] = client.parse <<~GRAPHQL - query { - viewer { - organization { - environments { - nodes { - id - name - } - } - } - } - } - GRAPHQL - - self.queries[:ProjectsQuery] = client.parse <<~GRAPHQL - query { - viewer { - organization { - projects { - nodes { - id - name - } - } - } - } - } - GRAPHQL - - self.queries[:ParametersQuery] = client.parse <<~GRAPHQL - query($environmentId: ID, $projectName: String, $searchTerm: String) { - viewer { - organization { - project(name: $projectName) { - parameters(searchTerm: $searchTerm, orderBy: { keyName: ASC }) { - nodes { - id - keyName - isSecret - environmentValue(environmentId: $environmentId) { - parameterValue - } - } - } - } - } + attr_reader :client, :apis + + class ApiConfiguration < CloudtruthClient::Configuration + + # The presence of JWTAuth in the hardcoded default auth_settings was + # overwriting our set api key with nil in + # CloudtruthClient:„:ApiClient#update_params_for_auth! + def auth_settings + { + 'ApiKeyAuth' => + { + type: 'api_key', + in: 'header', + key: 'Authorization', + value: api_key_with_prefix('ApiKeyAuth') } - } - GRAPHQL + } + end - def initialize() - end + end - def environments - @environments ||= begin - variables = {} - result = client.query(self.queries[:EnvironmentsQuery], variables: variables) - logger.debug{"Environments query result: #{result.inspect}"} - Hash[result&.data&.viewer&.organization&.environments&.nodes&.collect {|e| [e.name, e.id] }] - end - end + def initialize(api_key:, api_url:) + @api_key = api_key + @api_url = api_url + uri = URI(@api_url) + config = ApiConfiguration.new + config.server_index = nil + config.scheme = uri.scheme + host_port = uri.host + host_port << ":#{uri.port}" unless [80, 443].include?(uri.port) + config.host = host_port + config.base_path = uri.path + config.api_key = {'ApiKeyAuth' => api_key} + config.api_key_prefix = {'ApiKeyAuth' => "Api-Key"} + config.logger = logger + # config.debugging = logger.debug? + @client = CloudtruthClient::ApiClient.new(config) + @client.user_agent = "kubetruth/#{Kubetruth::VERSION}" + @apis = { + api: CloudtruthClient::ApiApi.new(@client), + environments: CloudtruthClient::EnvironmentsApi.new(@client), + projects: CloudtruthClient::ProjectsApi.new(@client) + } + end - def environment_id(environment) - env_id = self.environments[environment] + def environments + @environments ||= begin + result = apis[:environments].environments_list + logger.debug{"Environments query result: #{result.inspect}"} + Hash[result&.results&.collect {|r| [r.name, r.id]}] + end + end - # retry in case environments have been updated upstream since we cached - # them - if env_id.nil? - logger.debug {"Unknown environment, retrying after clearing cache"} - @environments = nil - env_id = self.environments[environment] - end + def environment_names + environments.keys + end - raise Kubetruth::Error.new("Unknown environment: #{environment}") unless env_id - env_id.to_s - end + def environment_id(environment) + env_id = self.environments[environment] - def projects - variables = {} - 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 + # retry in case environments have been updated upstream since we cached + # them + if env_id.nil? + logger.debug {"Unknown environment, retrying after clearing cache"} + @environments = nil + env_id = self.environments[environment] + end - def environment_names - environments.keys - end + raise Kubetruth::Error.new("Unknown environment: #{environment}") unless env_id + env_id.to_s + end - def project_names - projects.keys - end + def projects + result = apis[:projects].projects_list + logger.debug{"Projects query result: #{result.inspect}"} + Hash[result&.results&.collect {|r| [r.name, r.id]}] + end - def parameters(searchTerm: "", project: nil, environment: "default") - variables = {searchTerm: searchTerm, environmentId: environment_id(environment)} - variables[:projectName] = project if project.present? + def project_names + projects.keys + end - result = client.query(self.queries[:ParametersQuery], variables: variables) - logger.debug do - cleaned = result&.original_hash&.deep_dup - cleaned&.[]("data")&.[]("viewer")&.[]("organization")&.[]("project")&.[]("parameters")&.[]("nodes")&.each do |e| - e["environmentValue"]["parameterValue"] = "" if e["isSecret"] + def parameters(project:, environment: "default") + env_id = environment_id(environment) + proj_id = projects[project] + result = apis[:projects].projects_parameters_list(proj_id, environment: env_id) + logger.debug do + cleaned = result&.to_hash&.deep_dup + cleaned&.[](:results)&.each do |param| + if param[:secret] + param[:values].each do |k, v| + v[:value] = "" end - "Parameters query result: #{cleaned.inspect}, errors: #{result&.errors.inspect}" - end - - 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 - + "Parameters query result: #{cleaned.inspect}" + end + result&.results&.collect do |param| + # values is keyed by url, but we forced it to only have a single entry + # for the supplied environment + Kubetruth::Parameter.new(key: param.name, value: param.values.values.first&.value, secret: param.secret) end - - Kubetruth.const_set(:CtApi, clazz) end - ::Kubetruth::CtApi - end + end end diff --git a/lib/kubetruth/etl.rb b/lib/kubetruth/etl.rb index 21aaf1d..f680837 100644 --- a/lib/kubetruth/etl.rb +++ b/lib/kubetruth/etl.rb @@ -5,7 +5,6 @@ using YAMLSafeLoadStream require_relative 'config' -require_relative 'ctapi' require_relative 'kubeapi' require_relative 'project_collection' @@ -13,13 +12,12 @@ module Kubetruth class ETL include GemLogger::LoggerSupport - def initialize(kube_context:, dry_run: false) - @kube_context = kube_context + def initialize(dry_run: false) @dry_run = dry_run end def kubeapi - @kubeapi ||= KubeApi.new(**@kube_context) + KubeApi.instance end def interruptible_sleep(interval) diff --git a/lib/kubetruth/kubeapi.rb b/lib/kubetruth/kubeapi.rb index 175b07f..cfbe3e0 100644 --- a/lib/kubetruth/kubeapi.rb +++ b/lib/kubetruth/kubeapi.rb @@ -5,6 +5,17 @@ class KubeApi include GemLogger::LoggerSupport + @@instance = nil + + def self.configure(namespace:, token:, api_url:) + @@instance = self.new(namespace: namespace, token: token, api_url: api_url) + end + + def self.instance + raise ArgumentError.new("KubeApi has not been configured") if @@instance.nil? + return @@instance + end + attr_accessor :namespace NAMESPACE_PATH = '/var/run/secrets/kubernetes.io/serviceaccount/namespace' diff --git a/lib/kubetruth/project.rb b/lib/kubetruth/project.rb index a45520c..288e42f 100644 --- a/lib/kubetruth/project.rb +++ b/lib/kubetruth/project.rb @@ -5,26 +5,14 @@ module Kubetruth def parameters @parameters ||= begin - result = [] - - # First search for all the selected parameters - # - searchTerm = "" - if spec.key_selector.source =~ /^[\w\.\-]*$/ - logger.debug {"Simple key_selector '#{spec.key_selector.source}', using as search filter to fetch parameters"} - searchTerm = spec.key_selector.source - else - logger.debug {"Complex key_selector '#{spec.key_selector.source}', using as client-side regexp match against parameters"} - end - - params = collection.ctapi.parameters(searchTerm: searchTerm, project: name, environment: spec.environment) + params = collection.ctapi.parameters(project: name, environment: spec.environment) logger.debug do cleaned = params.deep_dup cleaned.each {|p| p.value = "" if p.secret} "Params fetched from cloudtruth: #{cleaned.inspect}" end - if searchTerm.blank? && spec.key_selector.source.present? + if spec.key_selector.source.present? logger.debug {"Looking for key pattern matches to '#{spec.key_selector.inspect}'"} params = params.select do |param| if param.key.match(spec.key_selector) diff --git a/lib/kubetruth/project_collection.rb b/lib/kubetruth/project_collection.rb index 732f120..c8d949f 100644 --- a/lib/kubetruth/project_collection.rb +++ b/lib/kubetruth/project_collection.rb @@ -12,9 +12,7 @@ def initialize() end def ctapi - @ctapi ||= begin - Kubetruth::CtApi.new - end + Kubetruth::CtApi.instance end def names diff --git a/openapi.yml b/openapi.yml new file mode 100644 index 0000000..a983eca --- /dev/null +++ b/openapi.yml @@ -0,0 +1,4590 @@ +openapi: 3.0.3 +info: + title: CloudTruth Management API + version: '' + description: CloudTruth centralizes your parameters and secrets making them easier + to manage and use. + contact: + name: CloudTruth Support + email: support@cloudtruth.com +paths: + /api/schema/: + get: + operationId: api_schema_retrieve + description: |- + OpenApi3 schema for this API. Format can be selected via content negotiation. + + - YAML: application/vnd.oai.openapi + - JSON: application/vnd.oai.openapi+json + parameters: + - in: query + name: format + schema: + type: string + enum: + - json + - yaml + - in: query + name: lang + schema: + type: string + enum: + - af + - ar + - ar-dz + - ast + - az + - be + - bg + - bn + - br + - bs + - ca + - cs + - cy + - da + - de + - dsb + - el + - en + - en-au + - en-gb + - eo + - es + - es-ar + - es-co + - es-mx + - es-ni + - es-ve + - et + - eu + - fa + - fi + - fr + - fy + - ga + - gd + - gl + - he + - hi + - hr + - hsb + - hu + - hy + - ia + - id + - ig + - io + - is + - it + - ja + - ka + - kab + - kk + - km + - kn + - ko + - ky + - lb + - lt + - lv + - mk + - ml + - mn + - mr + - my + - nb + - ne + - nl + - nn + - os + - pa + - pl + - pt + - pt-br + - ro + - ru + - sk + - sl + - sq + - sr + - sr-latn + - sv + - sw + - ta + - te + - tg + - th + - tk + - tr + - tt + - udm + - uk + - ur + - uz + - vi + - zh-hans + - zh-hant + tags: + - api + security: + - JWTAuth: [] + - ApiKeyAuth: [] + - {} + responses: + '200': + content: + application/vnd.oai.openapi: + schema: + type: object + additionalProperties: {} + application/yaml: + schema: + type: object + additionalProperties: {} + application/vnd.oai.openapi+json: + schema: + type: object + additionalProperties: {} + application/json: + schema: + type: object + additionalProperties: {} + description: '' + /api/v1/audit/: + get: + operationId: audit_list + description: A searchable log of all the actions taken by users and service + accounts within the organization. + parameters: + - in: query + name: action + schema: + type: string + enum: + - access + - create + - delete + - update + description: The action that was taken. + - in: query + name: object_id + schema: + type: string + - in: query + name: object_type + schema: + type: string + - name: page + required: false + in: query + description: A page number within the paginated result set. + schema: + type: integer + - in: query + name: timestamp + schema: + type: string + format: date-time + + - in: query + name: user_id + schema: + type: string + tags: + - audit + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedAuditTrailList' + description: '' + /api/v1/audit/{id}/: + get: + operationId: audit_retrieve + description: Retrieve one record from the audit log. + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: A unique identifier for the audit record. + required: true + tags: + - audit + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/AuditTrail' + description: '' + /api/v1/audit/summary/: + get: + operationId: audit_summary_retrieve + description: Summary information about the organization's audit trail. + tags: + - audit + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/AuditTrailSummary' + description: '' + /api/v1/environments/: + get: + operationId: environments_list + description: '' + parameters: + - in: query + name: name + schema: + type: string + - name: page + required: false + in: query + description: A page number within the paginated result set. + schema: + type: integer + - in: query + name: parent__name + schema: + type: string + tags: + - environments + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedEnvironmentList' + description: '' + post: + operationId: environments_create + description: '' + tags: + - environments + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/EnvironmentCreate' + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/EnvironmentCreate' + multipart/form-data: + schema: + $ref: '#/components/schemas/EnvironmentCreate' + required: true + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '201': + content: + application/json: + schema: + $ref: '#/components/schemas/Environment' + description: '' + /api/v1/environments/{id}/: + get: + operationId: environments_retrieve + description: '' + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: A unique identifier for the environment. + required: true + tags: + - environments + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/Environment' + description: '' + put: + operationId: environments_update + description: '' + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: A unique identifier for the environment. + required: true + tags: + - environments + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/Environment' + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/Environment' + multipart/form-data: + schema: + $ref: '#/components/schemas/Environment' + required: true + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/Environment' + description: '' + patch: + operationId: environments_partial_update + description: '' + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: A unique identifier for the environment. + required: true + tags: + - environments + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/PatchedEnvironment' + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/PatchedEnvironment' + multipart/form-data: + schema: + $ref: '#/components/schemas/PatchedEnvironment' + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/Environment' + description: '' + delete: + operationId: environments_destroy + description: '' + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: A unique identifier for the environment. + required: true + tags: + - environments + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '204': + description: No response body + /api/v1/integrations/aws/: + get: + operationId: integrations_aws_list + description: '' + parameters: + - in: query + name: aws_account_id + schema: + type: string + - in: query + name: aws_role_name + schema: + type: string + - name: page + required: false + in: query + description: A page number within the paginated result set. + schema: + type: integer + tags: + - integrations + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedAwsIntegrationList' + description: '' + post: + operationId: integrations_aws_create + description: |- + ### Description ### + + Establishes an AWS Integration for your CloudTruth organization. + + ### Pre-Conditions ### + + - An AWS Integration for the account and role cannot already exist. + ### Post-Conditions ### + + - You must establish an IAM role and trust relationship based on the Role Name and the External ID. + summary: Establishes an AWS Integration. + tags: + - integrations + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/AwsIntegrationCreate' + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/AwsIntegrationCreate' + multipart/form-data: + schema: + $ref: '#/components/schemas/AwsIntegrationCreate' + required: true + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '201': + content: + application/json: + schema: + $ref: '#/components/schemas/AwsIntegration' + description: '' + /api/v1/integrations/aws/{id}/: + get: + operationId: integrations_aws_retrieve + description: '' + summary: Get details of an AWS Integration. + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: The unique identifier for the integration. + required: true + - in: query + name: refresh_status + schema: + type: boolean + description: Refresh the integration status before returning the details. + tags: + - integrations + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/AwsIntegration' + description: '' + put: + operationId: integrations_aws_update + description: '' + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: The unique identifier for the integration. + required: true + tags: + - integrations + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/AwsIntegration' + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/AwsIntegration' + multipart/form-data: + schema: + $ref: '#/components/schemas/AwsIntegration' + required: true + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/AwsIntegration' + description: '' + patch: + operationId: integrations_aws_partial_update + description: '' + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: The unique identifier for the integration. + required: true + tags: + - integrations + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/PatchedAwsIntegration' + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/PatchedAwsIntegration' + multipart/form-data: + schema: + $ref: '#/components/schemas/PatchedAwsIntegration' + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/AwsIntegration' + description: '' + delete: + operationId: integrations_aws_destroy + description: '' + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: The unique identifier for the integration. + required: true + tags: + - integrations + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '204': + description: No response body + /api/v1/integrations/explore/: + get: + operationId: integrations_explore_list + description: | + ### Description ### + + Queries a third-party integration to retrieve the data specified by the FQN. + + You can start exploring by not specifying an 'fqn', which will return a list of FQNs for the existing third-party integrations. Third-party integrations can be configured via the Integrations section of the web application. + summary: Retrieve third-party integration data for the specified FQN. + parameters: + - in: query + name: fqn + schema: + type: string + format: uri + description: FQN (URL-like) for third-party integration. + - name: page + required: false + in: query + description: A page number within the paginated result set. + schema: + type: integer + tags: + - integrations + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedIntegrationExplorerList' + description: The content at the FQN. + '204': + description: No content found at FQN. + '400': + description: Invalid FQN requested. + '403': + description: Unable to contact the third-party integration. + '415': + description: Unsupported content type (usually this means it is binary). + '507': + description: Content exceeds internal size limit of 1MB. + /api/v1/integrations/github/: + get: + operationId: integrations_github_list + description: '' + parameters: + - in: query + name: gh_organization_slug + schema: + type: string + - name: page + required: false + in: query + description: A page number within the paginated result set. + schema: + type: integer + tags: + - integrations + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedGitHubIntegrationList' + description: '' + post: + operationId: integrations_github_create + description: "### Description ###\n\nEstablishes a GitHub Integration in your\ + \ CloudTruth organization.\n\n### Pre-Conditions ###\n\n- The user must be\ + \ an Administrator or Owner of your organization.\n- A GitHub Integration\ + \ with the `installation_id` cannot \nalready exist in this organization.\n\ + - The user must first install the CloudTruth GitHub Application in \ntheir\ + \ GitHub organization and obtain the `installation_id` of the \napplication\ + \ in order to create the integration.\n\n### Initiating the GitHub Application\ + \ Installation ###\n\n- Go to `https://github.com/apps/cloudtruth-local/installations/new?state=`\n\ + - On successful installation the browser will return to \n`https://app.localhost/app_setup/github`\ + \ \nand provide the `installation_id` in the URI.\n- POST to this api to verify\ + \ and establish the integration." + summary: Establishes a GitHub Integration. + tags: + - integrations + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/GitHubIntegrationCreate' + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/GitHubIntegrationCreate' + multipart/form-data: + schema: + $ref: '#/components/schemas/GitHubIntegrationCreate' + required: true + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '201': + content: + application/json: + schema: + $ref: '#/components/schemas/GitHubIntegration' + description: '' + /api/v1/integrations/github/{id}/: + get: + operationId: integrations_github_retrieve + description: '' + summary: Get details of a GitHub Integration. + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: The unique identifier for the integration. + required: true + - in: query + name: refresh_status + schema: + type: boolean + description: Refresh the integration status before returning the details. + tags: + - integrations + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/GitHubIntegration' + description: '' + delete: + operationId: integrations_github_destroy + description: '' + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: The unique identifier for the integration. + required: true + tags: + - integrations + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '204': + description: No response body + /api/v1/invitations/: + get: + operationId: invitations_list + description: '' + parameters: + - in: query + name: email + schema: + type: string + - name: page + required: false + in: query + description: A page number within the paginated result set. + schema: + type: integer + - in: query + name: role + schema: + type: string + enum: + - ADMIN + - CONTRIB + - OWNER + - VIEWER + description: The role that the user will have in the organization, should + the user accept. + - in: query + name: state + schema: + type: string + enum: + - accepted + - bounced + - pending + - sent + description: The current state of the invitation. + tags: + - invitations + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedInvitationList' + description: '' + post: + operationId: invitations_create + description: Extend an invitation for someone else to join your organization. + summary: Create an invitation. + tags: + - invitations + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/InvitationCreate' + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/InvitationCreate' + multipart/form-data: + schema: + $ref: '#/components/schemas/InvitationCreate' + required: true + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '201': + content: + application/json: + schema: + $ref: '#/components/schemas/Invitation' + description: '' + '403': + description: Permission denied. Is the invitation role more permissive + than your own? + '404': + description: Bad Request. Is there already an invitation for that email? + /api/v1/invitations/{id}/: + get: + operationId: invitations_retrieve + description: '' + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: The unique identifier of an invitation. + required: true + tags: + - invitations + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/Invitation' + description: '' + put: + operationId: invitations_update + description: '' + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: The unique identifier of an invitation. + required: true + tags: + - invitations + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/Invitation' + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/Invitation' + multipart/form-data: + schema: + $ref: '#/components/schemas/Invitation' + required: true + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/Invitation' + description: '' + patch: + operationId: invitations_partial_update + description: '' + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: The unique identifier of an invitation. + required: true + tags: + - invitations + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/PatchedInvitation' + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/PatchedInvitation' + multipart/form-data: + schema: + $ref: '#/components/schemas/PatchedInvitation' + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/Invitation' + description: '' + delete: + operationId: invitations_destroy + description: '' + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: The unique identifier of an invitation. + required: true + tags: + - invitations + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '204': + description: No response body + /api/v1/invitations/{id}/accept/: + post: + operationId: invitations_accept_create + description: |- + Accept an invitation to join an organization. + + The email address used to log in and accept the invitation must match + the email address specified by the inviting user when creating the invitation. + + On success the client receives the invitation record as it was updated. + The client should then regenerate the JWT with the organization scope and + proceed to the default landing page. + summary: Accept an invitation. + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: The invitation ID. + required: true + tags: + - invitations + security: + - JWTAuth: [] + - ApiKeyAuth: [] + - {} + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/Invitation' + description: The invitation was accepted. The client should obtain an organization + scope token and proceed to the landing page. + '403': + description: Permission denied. The accepting user's email may not match + the invitation? + '404': + description: Bad Request. The invitation does not exist or has already + been accepted? + /api/v1/invitations/{id}/resend/: + post: + operationId: invitations_resend_create + description: Re-send an invitation to the recipient. + summary: Resend an invitation. + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: The invitation ID. + required: true + tags: + - invitations + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/Invitation' + description: The invitation state was reset to `pending`, which causes it + to get sent again. The most recent state is returned. Clients should + check the state. + '404': + description: Bad Request. Was the invitation already accepted? + /api/v1/memberships/: + get: + operationId: memberships_list + description: '' + parameters: + - name: page + required: false + in: query + description: A page number within the paginated result set. + schema: + type: integer + - in: query + name: role + schema: + type: string + enum: + - ADMIN + - CONTRIB + - OWNER + - VIEWER + description: The role that the user has in the organization. + - in: query + name: user + schema: + type: string + description: The unique identifier of a user. + tags: + - memberships + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedMembershipList' + description: '' + post: + operationId: memberships_create + description: '' + tags: + - memberships + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/MembershipCreate' + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/MembershipCreate' + multipart/form-data: + schema: + $ref: '#/components/schemas/MembershipCreate' + required: true + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '201': + content: + application/json: + schema: + $ref: '#/components/schemas/Membership' + description: '' + /api/v1/memberships/{id}/: + get: + operationId: memberships_retrieve + description: '' + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: A unique identifier for the membership. + required: true + tags: + - memberships + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/Membership' + description: '' + put: + operationId: memberships_update + description: '' + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: A unique identifier for the membership. + required: true + tags: + - memberships + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/Membership' + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/Membership' + multipart/form-data: + schema: + $ref: '#/components/schemas/Membership' + required: true + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/Membership' + description: '' + patch: + operationId: memberships_partial_update + description: '' + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: A unique identifier for the membership. + required: true + tags: + - memberships + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/PatchedMembership' + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/PatchedMembership' + multipart/form-data: + schema: + $ref: '#/components/schemas/PatchedMembership' + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/Membership' + description: '' + delete: + operationId: memberships_destroy + description: '' + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: A unique identifier for the membership. + required: true + tags: + - memberships + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '204': + description: No response body + /api/v1/organizations/: + get: + operationId: organizations_list + description: '' + parameters: + - in: query + name: name + schema: + type: string + - name: page + required: false + in: query + description: A page number within the paginated result set. + schema: + type: integer + tags: + - organizations + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedOrganizationList' + description: '' + post: + operationId: organizations_create + description: '' + tags: + - organizations + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/OrganizationCreate' + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/OrganizationCreate' + multipart/form-data: + schema: + $ref: '#/components/schemas/OrganizationCreate' + required: true + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '201': + content: + application/json: + schema: + $ref: '#/components/schemas/Organization' + description: '' + /api/v1/organizations/{id}/: + get: + operationId: organizations_retrieve + description: '' + parameters: + - in: path + name: id + schema: + type: string + description: A unique identifier for the organization. + required: true + tags: + - organizations + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/Organization' + description: '' + put: + operationId: organizations_update + description: '' + parameters: + - in: path + name: id + schema: + type: string + description: A unique identifier for the organization. + required: true + tags: + - organizations + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/Organization' + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/Organization' + multipart/form-data: + schema: + $ref: '#/components/schemas/Organization' + required: true + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/Organization' + description: '' + patch: + operationId: organizations_partial_update + description: '' + parameters: + - in: path + name: id + schema: + type: string + description: A unique identifier for the organization. + required: true + tags: + - organizations + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/PatchedOrganization' + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/PatchedOrganization' + multipart/form-data: + schema: + $ref: '#/components/schemas/PatchedOrganization' + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/Organization' + description: '' + delete: + operationId: organizations_destroy + description: '' + parameters: + - in: path + name: id + schema: + type: string + description: A unique identifier for the organization. + required: true + tags: + - organizations + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '204': + description: No response body + /api/v1/projects/: + get: + operationId: projects_list + description: '' + parameters: + - in: query + name: name + schema: + type: string + - name: page + required: false + in: query + description: A page number within the paginated result set. + schema: + type: integer + tags: + - projects + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedProjectList' + description: '' + post: + operationId: projects_create + description: '' + tags: + - projects + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/ProjectCreate' + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/ProjectCreate' + multipart/form-data: + schema: + $ref: '#/components/schemas/ProjectCreate' + required: true + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '201': + content: + application/json: + schema: + $ref: '#/components/schemas/Project' + description: '' + /api/v1/projects/{id}/: + get: + operationId: projects_retrieve + description: '' + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: A unique identifier for the project. + required: true + tags: + - projects + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/Project' + description: '' + put: + operationId: projects_update + description: '' + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: A unique identifier for the project. + required: true + tags: + - projects + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/Project' + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/Project' + multipart/form-data: + schema: + $ref: '#/components/schemas/Project' + required: true + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/Project' + description: '' + patch: + operationId: projects_partial_update + description: '' + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: A unique identifier for the project. + required: true + tags: + - projects + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/PatchedProject' + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/PatchedProject' + multipart/form-data: + schema: + $ref: '#/components/schemas/PatchedProject' + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/Project' + description: '' + delete: + operationId: projects_destroy + description: '' + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: A unique identifier for the project. + required: true + tags: + - projects + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '204': + description: No response body + /api/v1/projects/{project_pk}/parameter-export/: + get: + operationId: projects_parameter_export_list + description: |- + Exports all parameters in this project in the requested format. + + Parameter names and values will be coerced to the proper format (e.g. for a + dotenv export, my_parameter will be capitalized to MY_PARAMETER and its value + will be in a quoted string). Note that capitalization is the only name coercion + that will be performed on parameter names, names that are invalid for a given + format will be omitted. + parameters: + - in: query + name: contains + schema: + type: string + description: (Optional) Only include parameters whose names contain the provided + string. + - in: query + name: endswith + schema: + type: string + description: (Optional) Only include parameters whose names end with the provided + string. + - in: query + name: environment + schema: + type: string + format: uuid + description: (Optional) ID of the environment to use to instantiate this template + - in: query + name: explicit_export + schema: + type: boolean + description: If true, explicitly marks parameters with export, e.g. export + FOO=bar. Defaults to false. + - in: query + name: mask_secrets + schema: + type: boolean + description: If true, masks all secrets in the template (defaults to false) + - in: query + name: output + schema: + type: string + description: 'Format to output: One of ''docker'', ''dotenv'', ''shell''.' + - name: page + required: false + in: query + description: A page number within the paginated result set. + schema: + type: integer + - in: path + name: project_pk + schema: + type: string + format: uuid + required: true + - in: query + name: startswith + schema: + type: string + description: (Optional) Only include parameters whose names start with the + provided string. + - in: query + name: wrap + schema: + type: boolean + description: Indicates all secrets are wrapped. For more information on secret + wrapping, see the documentation. + tags: + - projects + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/ParameterExport' + description: '' + /api/v1/projects/{project_pk}/parameters/: + get: + operationId: projects_parameters_list + description: '' + parameters: + - in: query + name: environment + schema: + type: string + format: uuid + description: (Optional) ID of the environment to get parameter values for. + - in: query + name: mask_secrets + schema: + type: boolean + description: If true, masks all secrets (defaults to false). + - in: query + name: name + schema: + type: string + - name: page + required: false + in: query + description: A page number within the paginated result set. + schema: + type: integer + - in: path + name: project_pk + schema: + type: string + format: uuid + required: true + - in: query + name: wrap + schema: + type: boolean + description: If true, wraps all secrets (defaults to false) - see documentation + for more details. + tags: + - projects + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedParameterList' + description: '' + post: + operationId: projects_parameters_create + description: '' + parameters: + - in: path + name: project_pk + schema: + type: string + format: uuid + required: true + tags: + - projects + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/ParameterCreate' + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/ParameterCreate' + multipart/form-data: + schema: + $ref: '#/components/schemas/ParameterCreate' + required: true + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '201': + content: + application/json: + schema: + $ref: '#/components/schemas/Parameter' + description: '' + /api/v1/projects/{project_pk}/parameters/{parameter_pk}/values/: + get: + operationId: projects_parameters_values_list + description: "\n Retrieve previously set values of a parameter in one\ + \ or all environments.\n To see all the _effective_ values for a parameter\ + \ across every environment,\n use the Parameters API (see the `values`\ + \ field).\n " + summary: Retrieve values. + parameters: + - in: query + name: environment + schema: + type: string + description: ID of the environment to limit the result to. If this is not + specified then the result will contain a value for any environment in which + it is set. You cannot use this option to retrieve the _effective_ value + of a parameter in an environment for which is is not explicitly set. To + see _effective_ values use the Parameters API (see the `values` field). + - in: query + name: mask_secrets + schema: + type: boolean + description: (Optional) If true, mask secret values in responses (defaults + to false). + - name: page + required: false + in: query + description: A page number within the paginated result set. + schema: + type: integer + - in: path + name: parameter_pk + schema: + type: string + format: uuid + description: The parameter id. + required: true + - in: path + name: project_pk + schema: + type: string + format: uuid + description: The project id. + required: true + - in: query + name: wrap + schema: + type: boolean + description: 'For writes, indicates `static_value` is wrapped; for reads, + indicates `value` is wrapped. For more information on secret wrapping, see + the documentation. ' + tags: + - projects + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedValueList' + description: '' + post: + operationId: projects_parameters_values_create + description: Set the value of a parameter in an environment. + summary: Set a value. + parameters: + - in: path + name: parameter_pk + schema: + type: string + format: uuid + description: The parameter id. + required: true + - in: path + name: project_pk + schema: + type: string + format: uuid + description: The project id. + required: true + - in: query + name: wrap + schema: + type: boolean + description: 'Indicates the `static_value` is a wrapped secret. For more information + on secret wrapping, see the documentation. ' + tags: + - projects + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/ValueCreate' + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/ValueCreate' + multipart/form-data: + schema: + $ref: '#/components/schemas/ValueCreate' + required: true + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '201': + content: + application/json: + schema: + $ref: '#/components/schemas/Value' + description: '' + /api/v1/projects/{project_pk}/parameters/{parameter_pk}/values/{id}/: + get: + operationId: projects_parameters_values_retrieve + description: Retrieve the value of a parameter in an environment. + summary: Retrieve a value. + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: A unique identifier for the value. + required: true + - in: query + name: mask_secrets + schema: + type: boolean + description: (Optional) If true, mask secret values in responses (defaults + to false). + - in: path + name: parameter_pk + schema: + type: string + format: uuid + description: The parameter id. + required: true + - in: path + name: project_pk + schema: + type: string + format: uuid + description: The project id. + required: true + - in: query + name: wrap + schema: + type: boolean + description: 'For writes, indicates `static_value` is wrapped; for reads, + indicates `value` is wrapped. For more information on secret wrapping, see + the documentation. ' + tags: + - projects + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/Value' + description: '' + put: + operationId: projects_parameters_values_update + description: Update the value of a parameter in an environment. + summary: Update a value. + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: A unique identifier for the value. + required: true + - in: path + name: parameter_pk + schema: + type: string + format: uuid + description: The parameter id. + required: true + - in: path + name: project_pk + schema: + type: string + format: uuid + description: The project id. + required: true + - in: query + name: wrap + schema: + type: boolean + description: 'Indicates the `static_value` is a wrapped secret. For more information + on secret wrapping, see the documentation. ' + tags: + - projects + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/Value' + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/Value' + multipart/form-data: + schema: + $ref: '#/components/schemas/Value' + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/Value' + description: '' + patch: + operationId: projects_parameters_values_partial_update + description: Update the value of a parameter in an environment. + summary: Update a value. + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: A unique identifier for the value. + required: true + - in: path + name: parameter_pk + schema: + type: string + format: uuid + description: The parameter id. + required: true + - in: path + name: project_pk + schema: + type: string + format: uuid + description: The project id. + required: true + - in: query + name: wrap + schema: + type: boolean + description: 'Indicates the `static_value` is a wrapped secret. For more information + on secret wrapping, see the documentation. ' + tags: + - projects + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/PatchedValue' + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/PatchedValue' + multipart/form-data: + schema: + $ref: '#/components/schemas/PatchedValue' + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/Value' + description: '' + delete: + operationId: projects_parameters_values_destroy + description: Destroy the value of a parameter in an environment. + summary: Destroy a value. + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: A unique identifier for the value. + required: true + - in: path + name: parameter_pk + schema: + type: string + format: uuid + description: The parameter id. + required: true + - in: path + name: project_pk + schema: + type: string + format: uuid + description: The project id. + required: true + tags: + - projects + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '204': + description: No response body + /api/v1/projects/{project_pk}/parameters/{id}/: + get: + operationId: projects_parameters_retrieve + description: '' + parameters: + - in: query + name: environment + schema: + type: string + format: uuid + description: (Optional) ID of the environment to get parameter values for. + - in: path + name: id + schema: + type: string + format: uuid + description: A unique identifier for the parameter. + required: true + - in: query + name: mask_secrets + schema: + type: boolean + description: If true, masks all secrets (defaults to false). + - in: path + name: project_pk + schema: + type: string + format: uuid + required: true + - in: query + name: wrap + schema: + type: boolean + description: If true, wraps all secrets (defaults to false) - see documentation + for more details. + tags: + - projects + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/Parameter' + description: '' + put: + operationId: projects_parameters_update + description: '' + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: A unique identifier for the parameter. + required: true + - in: path + name: project_pk + schema: + type: string + format: uuid + required: true + tags: + - projects + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/Parameter' + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/Parameter' + multipart/form-data: + schema: + $ref: '#/components/schemas/Parameter' + required: true + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/Parameter' + description: '' + '400': + description: While checking pre-conditions, a dynamic value was encountered + that could not be resolved. + '404': + description: While checking pre-conditions, a dynamic value was encountered + that could not be resolved. + '422': + description: 'A pre-condition to modifying the `secret` setting of the parameter + failed, for example setting `secret: false` and having a dynamic value + that resolves to a value that is a secret. In this case it would be unsafe + to allow the `secret` setting to change.' + '415': + description: While checking pre-conditions, a dynamic value was encountered + that has an invalid content type. + '507': + description: While checking pre-conditions, a dynamic value was encountered + that was too large to process. + patch: + operationId: projects_parameters_partial_update + description: '' + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: A unique identifier for the parameter. + required: true + - in: path + name: project_pk + schema: + type: string + format: uuid + required: true + tags: + - projects + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/PatchedParameter' + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/PatchedParameter' + multipart/form-data: + schema: + $ref: '#/components/schemas/PatchedParameter' + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/Parameter' + description: '' + '400': + description: While checking pre-conditions, a dynamic value was encountered + that could not be resolved. + '404': + description: While checking pre-conditions, a dynamic value was encountered + that could not be resolved. + '422': + description: 'A pre-condition to modifying the `secret` setting of the parameter + failed, for example setting `secret: false` and having a dynamic value + that resolves to a value that is a secret. In this case it would be unsafe + to allow the `secret` setting to change.' + '415': + description: While checking pre-conditions, a dynamic value was encountered + that has an invalid content type. + '507': + description: While checking pre-conditions, a dynamic value was encountered + that was too large to process. + delete: + operationId: projects_parameters_destroy + description: '' + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: A unique identifier for the parameter. + required: true + - in: path + name: project_pk + schema: + type: string + format: uuid + required: true + tags: + - projects + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/Parameter' + description: '' + '400': + description: While checking pre-conditions, a dynamic value was encountered + that could not be resolved. + '404': + description: While checking pre-conditions, a dynamic value was encountered + that could not be resolved. + '422': + description: 'A pre-condition to modifying the `secret` setting of the parameter + failed, for example setting `secret: false` and having a dynamic value + that resolves to a value that is a secret. In this case it would be unsafe + to allow the `secret` setting to change.' + '415': + description: While checking pre-conditions, a dynamic value was encountered + that has an invalid content type. + '507': + description: While checking pre-conditions, a dynamic value was encountered + that was too large to process. + /api/v1/projects/{project_pk}/template-preview/: + post: + operationId: projects_template_preview_create + description: Endpoint for previewing a template. + parameters: + - in: query + name: environment + schema: + type: string + format: uuid + description: (Optional) ID of the environment to use to instantiate this template + - in: query + name: mask_secrets + schema: + type: boolean + description: If true, masks all secrets in the template (defaults to false) + - in: path + name: project_pk + schema: + type: string + format: uuid + required: true + tags: + - projects + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/TemplatePreview' + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/TemplatePreview' + multipart/form-data: + schema: + $ref: '#/components/schemas/TemplatePreview' + required: true + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '201': + content: + application/json: + schema: + $ref: '#/components/schemas/TemplatePreview' + description: '' + /api/v1/projects/{project_pk}/templates/: + get: + operationId: projects_templates_list + description: '' + parameters: + - in: query + name: name + schema: + type: string + - name: page + required: false + in: query + description: A page number within the paginated result set. + schema: + type: integer + - in: path + name: project_pk + schema: + type: string + format: uuid + required: true + tags: + - projects + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedTemplateList' + description: '' + post: + operationId: projects_templates_create + description: '' + parameters: + - in: path + name: project_pk + schema: + type: string + format: uuid + required: true + tags: + - projects + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/TemplateCreate' + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/TemplateCreate' + multipart/form-data: + schema: + $ref: '#/components/schemas/TemplateCreate' + required: true + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '201': + content: + application/json: + schema: + $ref: '#/components/schemas/TemplateCreate' + description: '' + /api/v1/projects/{project_pk}/templates/{id}/: + get: + operationId: projects_templates_retrieve + description: '' + parameters: + - in: query + name: environment + schema: + type: string + format: uuid + description: (Optional) ID of the environment to use to instantiate this template + - in: path + name: id + schema: + type: string + format: uuid + description: A unique identifier for the template. + required: true + - in: query + name: mask_secrets + schema: + type: boolean + description: If true, masks all secrets in the template (defaults to false) + - in: path + name: project_pk + schema: + type: string + format: uuid + required: true + tags: + - projects + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/Template' + description: '' + put: + operationId: projects_templates_update + description: '' + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: A unique identifier for the template. + required: true + - in: path + name: project_pk + schema: + type: string + format: uuid + required: true + tags: + - projects + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/Template' + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/Template' + multipart/form-data: + schema: + $ref: '#/components/schemas/Template' + required: true + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/Template' + description: '' + patch: + operationId: projects_templates_partial_update + description: '' + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: A unique identifier for the template. + required: true + - in: path + name: project_pk + schema: + type: string + format: uuid + required: true + tags: + - projects + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/PatchedTemplate' + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/PatchedTemplate' + multipart/form-data: + schema: + $ref: '#/components/schemas/PatchedTemplate' + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/Template' + description: '' + delete: + operationId: projects_templates_destroy + description: '' + parameters: + - in: path + name: id + schema: + type: string + format: uuid + description: A unique identifier for the template. + required: true + - in: path + name: project_pk + schema: + type: string + format: uuid + required: true + tags: + - projects + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '204': + description: No response body + /api/v1/serviceaccounts/: + get: + operationId: serviceaccounts_list + description: '' + parameters: + - name: page + required: false + in: query + description: A page number within the paginated result set. + schema: + type: integer + tags: + - serviceaccounts + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedServiceAccountList' + description: '' + post: + operationId: serviceaccounts_create + description: "\n Creates a new ServiceAccount. A ServiceAccount\ + \ is a user record intended\n for machine use (such as a build\ + \ system). It does not have a username/password\n but is instead\ + \ accessed using an API key.\n\n On creation, the API key will\ + \ be returned. This key will only be shown once,\n is not stored\ + \ on any CloudTruth system, and should be treated as a secret. Should\n \ + \ the key be lost, you will need to delete and recreate the ServiceAccount\ + \ in order\n to generate a new API key.\n " + summary: Create a ServiceAccount user. + tags: + - serviceaccounts + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/ServiceAccountCreateRequest' + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/ServiceAccountCreateRequest' + multipart/form-data: + schema: + $ref: '#/components/schemas/ServiceAccountCreateRequest' + required: true + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '201': + content: + application/json: + schema: + $ref: '#/components/schemas/ServiceAccountCreateResponse' + description: '' + /api/v1/serviceaccounts/{id}/: + get: + operationId: serviceaccounts_retrieve + description: '' + parameters: + - in: path + name: id + schema: + type: string + description: A unique value identifying this service account. + required: true + tags: + - serviceaccounts + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/ServiceAccount' + description: '' + put: + operationId: serviceaccounts_update + description: '' + parameters: + - in: path + name: id + schema: + type: string + description: A unique value identifying this service account. + required: true + tags: + - serviceaccounts + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/ServiceAccount' + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/ServiceAccount' + multipart/form-data: + schema: + $ref: '#/components/schemas/ServiceAccount' + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/ServiceAccount' + description: '' + patch: + operationId: serviceaccounts_partial_update + description: '' + parameters: + - in: path + name: id + schema: + type: string + description: A unique value identifying this service account. + required: true + tags: + - serviceaccounts + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/PatchedServiceAccount' + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/PatchedServiceAccount' + multipart/form-data: + schema: + $ref: '#/components/schemas/PatchedServiceAccount' + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/ServiceAccount' + description: '' + delete: + operationId: serviceaccounts_destroy + description: '' + parameters: + - in: path + name: id + schema: + type: string + description: A unique value identifying this service account. + required: true + tags: + - serviceaccounts + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '204': + description: No response body + /api/v1/users/: + get: + operationId: users_list + description: '' + parameters: + - name: page + required: false + in: query + description: A page number within the paginated result set. + schema: + type: integer + - in: query + name: type + schema: + type: string + tags: + - users + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/PaginatedUserList' + description: '' + /api/v1/users/{id}/: + get: + operationId: users_retrieve + description: '' + parameters: + - in: path + name: id + schema: + type: string + description: The unique identifier of a user. + required: true + tags: + - users + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '200': + content: + application/json: + schema: + $ref: '#/components/schemas/User' + description: '' + delete: + operationId: users_destroy + description: | + ### Description ### + + Delete the specified user. This removes all access the User may have to any Organization. + + ### Pre-Conditions ### + + - The user cannot be the only owner of any Organization. + - The bearer token must belong to the user being deleted. + - All of the memberships related to the User will be deleted, so all the membership deletion pre-conditions must also be met. + summary: Delete the specified user. + parameters: + - in: path + name: id + schema: + type: string + description: The unique identifier of a user. + required: true + tags: + - users + security: + - JWTAuth: [] + - ApiKeyAuth: [] + responses: + '204': + description: User deleted. The client should behave as if the user logged + out. + '400': + description: |- + Bad Request + + - Is the user the only owner of any organization? + - Were all required fields provided? + '403': + description: |- + Forbidden + + - Did the Bearer token belong to the User being deleted? +components: + schemas: + AuditTrail: + type: object + properties: + url: + type: string + format: uri + readOnly: true + id: + type: string + format: uuid + readOnly: true + description: A unique identifier for the audit record. + action: + type: string + readOnly: true + description: The action that was taken. + object_id: + type: string + readOnly: true + description: The id of the object associated with the action. + object_name: + type: string + readOnly: true + description: The name of the object associated with the action, if applicable. + object_type: + allOf: + - $ref: '#/components/schemas/ObjectTypeEnum' + readOnly: true + description: The type of object associated with the action. + timestamp: + type: string + format: date-time + readOnly: true + description: The timestamp of the activity that was audited. + user: + allOf: + - $ref: '#/components/schemas/User' + readOnly: true + description: Details of the user associated with this change. + required: + - action + - id + - object_id + - object_name + - object_type + - timestamp + - url + - user + AuditTrailSummary: + type: object + properties: + earliest: + type: string + format: date-time + nullable: true + readOnly: true + description: The earliest audit record timestamp available. + total: + type: integer + readOnly: true + description: The total number of audit records available. + required: + - earliest + - total + AwsEnabledRegionsEnum: + enum: + - af-south-1 + - ap-east-1 + - ap-northeast-1 + - ap-northeast-2 + - ap-northeast-3 + - ap-south-1 + - ap-southeast-1 + - ap-southeast-2 + - ca-central-1 + - cn-north-1 + - cn-northwest-1 + - eu-central-1 + - eu-north-1 + - eu-south-1 + - eu-west-1 + - eu-west-2 + - eu-west-3 + - me-south-1 + - sa-east-1 + - us-east-1 + - us-east-2 + - us-west-1 + - us-west-2 + type: string + AwsEnabledServicesEnum: + enum: + - s3 + - secretsmanager + - ssm + type: string + AwsIntegration: + type: object + properties: + url: + type: string + format: uri + readOnly: true + id: + type: string + format: uuid + readOnly: true + description: The unique identifier for the integration. + name: + type: string + readOnly: true + description: + type: string + description: The optional description for the integration. + status: + type: string + readOnly: true + description: The status of the integration connection with the third-party + provider as of the `status_last_checked_at` field. The status is updated + automatically by the server when the integration is modified. + status_detail: + type: string + readOnly: true + description: If an error occurs, more details will be available in this + field. + status_last_checked_at: + type: string + format: date-time + readOnly: true + description: The last time the status was evaluated. + type: + type: string + readOnly: true + description: The type of integration. + created_at: + type: string + format: date-time + readOnly: true + modified_at: + type: string + format: date-time + readOnly: true + fqn: + type: string + readOnly: true + aws_account_id: + type: string + description: The AWS Account ID. + pattern: ^[0-9]+$ + maxLength: 12 + minLength: 12 + aws_enabled_regions: + type: array + items: + $ref: '#/components/schemas/AwsEnabledRegionsEnum' + description: The AWS regions to integrate with. + aws_enabled_services: + type: array + items: + $ref: '#/components/schemas/AwsEnabledServicesEnum' + description: The AWS services to integrate with. + aws_external_id: + type: string + description: This is a shared secret between the AWS Administrator who set + up your IAM trust relationship and your CloudTruth AWS Integration. If + your AWS Administrator provided you with a value use it, otherwise we + will generate a random value for you to give to your AWS Administrator. + minLength: 2 + pattern: ^[\w+=,.@:/\-]*$ + maxLength: 1224 + aws_role_name: + type: string + description: The role that CloudTruth will assume when interacting with + your AWS Account through this integration. The role is configured by + your AWS Account Administrator. If your AWS Administrator provided you + with a value use it, otherwise make your own role name and give it to + your AWS Administrator. + pattern: ^[\w+=,.@\-]+$ + maxLength: 64 + required: + - aws_account_id + - aws_enabled_regions + - aws_enabled_services + - aws_role_name + - created_at + - fqn + - id + - modified_at + - name + - status + - status_detail + - status_last_checked_at + - type + - url + AwsIntegrationCreate: + type: object + properties: + description: + type: string + description: The optional description for the integration. + aws_account_id: + type: string + description: The AWS Account ID. + pattern: ^[0-9]+$ + maxLength: 12 + minLength: 12 + aws_enabled_regions: + type: array + items: + $ref: '#/components/schemas/AwsEnabledRegionsEnum' + description: The AWS regions to integrate with. + aws_enabled_services: + type: array + items: + $ref: '#/components/schemas/AwsEnabledServicesEnum' + description: The AWS services to integrate with. + aws_external_id: + type: string + description: This is a shared secret between the AWS Administrator who set + up your IAM trust relationship and your CloudTruth AWS Integration. If + your AWS Administrator provided you with a value use it, otherwise we + will generate a random value for you to give to your AWS Administrator. + minLength: 2 + pattern: ^[\w+=,.@:/\-]*$ + maxLength: 1224 + aws_role_name: + type: string + description: The role that CloudTruth will assume when interacting with + your AWS Account through this integration. The role is configured by + your AWS Account Administrator. If your AWS Administrator provided you + with a value use it, otherwise make your own role name and give it to + your AWS Administrator. + pattern: ^[\w+=,.@\-]+$ + maxLength: 64 + required: + - aws_account_id + - aws_enabled_regions + - aws_enabled_services + - aws_role_name + Environment: + type: object + properties: + url: + type: string + format: uri + readOnly: true + id: + type: string + format: uuid + readOnly: true + description: A unique identifier for the environment. + name: + type: string + description: The environment name. + maxLength: 256 + description: + type: string + description: A description of the environment. You may find it helpful + to document how this environment is used to assist others when they need + to maintain software that uses this content. + parent: + type: string + format: uri + nullable: true + description: Environments can inherit from a single parent environment which + provides values for parameters when specific environments do not have + a value set. Every organization has one default environment that is required + to have a value for every parameter in every project. + created_at: + type: string + format: date-time + readOnly: true + modified_at: + type: string + format: date-time + readOnly: true + required: + - created_at + - id + - modified_at + - name + - url + EnvironmentCreate: + type: object + properties: + name: + type: string + description: The environment name. + maxLength: 256 + description: + type: string + description: A description of the environment. You may find it helpful + to document how this environment is used to assist others when they need + to maintain software that uses this content. + parent: + type: string + format: uri + nullable: true + description: Environments can inherit from a single parent environment which + provides values for parameters when specific environments do not have + a value set. Every organization has one default environment that is required + to have a value for every parameter in every project. + required: + - name + GitHubIntegration: + type: object + properties: + url: + type: string + format: uri + readOnly: true + id: + type: string + format: uuid + readOnly: true + description: The unique identifier for the integration. + name: + type: string + readOnly: true + description: + type: string + description: The optional description for the integration. + status: + type: string + readOnly: true + description: The status of the integration connection with the third-party + provider as of the `status_last_checked_at` field. The status is updated + automatically by the server when the integration is modified. + status_detail: + type: string + readOnly: true + description: If an error occurs, more details will be available in this + field. + status_last_checked_at: + type: string + format: date-time + readOnly: true + description: The last time the status was evaluated. + type: + type: string + readOnly: true + description: The type of integration. + created_at: + type: string + format: date-time + readOnly: true + modified_at: + type: string + format: date-time + readOnly: true + fqn: + type: string + readOnly: true + gh_installation_id: + type: integer + gh_organization_slug: + type: string + readOnly: true + required: + - created_at + - fqn + - gh_installation_id + - gh_organization_slug + - id + - modified_at + - name + - status + - status_detail + - status_last_checked_at + - type + - url + GitHubIntegrationCreate: + type: object + properties: + description: + type: string + description: The optional description for the integration. + gh_installation_id: + type: integer + required: + - gh_installation_id + IntegrationExplorer: + type: object + description: Describes the content available at a given location. + properties: + fqn: + type: string + node_type: + $ref: '#/components/schemas/NodeTypeEnum' + secret: + type: boolean + name: + type: string + content_type: + type: string + nullable: true + content_data: + type: string + nullable: true + content_size: + type: integer + content_keys: + type: array + items: + type: string + nullable: true + required: + - fqn + - node_type + Invitation: + type: object + properties: + url: + type: string + format: uri + readOnly: true + id: + type: string + format: uuid + readOnly: true + description: The unique identifier of an invitation. + email: + type: string + format: email + description: The email address of the user to be invited. + maxLength: 254 + role: + allOf: + - $ref: '#/components/schemas/RoleEnum' + description: The role that the user will have in the organization, should + the user accept. + inviter: + type: string + format: uri + readOnly: true + description: The user that created the invitation. + state: + type: string + readOnly: true + description: The current state of the invitation. + state_detail: + type: string + readOnly: true + description: Additional details about the state of the invitation. + membership: + type: string + format: uri + readOnly: true + description: The resulting membership, should the user accept. + required: + - email + - id + - inviter + - membership + - role + - state + - state_detail + - url + InvitationCreate: + type: object + properties: + email: + type: string + format: email + description: The email address of the user to be invited. + maxLength: 254 + role: + allOf: + - $ref: '#/components/schemas/RoleEnum' + description: The role that the user will have in the organization, should + the user accept. + required: + - email + - role + Membership: + type: object + properties: + url: + type: string + format: uri + readOnly: true + id: + type: string + format: uuid + readOnly: true + description: A unique identifier for the membership. + user: + type: string + format: uri + description: The user of the membership. + organization: + type: string + format: uri + description: The organization that the user is a member of. + role: + allOf: + - $ref: '#/components/schemas/RoleEnum' + description: The role that the user has in the organization. + created_at: + type: string + format: date-time + readOnly: true + modified_at: + type: string + format: date-time + readOnly: true + required: + - created_at + - id + - modified_at + - organization + - role + - url + - user + MembershipCreate: + type: object + properties: + user: + type: string + format: uri + description: The user of the membership. + role: + allOf: + - $ref: '#/components/schemas/RoleEnum' + description: The role that the user has in the organization. + required: + - role + - user + NodeTypeEnum: + enum: + - directory + - file + type: string + ObjectTypeEnum: + enum: + - Environment + - Integration + - Invitation + - Membership + - Organization + - Parameter + - Project + - ServiceAccount + - Template + - Value + type: string + Organization: + type: object + properties: + url: + type: string + format: uri + readOnly: true + id: + type: string + readOnly: true + description: A unique identifier for the organization. + name: + type: string + description: The organization name. + maxLength: 256 + current: + type: boolean + readOnly: true + description: Indicates if this Organization is the one currently targeted + by the Bearer token used by the client to authorize. + subscription_expires_at: + type: string + format: date-time + nullable: true + readOnly: true + subscription_id: + type: string + readOnly: true + subscription_plan_id: + type: string + readOnly: true + subscription_plan_name: + type: string + readOnly: true + created_at: + type: string + format: date-time + readOnly: true + modified_at: + type: string + format: date-time + readOnly: true + required: + - created_at + - current + - id + - modified_at + - name + - subscription_expires_at + - subscription_id + - subscription_plan_id + - subscription_plan_name + - url + OrganizationCreate: + type: object + properties: + name: + type: string + description: The organization name. + maxLength: 256 + required: + - name + PaginatedAuditTrailList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?page=4 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?page=2 + results: + type: array + items: + $ref: '#/components/schemas/AuditTrail' + PaginatedAwsIntegrationList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?page=4 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?page=2 + results: + type: array + items: + $ref: '#/components/schemas/AwsIntegration' + PaginatedEnvironmentList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?page=4 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?page=2 + results: + type: array + items: + $ref: '#/components/schemas/Environment' + PaginatedGitHubIntegrationList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?page=4 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?page=2 + results: + type: array + items: + $ref: '#/components/schemas/GitHubIntegration' + PaginatedIntegrationExplorerList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?page=4 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?page=2 + results: + type: array + items: + $ref: '#/components/schemas/IntegrationExplorer' + PaginatedInvitationList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?page=4 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?page=2 + results: + type: array + items: + $ref: '#/components/schemas/Invitation' + PaginatedMembershipList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?page=4 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?page=2 + results: + type: array + items: + $ref: '#/components/schemas/Membership' + PaginatedOrganizationList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?page=4 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?page=2 + results: + type: array + items: + $ref: '#/components/schemas/Organization' + PaginatedParameterList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?page=4 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?page=2 + results: + type: array + items: + $ref: '#/components/schemas/Parameter' + PaginatedProjectList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?page=4 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?page=2 + results: + type: array + items: + $ref: '#/components/schemas/Project' + PaginatedServiceAccountList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?page=4 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?page=2 + results: + type: array + items: + $ref: '#/components/schemas/ServiceAccount' + PaginatedTemplateList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?page=4 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?page=2 + results: + type: array + items: + $ref: '#/components/schemas/Template' + PaginatedUserList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?page=4 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?page=2 + results: + type: array + items: + $ref: '#/components/schemas/User' + PaginatedValueList: + type: object + properties: + count: + type: integer + example: 123 + next: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?page=4 + previous: + type: string + nullable: true + format: uri + example: http://api.example.org/accounts/?page=2 + results: + type: array + items: + $ref: '#/components/schemas/Value' + Parameter: + type: object + description: A single parameter inside of a project. + properties: + url: + type: string + format: uri + readOnly: true + id: + type: string + format: uuid + readOnly: true + description: A unique identifier for the parameter. + name: + type: string + description: The parameter name. + maxLength: 256 + description: + type: string + description: A description of the parameter. You may find it helpful to + document how this parameter is used to assist others when they need to + maintain software that uses this content. + secret: + type: boolean + description: Indicates if this content is secret or not. When a parameter + is considered to be a secret, any static values are stored in a dedicated + vault for your organization for maximum security. Dynamic values are + inspected on-demand to ensure they align with the parameter's secret setting + and if they do not, those dynamic values are not allowed to be used. + templates: + type: array + items: + type: string + format: uri + readOnly: true + uses_dynamic_values: + type: boolean + readOnly: true + description: If `true` then at least one of the values is dynamic. + values: + type: object + additionalProperties: + $ref: '#/components/schemas/Value' + readOnly: true + description: "\n Environments inherit from a single parent to\ + \ form a tree, as a result\n a single parameter may have different\ + \ values present for each environment.\n When a value is not\ + \ explicitly set in an environment, the parent environment\n \ + \ is consulted to see if it has a value defined, and so on.\n\n \ + \ The dictionary of values has an environment url as the key, and\ + \ the optional\n Value record that it resolves to. If the\ + \ Value.environment matches the key,\n then it is an explicit\ + \ value set for that environment. If they differ, the\n value\ + \ was obtained from a parent environment (directly or indirectly). If\ + \ the\n value is None then no value has ever been set in any\ + \ environment for this\n parameter.\n\n key: Environment\ + \ url\n value: optional Value record\n " + created_at: + type: string + format: date-time + readOnly: true + modified_at: + type: string + format: date-time + readOnly: true + required: + - created_at + - id + - modified_at + - name + - templates + - url + - uses_dynamic_values + - values + ParameterCreate: + type: object + description: A single parameter inside of a project. + properties: + name: + type: string + description: The parameter name. + maxLength: 256 + description: + type: string + description: A description of the parameter. You may find it helpful to + document how this parameter is used to assist others when they need to + maintain software that uses this content. + secret: + type: boolean + description: Indicates if this content is secret or not. When a parameter + is considered to be a secret, any static values are stored in a dedicated + vault for your organization for maximum security. Dynamic values are + inspected on-demand to ensure they align with the parameter's secret setting + and if they do not, those dynamic values are not allowed to be used. + required: + - name + ParameterExport: + type: object + properties: + body: + type: string + required: + - body + PatchedAwsIntegration: + type: object + properties: + url: + type: string + format: uri + readOnly: true + id: + type: string + format: uuid + readOnly: true + description: The unique identifier for the integration. + name: + type: string + readOnly: true + description: + type: string + description: The optional description for the integration. + status: + type: string + readOnly: true + description: The status of the integration connection with the third-party + provider as of the `status_last_checked_at` field. The status is updated + automatically by the server when the integration is modified. + status_detail: + type: string + readOnly: true + description: If an error occurs, more details will be available in this + field. + status_last_checked_at: + type: string + format: date-time + readOnly: true + description: The last time the status was evaluated. + type: + type: string + readOnly: true + description: The type of integration. + created_at: + type: string + format: date-time + readOnly: true + modified_at: + type: string + format: date-time + readOnly: true + fqn: + type: string + readOnly: true + aws_account_id: + type: string + description: The AWS Account ID. + pattern: ^[0-9]+$ + maxLength: 12 + minLength: 12 + aws_enabled_regions: + type: array + items: + $ref: '#/components/schemas/AwsEnabledRegionsEnum' + description: The AWS regions to integrate with. + aws_enabled_services: + type: array + items: + $ref: '#/components/schemas/AwsEnabledServicesEnum' + description: The AWS services to integrate with. + aws_external_id: + type: string + description: This is a shared secret between the AWS Administrator who set + up your IAM trust relationship and your CloudTruth AWS Integration. If + your AWS Administrator provided you with a value use it, otherwise we + will generate a random value for you to give to your AWS Administrator. + minLength: 2 + pattern: ^[\w+=,.@:/\-]*$ + maxLength: 1224 + aws_role_name: + type: string + description: The role that CloudTruth will assume when interacting with + your AWS Account through this integration. The role is configured by + your AWS Account Administrator. If your AWS Administrator provided you + with a value use it, otherwise make your own role name and give it to + your AWS Administrator. + pattern: ^[\w+=,.@\-]+$ + maxLength: 64 + PatchedEnvironment: + type: object + properties: + url: + type: string + format: uri + readOnly: true + id: + type: string + format: uuid + readOnly: true + description: A unique identifier for the environment. + name: + type: string + description: The environment name. + maxLength: 256 + description: + type: string + description: A description of the environment. You may find it helpful + to document how this environment is used to assist others when they need + to maintain software that uses this content. + parent: + type: string + format: uri + nullable: true + description: Environments can inherit from a single parent environment which + provides values for parameters when specific environments do not have + a value set. Every organization has one default environment that is required + to have a value for every parameter in every project. + created_at: + type: string + format: date-time + readOnly: true + modified_at: + type: string + format: date-time + readOnly: true + PatchedInvitation: + type: object + properties: + url: + type: string + format: uri + readOnly: true + id: + type: string + format: uuid + readOnly: true + description: The unique identifier of an invitation. + email: + type: string + format: email + description: The email address of the user to be invited. + maxLength: 254 + role: + allOf: + - $ref: '#/components/schemas/RoleEnum' + description: The role that the user will have in the organization, should + the user accept. + inviter: + type: string + format: uri + readOnly: true + description: The user that created the invitation. + state: + type: string + readOnly: true + description: The current state of the invitation. + state_detail: + type: string + readOnly: true + description: Additional details about the state of the invitation. + membership: + type: string + format: uri + readOnly: true + description: The resulting membership, should the user accept. + PatchedMembership: + type: object + properties: + url: + type: string + format: uri + readOnly: true + id: + type: string + format: uuid + readOnly: true + description: A unique identifier for the membership. + user: + type: string + format: uri + description: The user of the membership. + organization: + type: string + format: uri + description: The organization that the user is a member of. + role: + allOf: + - $ref: '#/components/schemas/RoleEnum' + description: The role that the user has in the organization. + created_at: + type: string + format: date-time + readOnly: true + modified_at: + type: string + format: date-time + readOnly: true + PatchedOrganization: + type: object + properties: + url: + type: string + format: uri + readOnly: true + id: + type: string + readOnly: true + description: A unique identifier for the organization. + name: + type: string + description: The organization name. + maxLength: 256 + current: + type: boolean + readOnly: true + description: Indicates if this Organization is the one currently targeted + by the Bearer token used by the client to authorize. + subscription_expires_at: + type: string + format: date-time + nullable: true + readOnly: true + subscription_id: + type: string + readOnly: true + subscription_plan_id: + type: string + readOnly: true + subscription_plan_name: + type: string + readOnly: true + created_at: + type: string + format: date-time + readOnly: true + modified_at: + type: string + format: date-time + readOnly: true + PatchedParameter: + type: object + description: A single parameter inside of a project. + properties: + url: + type: string + format: uri + readOnly: true + id: + type: string + format: uuid + readOnly: true + description: A unique identifier for the parameter. + name: + type: string + description: The parameter name. + maxLength: 256 + description: + type: string + description: A description of the parameter. You may find it helpful to + document how this parameter is used to assist others when they need to + maintain software that uses this content. + secret: + type: boolean + description: Indicates if this content is secret or not. When a parameter + is considered to be a secret, any static values are stored in a dedicated + vault for your organization for maximum security. Dynamic values are + inspected on-demand to ensure they align with the parameter's secret setting + and if they do not, those dynamic values are not allowed to be used. + templates: + type: array + items: + type: string + format: uri + readOnly: true + uses_dynamic_values: + type: boolean + readOnly: true + description: If `true` then at least one of the values is dynamic. + values: + type: object + additionalProperties: + $ref: '#/components/schemas/Value' + readOnly: true + description: "\n Environments inherit from a single parent to\ + \ form a tree, as a result\n a single parameter may have different\ + \ values present for each environment.\n When a value is not\ + \ explicitly set in an environment, the parent environment\n \ + \ is consulted to see if it has a value defined, and so on.\n\n \ + \ The dictionary of values has an environment url as the key, and\ + \ the optional\n Value record that it resolves to. If the\ + \ Value.environment matches the key,\n then it is an explicit\ + \ value set for that environment. If they differ, the\n value\ + \ was obtained from a parent environment (directly or indirectly). If\ + \ the\n value is None then no value has ever been set in any\ + \ environment for this\n parameter.\n\n key: Environment\ + \ url\n value: optional Value record\n " + created_at: + type: string + format: date-time + readOnly: true + modified_at: + type: string + format: date-time + readOnly: true + PatchedProject: + type: object + properties: + url: + type: string + format: uri + readOnly: true + id: + type: string + format: uuid + readOnly: true + description: A unique identifier for the project. + name: + type: string + description: The project name. + maxLength: 256 + description: + type: string + description: A description of the project. You may find it helpful to document + how this project is used to assist others when they need to maintain software + that uses this content. + created_at: + type: string + format: date-time + readOnly: true + modified_at: + type: string + format: date-time + readOnly: true + PatchedServiceAccount: + type: object + properties: + url: + type: string + format: uri + readOnly: true + id: + type: string + readOnly: true + user: + allOf: + - $ref: '#/components/schemas/User' + readOnly: true + description: + type: string + description: An optional description of the process or system using the + service account. + created_at: + type: string + format: date-time + readOnly: true + modified_at: + type: string + format: date-time + readOnly: true + PatchedTemplate: + type: object + description: A parameter template in a given project, optionally instantiated + against an environment. + properties: + url: + type: string + format: uri + readOnly: true + id: + type: string + format: uuid + readOnly: true + description: A unique identifier for the template. + name: + type: string + description: The template name. + maxLength: 256 + description: + type: string + description: A description of the template. You may find it helpful to + document how this template is used to assist others when they need to + maintain software that uses this content. + body: + type: string + description: The content of the template. Use mustache-style templating + delimiters of `{{` and `}}` to reference parameter values by name for + substitution into the template result. + parameters: + type: array + items: + type: string + format: uri + readOnly: true + created_at: + type: string + format: date-time + readOnly: true + modified_at: + type: string + format: date-time + readOnly: true + PatchedValue: + type: object + description: A value for a parameter in a given environment. + properties: + url: + type: string + format: uri + readOnly: true + id: + type: string + format: uuid + readOnly: true + description: A unique identifier for the value. + environment: + type: string + format: uri + readOnly: true + description: The environment this value is set in. + parameter: + type: string + format: uri + readOnly: true + description: The parameter this value is for. + dynamic: + type: boolean + description: A dynamic parameter leverages a CloudTruth integration to retrieve + content on-demand from an external source. When this is `false` the value + is stored by CloudTruth. When this is `true`, the `fqn` field must be + set. + dynamic_fqn: + type: string + description: The FQN, or Fully-Qualified Name, is the path through the integration + to get to the desired content. This must be present and reference a valid + integration when the value is `dynamic`. + maxLength: 1024 + dynamic_filter: + type: string + description: If `dynamic`, the content returned by the integration can be + reduced by applying a JMESpath expression. This is valid as long as the + content is structured and of a supported format. We support JMESpath + expressions on `json`, `yaml`, and `dotenv` content. + maxLength: 1024 + static_value: + type: string + nullable: true + description: This is the content to use when resolving the Value for a static + non-secret. + maxLength: 1024 + value: + type: string + nullable: true + readOnly: true + description: |- + This is the actual content of the Value for the given parameter in the given environment. Depending on the settings in the Value, the following things occur to calculate the `value`: + + For values that are not `dynamic` and parameters that are not `secret`, the system will use the content in `static_value` to satisfy the request. + + For values that are not `dynamic` and parameters that are `secret`, the system will retrieve the content from your organization's dedicated vault. + + For values that are `dynamic`, the system will retrieve the content from the integration on-demand. If the content from the integration is `secret` and the parameter is not, or if the parameter is `secret` and the content from the integration is not, an error response will be given. If a `dynamic_filter` is present then the content will have a JMESpath query applied, and that becomes the resulting value. + + If you request secret masking, no secret content will be included in the result and instead a series of asterisks will be used instead for the value. If you request wrapping, the secret content will be wrapped in an envelope that is bound to your JWT token. For more information about secret wrapping, see the docs. + + Clients applying this value to a shell environment should set `=` even if `value` is the empty string. If `value` is `null`, the client should unset that shell environment variable. + created_at: + type: string + format: date-time + readOnly: true + modified_at: + type: string + format: date-time + readOnly: true + Project: + type: object + properties: + url: + type: string + format: uri + readOnly: true + id: + type: string + format: uuid + readOnly: true + description: A unique identifier for the project. + name: + type: string + description: The project name. + maxLength: 256 + description: + type: string + description: A description of the project. You may find it helpful to document + how this project is used to assist others when they need to maintain software + that uses this content. + created_at: + type: string + format: date-time + readOnly: true + modified_at: + type: string + format: date-time + readOnly: true + required: + - created_at + - id + - modified_at + - name + - url + ProjectCreate: + type: object + properties: + name: + type: string + description: The project name. + maxLength: 256 + description: + type: string + description: A description of the project. You may find it helpful to document + how this project is used to assist others when they need to maintain software + that uses this content. + required: + - name + RoleEnum: + enum: + - OWNER + - ADMIN + - CONTRIB + - VIEWER + type: string + ServiceAccount: + type: object + properties: + url: + type: string + format: uri + readOnly: true + id: + type: string + readOnly: true + user: + allOf: + - $ref: '#/components/schemas/User' + readOnly: true + description: + type: string + description: An optional description of the process or system using the + service account. + created_at: + type: string + format: date-time + readOnly: true + modified_at: + type: string + format: date-time + readOnly: true + required: + - created_at + - id + - modified_at + - url + - user + ServiceAccountCreateRequest: + type: object + properties: + name: + type: string + description: The name of the process or system using the service account. + maxLength: 128 + description: + type: string + description: An optional description of the process or system using the + service account. + required: + - name + ServiceAccountCreateResponse: + type: object + properties: + url: + type: string + format: uri + readOnly: true + id: + type: string + readOnly: true + user: + allOf: + - $ref: '#/components/schemas/User' + readOnly: true + description: + type: string + description: An optional description of the process or system using the + service account. + created_at: + type: string + format: date-time + readOnly: true + modified_at: + type: string + format: date-time + readOnly: true + apikey: + type: string + readOnly: true + description: The API Key to use as a Bearer token for the service account. + required: + - apikey + - created_at + - id + - modified_at + - url + - user + Template: + type: object + description: A parameter template in a given project, optionally instantiated + against an environment. + properties: + url: + type: string + format: uri + readOnly: true + id: + type: string + format: uuid + readOnly: true + description: A unique identifier for the template. + name: + type: string + description: The template name. + maxLength: 256 + description: + type: string + description: A description of the template. You may find it helpful to + document how this template is used to assist others when they need to + maintain software that uses this content. + body: + type: string + description: The content of the template. Use mustache-style templating + delimiters of `{{` and `}}` to reference parameter values by name for + substitution into the template result. + parameters: + type: array + items: + type: string + format: uri + readOnly: true + created_at: + type: string + format: date-time + readOnly: true + modified_at: + type: string + format: date-time + readOnly: true + required: + - created_at + - id + - modified_at + - name + - parameters + - url + TemplateCreate: + type: object + description: A parameter template in a given project, optionally instantiated + against an environment. + properties: + name: + type: string + description: The template name. + maxLength: 256 + description: + type: string + description: A description of the template. You may find it helpful to + document how this template is used to assist others when they need to + maintain software that uses this content. + body: + type: string + description: The content of the template. Use mustache-style templating + delimiters of `{{` and `}}` to reference parameter values by name for + substitution into the template result. + required: + - name + TemplatePreview: + type: object + properties: + body: + type: string + required: + - body + User: + type: object + properties: + url: + type: string + format: uri + readOnly: true + id: + type: string + description: The unique identifier of a user. + maxLength: 256 + type: + type: string + description: The type of user record. + maxLength: 12 + name: + type: string + nullable: true + readOnly: true + email: + type: string + nullable: true + readOnly: true + picture_url: + type: string + nullable: true + readOnly: true + created_at: + type: string + format: date-time + readOnly: true + modified_at: + type: string + format: date-time + readOnly: true + required: + - created_at + - email + - id + - modified_at + - name + - picture_url + - url + Value: + type: object + description: A value for a parameter in a given environment. + properties: + url: + type: string + format: uri + readOnly: true + id: + type: string + format: uuid + readOnly: true + description: A unique identifier for the value. + environment: + type: string + format: uri + readOnly: true + description: The environment this value is set in. + parameter: + type: string + format: uri + readOnly: true + description: The parameter this value is for. + dynamic: + type: boolean + description: A dynamic parameter leverages a CloudTruth integration to retrieve + content on-demand from an external source. When this is `false` the value + is stored by CloudTruth. When this is `true`, the `fqn` field must be + set. + dynamic_fqn: + type: string + description: The FQN, or Fully-Qualified Name, is the path through the integration + to get to the desired content. This must be present and reference a valid + integration when the value is `dynamic`. + maxLength: 1024 + dynamic_filter: + type: string + description: If `dynamic`, the content returned by the integration can be + reduced by applying a JMESpath expression. This is valid as long as the + content is structured and of a supported format. We support JMESpath + expressions on `json`, `yaml`, and `dotenv` content. + maxLength: 1024 + static_value: + type: string + nullable: true + description: This is the content to use when resolving the Value for a static + non-secret. + maxLength: 1024 + value: + type: string + nullable: true + readOnly: true + description: |- + This is the actual content of the Value for the given parameter in the given environment. Depending on the settings in the Value, the following things occur to calculate the `value`: + + For values that are not `dynamic` and parameters that are not `secret`, the system will use the content in `static_value` to satisfy the request. + + For values that are not `dynamic` and parameters that are `secret`, the system will retrieve the content from your organization's dedicated vault. + + For values that are `dynamic`, the system will retrieve the content from the integration on-demand. If the content from the integration is `secret` and the parameter is not, or if the parameter is `secret` and the content from the integration is not, an error response will be given. If a `dynamic_filter` is present then the content will have a JMESpath query applied, and that becomes the resulting value. + + If you request secret masking, no secret content will be included in the result and instead a series of asterisks will be used instead for the value. If you request wrapping, the secret content will be wrapped in an envelope that is bound to your JWT token. For more information about secret wrapping, see the docs. + + Clients applying this value to a shell environment should set `=` even if `value` is the empty string. If `value` is `null`, the client should unset that shell environment variable. + created_at: + type: string + format: date-time + readOnly: true + modified_at: + type: string + format: date-time + readOnly: true + required: + - created_at + - environment + - id + - modified_at + - parameter + - url + - value + ValueCreate: + type: object + description: A value for a parameter in a given environment. + properties: + environment: + type: string + format: uri + description: The environment this value is set in. + dynamic: + type: boolean + description: A dynamic parameter leverages a CloudTruth integration to retrieve + content on-demand from an external source. When this is `false` the value + is stored by CloudTruth. When this is `true`, the `fqn` field must be + set. + dynamic_fqn: + type: string + description: The FQN, or Fully-Qualified Name, is the path through the integration + to get to the desired content. This must be present and reference a valid + integration when the value is `dynamic`. + maxLength: 1024 + dynamic_filter: + type: string + description: If `dynamic`, the content returned by the integration can be + reduced by applying a JMESpath expression. This is valid as long as the + content is structured and of a supported format. We support JMESpath + expressions on `json`, `yaml`, and `dotenv` content. + maxLength: 1024 + static_value: + type: string + nullable: true + description: This is the content to use when resolving the Value for a static + non-secret. + maxLength: 1024 + required: + - environment + securitySchemes: + ApiKeyAuth: + in: header + name: Authorization + type: apiKey + description: "\nUse your CloudTruth API Key to authenticate to the API. You\ + \ can get\nan API Key by creating a Service Account in the UI. During setup\ + \ of the Service\nAccount you will generate a long-lived API key intended\ + \ for use by automation\nand API clients.\n\nIf you are just trying to use\ + \ the API in a normal workflow, this is likely the\nauthentication mechanism\ + \ you want to use.\n\nTo use the API Key, place your API Key in the Authorization\ + \ header as 'Api-Key APIKEY', where\nAPIKEY is your CloudTruth API Key. For\ + \ example:\n\n Authorization: Api-Key fskur.ghlsiudhrg84so938r5u\n \ + \ " + JWTAuth: + in: header + name: Authorization + type: apiKey + description: "\nUse your JWT to authenticate to the API. This is how the CloudTruth\n\ + Web UI authenticates to the backend. It requires a user to have already logged\ + \ in\nand gotten a JWT from the login process. This is usually done by an\ + \ Auth0 authentication\nflow from one of the Auth0 javascript libraries. \ + \ Alternatively, you can pull the\nJWT from your browser if you have a logged\ + \ in session with the CloudTruth UI.\n\nThis authentication mechanism is intended\ + \ for deeper integrations into the CloudTruth\nsystem, where you want to handle\ + \ the user logins directly in your application. For\nnormal API use, you\ + \ likely want the Api-Key authentication header and not this one.\n\nTo use\ + \ the JWT, place your JWT in the Authorization header as 'Bearer JWT', where\n\ + JWT is your JWT. For example:\n\n Authorization: Bearer eyJhbGciOiJIkuydfy.eyJzdWIiOiIxMjM....\n\ + \ " diff --git a/spec/fixtures/vcr/CtApi/_environment_id/gets_id.yml b/spec/fixtures/vcr/CtApi/_environment_id/gets_id.yml deleted file mode 100644 index 6199fec..0000000 --- a/spec/fixtures/vcr/CtApi/_environment_id/gets_id.yml +++ /dev/null @@ -1,603 +0,0 @@ ---- -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.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:15 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/"55e26e24774851d2250b34d1fee03886" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - b067e4aa-b064-4f92-8a78-a6aa6fbac920 - X-Runtime: - - '1.100798' - 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":"preferredRegions","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","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":"statusMessage","description":null,"args":[],"type":{"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":"ENUM","name":"AwsRegionEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"US_EAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_EAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_WEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_WEST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AF_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_EAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTHEAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTHEAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CA_CENTRAL_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CN_NORTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CN_NORTHWEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_CENTRAL_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_NORTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ME_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SA_EAST_1","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":"preferredRegions","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","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":[],"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":"statusMessage","description":null,"args":[],"type":{"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":"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":"Integration","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":"Integration","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":"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":"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":"statusMessage","description":null,"args":[],"type":{"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":"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":"parameterType","description":null,"args":[],"type":{"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},{"name":"secret","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":"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":"Integration","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},{"name":"secret","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":"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},{"name":"CHECKING","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":"Integration","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},{"name":"INVALID_EMAIL","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":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","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":"refreshIntegrationState","description":null,"args":[{"name":"input","description":"Parameters - for RefreshIntegrationState","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RefreshIntegrationStateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RefreshIntegrationStatePayload","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":"updateServiceAccount","description":null,"args":[{"name":"input","description":"Parameters - for UpdateServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateServiceAccountPayload","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":"Integration","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":"myself","description":"Limit - result to your membership.","type":{"kind":"SCALAR","name":"Boolean","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":"createAuditLogSnapshot","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"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},{"name":"showSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","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},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","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":"RefreshIntegrationStateInput","description":"Autogenerated - input type of RefreshIntegrationState","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":"RefreshIntegrationStatePayload","description":"Autogenerated - return type of RefreshIntegrationState","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integration","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Integration","ofType":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":"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},{"name":"showSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","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":"preferredRegions","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A - unique identifier 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":"joined","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","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":"UpdateServiceAccountInput","description":"Autogenerated - input type of UpdateServiceAccount","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":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"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":"UpdateServiceAccountPayload","description":"Autogenerated - return type of UpdateServiceAccount","fields":[{"name":"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":"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":"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":"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":"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: Wed, 07 Jul 2021 16:59:15 GMT -- request: - method: post - uri: https://api.cloudtruth.com/graphql - body: - encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_75160 {\n viewer - {\n organization {\n environments {\n nodes {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_75160"}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - application/json - User-Agent: - - kubetruth/0.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:15 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/"4067dfe382ecaff3b64ab307fb568df4" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 244d500f-2390-4d7f-a209-e6b92e132374 - X-Runtime: - - '0.035746' - 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"},{"id":"RW52aXJvbm1lbnQtODlkYjg0NGEtOTlmMy00ODk1LWIyNWYtYjEwZjAwNGM4NTJk","name":"usa"},{"id":"RW52aXJvbm1lbnQtYjVkM2Y0MDgtMTVlZi00M2E4LWFlOWUtMjY0OTQ4OGFlZDcw","name":"europe"},{"id":"RW52aXJvbm1lbnQtN2ZlYTc5ZWQtY2MxZi00ZDY5LTkzOGYtNzM4MGE5MGI4ZDVl","name":"local"}]}}}}}' - recorded_at: Wed, 07 Jul 2021 16:59:15 GMT -recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/CtApi/_environment_id/raises_if_environment_doesn_t_exist.yml b/spec/fixtures/vcr/CtApi/_environment_id/raises_if_environment_doesn_t_exist.yml deleted file mode 100644 index 4aa46f7..0000000 --- a/spec/fixtures/vcr/CtApi/_environment_id/raises_if_environment_doesn_t_exist.yml +++ /dev/null @@ -1,660 +0,0 @@ ---- -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.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:17 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/"55e26e24774851d2250b34d1fee03886" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 520a1d93-da45-4f30-ad29-cb9ca7860ce2 - X-Runtime: - - '1.417762' - 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":"preferredRegions","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","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":"statusMessage","description":null,"args":[],"type":{"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":"ENUM","name":"AwsRegionEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"US_EAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_EAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_WEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_WEST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AF_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_EAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTHEAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTHEAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CA_CENTRAL_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CN_NORTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CN_NORTHWEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_CENTRAL_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_NORTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ME_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SA_EAST_1","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":"preferredRegions","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","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":[],"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":"statusMessage","description":null,"args":[],"type":{"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":"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":"Integration","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":"Integration","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":"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":"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":"statusMessage","description":null,"args":[],"type":{"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":"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":"parameterType","description":null,"args":[],"type":{"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},{"name":"secret","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":"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":"Integration","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},{"name":"secret","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":"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},{"name":"CHECKING","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":"Integration","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},{"name":"INVALID_EMAIL","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":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","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":"refreshIntegrationState","description":null,"args":[{"name":"input","description":"Parameters - for RefreshIntegrationState","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RefreshIntegrationStateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RefreshIntegrationStatePayload","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":"updateServiceAccount","description":null,"args":[{"name":"input","description":"Parameters - for UpdateServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateServiceAccountPayload","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":"Integration","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":"myself","description":"Limit - result to your membership.","type":{"kind":"SCALAR","name":"Boolean","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":"createAuditLogSnapshot","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"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},{"name":"showSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","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},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","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":"RefreshIntegrationStateInput","description":"Autogenerated - input type of RefreshIntegrationState","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":"RefreshIntegrationStatePayload","description":"Autogenerated - return type of RefreshIntegrationState","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integration","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Integration","ofType":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":"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},{"name":"showSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","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":"preferredRegions","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A - unique identifier 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":"joined","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","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":"UpdateServiceAccountInput","description":"Autogenerated - input type of UpdateServiceAccount","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":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"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":"UpdateServiceAccountPayload","description":"Autogenerated - return type of UpdateServiceAccount","fields":[{"name":"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":"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":"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":"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":"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: Wed, 07 Jul 2021 16:59:17 GMT -- request: - method: post - uri: https://api.cloudtruth.com/graphql - body: - encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_93080 {\n viewer - {\n organization {\n environments {\n nodes {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_93080"}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - application/json - User-Agent: - - kubetruth/0.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:17 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/"4067dfe382ecaff3b64ab307fb568df4" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - c82f5a67-934a-486d-ac4a-d37e8db96bc1 - X-Runtime: - - '0.037737' - 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"},{"id":"RW52aXJvbm1lbnQtODlkYjg0NGEtOTlmMy00ODk1LWIyNWYtYjEwZjAwNGM4NTJk","name":"usa"},{"id":"RW52aXJvbm1lbnQtYjVkM2Y0MDgtMTVlZi00M2E4LWFlOWUtMjY0OTQ4OGFlZDcw","name":"europe"},{"id":"RW52aXJvbm1lbnQtN2ZlYTc5ZWQtY2MxZi00ZDY5LTkzOGYtNzM4MGE5MGI4ZDVl","name":"local"}]}}}}}' - recorded_at: Wed, 07 Jul 2021 16:59:17 GMT -- request: - method: post - uri: https://api.cloudtruth.com/graphql - body: - encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_93080 {\n viewer - {\n organization {\n environments {\n nodes {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_93080"}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - application/json - User-Agent: - - kubetruth/0.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:18 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/"4067dfe382ecaff3b64ab307fb568df4" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - fb99c9af-da7b-417a-9758-5b88acc90f6c - X-Runtime: - - '0.026865' - 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"},{"id":"RW52aXJvbm1lbnQtODlkYjg0NGEtOTlmMy00ODk1LWIyNWYtYjEwZjAwNGM4NTJk","name":"usa"},{"id":"RW52aXJvbm1lbnQtYjVkM2Y0MDgtMTVlZi00M2E4LWFlOWUtMjY0OTQ4OGFlZDcw","name":"europe"},{"id":"RW52aXJvbm1lbnQtN2ZlYTc5ZWQtY2MxZi00ZDY5LTkzOGYtNzM4MGE5MGI4ZDVl","name":"local"}]}}}}}' - recorded_at: Wed, 07 Jul 2021 16:59:18 GMT -recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/CtApi/_environment_id/retries_if_environment_doesn_t_exist.yml b/spec/fixtures/vcr/CtApi/_environment_id/retries_if_environment_doesn_t_exist.yml deleted file mode 100644 index 1055012..0000000 --- a/spec/fixtures/vcr/CtApi/_environment_id/retries_if_environment_doesn_t_exist.yml +++ /dev/null @@ -1,660 +0,0 @@ ---- -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.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:19 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/"55e26e24774851d2250b34d1fee03886" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 4f0f884c-f03b-463d-9c64-1e4167194d48 - X-Runtime: - - '1.387614' - 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":"preferredRegions","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","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":"statusMessage","description":null,"args":[],"type":{"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":"ENUM","name":"AwsRegionEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"US_EAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_EAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_WEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_WEST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AF_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_EAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTHEAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTHEAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CA_CENTRAL_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CN_NORTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CN_NORTHWEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_CENTRAL_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_NORTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ME_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SA_EAST_1","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":"preferredRegions","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","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":[],"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":"statusMessage","description":null,"args":[],"type":{"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":"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":"Integration","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":"Integration","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":"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":"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":"statusMessage","description":null,"args":[],"type":{"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":"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":"parameterType","description":null,"args":[],"type":{"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},{"name":"secret","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":"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":"Integration","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},{"name":"secret","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":"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},{"name":"CHECKING","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":"Integration","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},{"name":"INVALID_EMAIL","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":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","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":"refreshIntegrationState","description":null,"args":[{"name":"input","description":"Parameters - for RefreshIntegrationState","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RefreshIntegrationStateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RefreshIntegrationStatePayload","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":"updateServiceAccount","description":null,"args":[{"name":"input","description":"Parameters - for UpdateServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateServiceAccountPayload","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":"Integration","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":"myself","description":"Limit - result to your membership.","type":{"kind":"SCALAR","name":"Boolean","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":"createAuditLogSnapshot","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"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},{"name":"showSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","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},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","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":"RefreshIntegrationStateInput","description":"Autogenerated - input type of RefreshIntegrationState","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":"RefreshIntegrationStatePayload","description":"Autogenerated - return type of RefreshIntegrationState","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integration","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Integration","ofType":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":"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},{"name":"showSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","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":"preferredRegions","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A - unique identifier 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":"joined","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","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":"UpdateServiceAccountInput","description":"Autogenerated - input type of UpdateServiceAccount","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":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"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":"UpdateServiceAccountPayload","description":"Autogenerated - return type of UpdateServiceAccount","fields":[{"name":"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":"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":"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":"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":"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: Wed, 07 Jul 2021 16:59:19 GMT -- request: - method: post - uri: https://api.cloudtruth.com/graphql - body: - encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_112140 {\n viewer - {\n organization {\n environments {\n nodes {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_112140"}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - application/json - User-Agent: - - kubetruth/0.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:19 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/"4067dfe382ecaff3b64ab307fb568df4" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 6ab5d9cc-79ba-4ded-b16a-2d501ffdffee - X-Runtime: - - '0.032344' - 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"},{"id":"RW52aXJvbm1lbnQtODlkYjg0NGEtOTlmMy00ODk1LWIyNWYtYjEwZjAwNGM4NTJk","name":"usa"},{"id":"RW52aXJvbm1lbnQtYjVkM2Y0MDgtMTVlZi00M2E4LWFlOWUtMjY0OTQ4OGFlZDcw","name":"europe"},{"id":"RW52aXJvbm1lbnQtN2ZlYTc5ZWQtY2MxZi00ZDY5LTkzOGYtNzM4MGE5MGI4ZDVl","name":"local"}]}}}}}' - recorded_at: Wed, 07 Jul 2021 16:59:19 GMT -- request: - method: post - uri: https://api.cloudtruth.com/graphql - body: - encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_112140 {\n viewer - {\n organization {\n environments {\n nodes {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_112140"}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - application/json - User-Agent: - - kubetruth/0.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:20 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/"4067dfe382ecaff3b64ab307fb568df4" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - a4947524-93c1-41ad-94f4-f010e0d41472 - X-Runtime: - - '0.052531' - 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"},{"id":"RW52aXJvbm1lbnQtODlkYjg0NGEtOTlmMy00ODk1LWIyNWYtYjEwZjAwNGM4NTJk","name":"usa"},{"id":"RW52aXJvbm1lbnQtYjVkM2Y0MDgtMTVlZi00M2E4LWFlOWUtMjY0OTQ4OGFlZDcw","name":"europe"},{"id":"RW52aXJvbm1lbnQtN2ZlYTc5ZWQtY2MxZi00ZDY5LTkzOGYtNzM4MGE5MGI4ZDVl","name":"local"}]}}}}}' - recorded_at: Wed, 07 Jul 2021 16:59:20 GMT -recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/CtApi/_environments/gets_environments.yml b/spec/fixtures/vcr/CtApi/_environments/gets_environments.yml deleted file mode 100644 index 35a8ced..0000000 --- a/spec/fixtures/vcr/CtApi/_environments/gets_environments.yml +++ /dev/null @@ -1,603 +0,0 @@ ---- -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.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:12 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/"55e26e24774851d2250b34d1fee03886" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 282ecbc4-5aef-4246-b54c-fec6c09187c4 - X-Runtime: - - '1.164687' - 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":"preferredRegions","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","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":"statusMessage","description":null,"args":[],"type":{"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":"ENUM","name":"AwsRegionEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"US_EAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_EAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_WEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_WEST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AF_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_EAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTHEAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTHEAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CA_CENTRAL_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CN_NORTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CN_NORTHWEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_CENTRAL_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_NORTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ME_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SA_EAST_1","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":"preferredRegions","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","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":[],"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":"statusMessage","description":null,"args":[],"type":{"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":"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":"Integration","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":"Integration","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":"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":"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":"statusMessage","description":null,"args":[],"type":{"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":"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":"parameterType","description":null,"args":[],"type":{"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},{"name":"secret","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":"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":"Integration","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},{"name":"secret","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":"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},{"name":"CHECKING","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":"Integration","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},{"name":"INVALID_EMAIL","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":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","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":"refreshIntegrationState","description":null,"args":[{"name":"input","description":"Parameters - for RefreshIntegrationState","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RefreshIntegrationStateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RefreshIntegrationStatePayload","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":"updateServiceAccount","description":null,"args":[{"name":"input","description":"Parameters - for UpdateServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateServiceAccountPayload","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":"Integration","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":"myself","description":"Limit - result to your membership.","type":{"kind":"SCALAR","name":"Boolean","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":"createAuditLogSnapshot","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"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},{"name":"showSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","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},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","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":"RefreshIntegrationStateInput","description":"Autogenerated - input type of RefreshIntegrationState","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":"RefreshIntegrationStatePayload","description":"Autogenerated - return type of RefreshIntegrationState","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integration","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Integration","ofType":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":"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},{"name":"showSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","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":"preferredRegions","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A - unique identifier 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":"joined","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","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":"UpdateServiceAccountInput","description":"Autogenerated - input type of UpdateServiceAccount","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":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"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":"UpdateServiceAccountPayload","description":"Autogenerated - return type of UpdateServiceAccount","fields":[{"name":"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":"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":"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":"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":"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: Wed, 07 Jul 2021 16:59:12 GMT -- request: - method: post - uri: https://api.cloudtruth.com/graphql - body: - encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_39320 {\n viewer - {\n organization {\n environments {\n nodes {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_39320"}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - application/json - User-Agent: - - kubetruth/0.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:12 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/"4067dfe382ecaff3b64ab307fb568df4" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 20393d26-8716-4296-b92c-138d51cb1aec - X-Runtime: - - '0.039167' - 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"},{"id":"RW52aXJvbm1lbnQtODlkYjg0NGEtOTlmMy00ODk1LWIyNWYtYjEwZjAwNGM4NTJk","name":"usa"},{"id":"RW52aXJvbm1lbnQtYjVkM2Y0MDgtMTVlZi00M2E4LWFlOWUtMjY0OTQ4OGFlZDcw","name":"europe"},{"id":"RW52aXJvbm1lbnQtN2ZlYTc5ZWQtY2MxZi00ZDY5LTkzOGYtNzM4MGE5MGI4ZDVl","name":"local"}]}}}}}' - recorded_at: Wed, 07 Jul 2021 16:59:12 GMT -recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/CtApi/_environments/memoizes_environments.yml b/spec/fixtures/vcr/CtApi/_environments/memoizes_environments.yml deleted file mode 100644 index 795c097..0000000 --- a/spec/fixtures/vcr/CtApi/_environments/memoizes_environments.yml +++ /dev/null @@ -1,603 +0,0 @@ ---- -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.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:13 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/"55e26e24774851d2250b34d1fee03886" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 6dd41e26-1f41-4911-bbde-3e23dc4769e8 - X-Runtime: - - '1.151273' - 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":"preferredRegions","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","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":"statusMessage","description":null,"args":[],"type":{"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":"ENUM","name":"AwsRegionEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"US_EAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_EAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_WEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_WEST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AF_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_EAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTHEAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTHEAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CA_CENTRAL_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CN_NORTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CN_NORTHWEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_CENTRAL_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_NORTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ME_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SA_EAST_1","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":"preferredRegions","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","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":[],"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":"statusMessage","description":null,"args":[],"type":{"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":"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":"Integration","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":"Integration","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":"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":"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":"statusMessage","description":null,"args":[],"type":{"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":"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":"parameterType","description":null,"args":[],"type":{"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},{"name":"secret","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":"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":"Integration","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},{"name":"secret","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":"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},{"name":"CHECKING","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":"Integration","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},{"name":"INVALID_EMAIL","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":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","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":"refreshIntegrationState","description":null,"args":[{"name":"input","description":"Parameters - for RefreshIntegrationState","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RefreshIntegrationStateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RefreshIntegrationStatePayload","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":"updateServiceAccount","description":null,"args":[{"name":"input","description":"Parameters - for UpdateServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateServiceAccountPayload","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":"Integration","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":"myself","description":"Limit - result to your membership.","type":{"kind":"SCALAR","name":"Boolean","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":"createAuditLogSnapshot","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"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},{"name":"showSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","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},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","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":"RefreshIntegrationStateInput","description":"Autogenerated - input type of RefreshIntegrationState","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":"RefreshIntegrationStatePayload","description":"Autogenerated - return type of RefreshIntegrationState","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integration","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Integration","ofType":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":"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},{"name":"showSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","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":"preferredRegions","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A - unique identifier 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":"joined","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","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":"UpdateServiceAccountInput","description":"Autogenerated - input type of UpdateServiceAccount","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":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"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":"UpdateServiceAccountPayload","description":"Autogenerated - return type of UpdateServiceAccount","fields":[{"name":"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":"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":"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":"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":"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: Wed, 07 Jul 2021 16:59:13 GMT -- request: - method: post - uri: https://api.cloudtruth.com/graphql - body: - encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_57240 {\n viewer - {\n organization {\n environments {\n nodes {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_57240"}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - application/json - User-Agent: - - kubetruth/0.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:14 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/"4067dfe382ecaff3b64ab307fb568df4" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 68fbc88a-c5f1-4025-83e0-0850da2cdff4 - X-Runtime: - - '0.071142' - 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"},{"id":"RW52aXJvbm1lbnQtODlkYjg0NGEtOTlmMy00ODk1LWIyNWYtYjEwZjAwNGM4NTJk","name":"usa"},{"id":"RW52aXJvbm1lbnQtYjVkM2Y0MDgtMTVlZi00M2E4LWFlOWUtMjY0OTQ4OGFlZDcw","name":"europe"},{"id":"RW52aXJvbm1lbnQtN2ZlYTc5ZWQtY2MxZi00ZDY5LTkzOGYtNzM4MGE5MGI4ZDVl","name":"local"}]}}}}}' - recorded_at: Wed, 07 Jul 2021 16:59:14 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 deleted file mode 100644 index 691625d..0000000 --- a/spec/fixtures/vcr/CtApi/_parameters/doesn_t_expose_secret_in_debug_log.yml +++ /dev/null @@ -1,663 +0,0 @@ ---- -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.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:29 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/"55e26e24774851d2250b34d1fee03886" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 26ba9fe4-1a47-4d64-85b8-8b027765e2f6 - X-Runtime: - - '1.182825' - 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":"preferredRegions","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","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":"statusMessage","description":null,"args":[],"type":{"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":"ENUM","name":"AwsRegionEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"US_EAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_EAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_WEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_WEST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AF_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_EAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTHEAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTHEAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CA_CENTRAL_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CN_NORTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CN_NORTHWEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_CENTRAL_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_NORTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ME_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SA_EAST_1","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":"preferredRegions","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","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":[],"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":"statusMessage","description":null,"args":[],"type":{"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":"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":"Integration","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":"Integration","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":"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":"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":"statusMessage","description":null,"args":[],"type":{"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":"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":"parameterType","description":null,"args":[],"type":{"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},{"name":"secret","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":"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":"Integration","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},{"name":"secret","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":"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},{"name":"CHECKING","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":"Integration","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},{"name":"INVALID_EMAIL","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":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","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":"refreshIntegrationState","description":null,"args":[{"name":"input","description":"Parameters - for RefreshIntegrationState","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RefreshIntegrationStateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RefreshIntegrationStatePayload","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":"updateServiceAccount","description":null,"args":[{"name":"input","description":"Parameters - for UpdateServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateServiceAccountPayload","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":"Integration","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":"myself","description":"Limit - result to your membership.","type":{"kind":"SCALAR","name":"Boolean","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":"createAuditLogSnapshot","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"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},{"name":"showSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","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},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","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":"RefreshIntegrationStateInput","description":"Autogenerated - input type of RefreshIntegrationState","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":"RefreshIntegrationStatePayload","description":"Autogenerated - return type of RefreshIntegrationState","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integration","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Integration","ofType":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":"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},{"name":"showSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","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":"preferredRegions","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A - unique identifier 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":"joined","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","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":"UpdateServiceAccountInput","description":"Autogenerated - input type of UpdateServiceAccount","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":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"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":"UpdateServiceAccountPayload","description":"Autogenerated - return type of UpdateServiceAccount","fields":[{"name":"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":"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":"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":"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":"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: Wed, 07 Jul 2021 16:59:29 GMT -- request: - method: post - uri: https://api.cloudtruth.com/graphql - body: - encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_190460 {\n viewer - {\n organization {\n environments {\n nodes {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_190460"}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - application/json - User-Agent: - - kubetruth/0.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:29 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/"4067dfe382ecaff3b64ab307fb568df4" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 9d99171d-741a-45d1-b8b3-7c4f11e7f68f - X-Runtime: - - '0.024182' - 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"},{"id":"RW52aXJvbm1lbnQtODlkYjg0NGEtOTlmMy00ODk1LWIyNWYtYjEwZjAwNGM4NTJk","name":"usa"},{"id":"RW52aXJvbm1lbnQtYjVkM2Y0MDgtMTVlZi00M2E4LWFlOWUtMjY0OTQ4OGFlZDcw","name":"europe"},{"id":"RW52aXJvbm1lbnQtN2ZlYTc5ZWQtY2MxZi00ZDY5LTkzOGYtNzM4MGE5MGI4ZDVl","name":"local"}]}}}}}' - recorded_at: Wed, 07 Jul 2021 16:59:29 GMT -- request: - method: post - uri: https://api.cloudtruth.com/graphql - body: - encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_190500($environmentId: - ID, $projectName: String, $searchTerm: String) {\n viewer {\n organization - {\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_190500"}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - application/json - User-Agent: - - kubetruth/0.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:31 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/"794cb56206374ac5ab1a95a5b4bfbc8a" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 3b3f3bbe-7e4a-46fb-a258-ebb466a876cd - X-Runtime: - - '1.571160' - body: - encoding: UTF-8 - string: '{"data":{"viewer":{"organization":{"project":{"parameters":{"nodes":[{"id":"UGFyYW1ldGVyLTMwNzJiYmEyLTU3YmYtNGVlOS1iMGM5LWU0MjE3NzFiNDE3YQ==","keyName":"aParam","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTBlMzIzMWIyLTI5MjYtNDFjNC04Mjc3LWM0YjU4Yzg1ZTkwZA==","keyName":"aSecret","isSecret":true,"environmentValue":{"parameterValue":""}}]}}}}}}' - recorded_at: Wed, 07 Jul 2021 16:59:31 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 deleted file mode 100644 index 782210e..0000000 --- a/spec/fixtures/vcr/CtApi/_parameters/gets_parameters_without_a_search.yml +++ /dev/null @@ -1,663 +0,0 @@ ---- -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.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:25 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/"55e26e24774851d2250b34d1fee03886" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 56886e10-3938-46c4-baa8-cd4d71f96dc3 - X-Runtime: - - '1.291703' - 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":"preferredRegions","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","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":"statusMessage","description":null,"args":[],"type":{"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":"ENUM","name":"AwsRegionEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"US_EAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_EAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_WEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_WEST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AF_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_EAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTHEAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTHEAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CA_CENTRAL_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CN_NORTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CN_NORTHWEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_CENTRAL_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_NORTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ME_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SA_EAST_1","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":"preferredRegions","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","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":[],"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":"statusMessage","description":null,"args":[],"type":{"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":"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":"Integration","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":"Integration","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":"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":"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":"statusMessage","description":null,"args":[],"type":{"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":"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":"parameterType","description":null,"args":[],"type":{"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},{"name":"secret","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":"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":"Integration","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},{"name":"secret","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":"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},{"name":"CHECKING","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":"Integration","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},{"name":"INVALID_EMAIL","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":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","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":"refreshIntegrationState","description":null,"args":[{"name":"input","description":"Parameters - for RefreshIntegrationState","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RefreshIntegrationStateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RefreshIntegrationStatePayload","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":"updateServiceAccount","description":null,"args":[{"name":"input","description":"Parameters - for UpdateServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateServiceAccountPayload","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":"Integration","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":"myself","description":"Limit - result to your membership.","type":{"kind":"SCALAR","name":"Boolean","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":"createAuditLogSnapshot","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"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},{"name":"showSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","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},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","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":"RefreshIntegrationStateInput","description":"Autogenerated - input type of RefreshIntegrationState","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":"RefreshIntegrationStatePayload","description":"Autogenerated - return type of RefreshIntegrationState","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integration","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Integration","ofType":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":"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},{"name":"showSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","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":"preferredRegions","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A - unique identifier 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":"joined","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","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":"UpdateServiceAccountInput","description":"Autogenerated - input type of UpdateServiceAccount","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":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"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":"UpdateServiceAccountPayload","description":"Autogenerated - return type of UpdateServiceAccount","fields":[{"name":"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":"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":"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":"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":"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: Wed, 07 Jul 2021 16:59:25 GMT -- request: - method: post - uri: https://api.cloudtruth.com/graphql - body: - encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_171400 {\n viewer - {\n organization {\n environments {\n nodes {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_171400"}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - application/json - User-Agent: - - kubetruth/0.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:25 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/"4067dfe382ecaff3b64ab307fb568df4" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 664560a0-9378-4481-b1a0-f89c4f258e50 - X-Runtime: - - '0.029243' - 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"},{"id":"RW52aXJvbm1lbnQtODlkYjg0NGEtOTlmMy00ODk1LWIyNWYtYjEwZjAwNGM4NTJk","name":"usa"},{"id":"RW52aXJvbm1lbnQtYjVkM2Y0MDgtMTVlZi00M2E4LWFlOWUtMjY0OTQ4OGFlZDcw","name":"europe"},{"id":"RW52aXJvbm1lbnQtN2ZlYTc5ZWQtY2MxZi00ZDY5LTkzOGYtNzM4MGE5MGI4ZDVl","name":"local"}]}}}}}' - recorded_at: Wed, 07 Jul 2021 16:59:25 GMT -- request: - method: post - uri: https://api.cloudtruth.com/graphql - body: - encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_171440($environmentId: - ID, $projectName: String, $searchTerm: String) {\n viewer {\n organization - {\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_171440"}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - application/json - User-Agent: - - kubetruth/0.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:28 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/"794cb56206374ac5ab1a95a5b4bfbc8a" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - afa658ba-38e2-4ca8-b7dd-e24a6f4eac58 - X-Runtime: - - '2.186310' - body: - encoding: UTF-8 - string: '{"data":{"viewer":{"organization":{"project":{"parameters":{"nodes":[{"id":"UGFyYW1ldGVyLTMwNzJiYmEyLTU3YmYtNGVlOS1iMGM5LWU0MjE3NzFiNDE3YQ==","keyName":"aParam","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTBlMzIzMWIyLTI5MjYtNDFjNC04Mjc3LWM0YjU4Yzg1ZTkwZA==","keyName":"aSecret","isSecret":true,"environmentValue":{"parameterValue":""}}]}}}}}}' - recorded_at: Wed, 07 Jul 2021 16:59:28 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 deleted file mode 100644 index acd2861..0000000 --- a/spec/fixtures/vcr/CtApi/_parameters/uses_environment_to_get_values.yml +++ /dev/null @@ -1,663 +0,0 @@ ---- -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.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:36 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/"55e26e24774851d2250b34d1fee03886" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 9f8ef7fa-598c-44ec-ba3b-f82c114da59e - X-Runtime: - - '1.342516' - 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":"preferredRegions","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","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":"statusMessage","description":null,"args":[],"type":{"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":"ENUM","name":"AwsRegionEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"US_EAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_EAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_WEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_WEST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AF_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_EAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTHEAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTHEAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CA_CENTRAL_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CN_NORTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CN_NORTHWEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_CENTRAL_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_NORTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ME_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SA_EAST_1","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":"preferredRegions","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","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":[],"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":"statusMessage","description":null,"args":[],"type":{"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":"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":"Integration","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":"Integration","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":"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":"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":"statusMessage","description":null,"args":[],"type":{"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":"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":"parameterType","description":null,"args":[],"type":{"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},{"name":"secret","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":"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":"Integration","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},{"name":"secret","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":"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},{"name":"CHECKING","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":"Integration","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},{"name":"INVALID_EMAIL","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":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","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":"refreshIntegrationState","description":null,"args":[{"name":"input","description":"Parameters - for RefreshIntegrationState","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RefreshIntegrationStateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RefreshIntegrationStatePayload","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":"updateServiceAccount","description":null,"args":[{"name":"input","description":"Parameters - for UpdateServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateServiceAccountPayload","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":"Integration","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":"myself","description":"Limit - result to your membership.","type":{"kind":"SCALAR","name":"Boolean","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":"createAuditLogSnapshot","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"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},{"name":"showSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","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},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","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":"RefreshIntegrationStateInput","description":"Autogenerated - input type of RefreshIntegrationState","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":"RefreshIntegrationStatePayload","description":"Autogenerated - return type of RefreshIntegrationState","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integration","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Integration","ofType":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":"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},{"name":"showSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","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":"preferredRegions","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A - unique identifier 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":"joined","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","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":"UpdateServiceAccountInput","description":"Autogenerated - input type of UpdateServiceAccount","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":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"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":"UpdateServiceAccountPayload","description":"Autogenerated - return type of UpdateServiceAccount","fields":[{"name":"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":"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":"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":"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":"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: Wed, 07 Jul 2021 16:59:36 GMT -- request: - method: post - uri: https://api.cloudtruth.com/graphql - body: - encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_228540 {\n viewer - {\n organization {\n environments {\n nodes {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_228540"}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - application/json - User-Agent: - - kubetruth/0.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:36 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/"4067dfe382ecaff3b64ab307fb568df4" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - d2f3b214-7ba8-4942-ab27-7192cab7e0b1 - X-Runtime: - - '0.024079' - 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"},{"id":"RW52aXJvbm1lbnQtODlkYjg0NGEtOTlmMy00ODk1LWIyNWYtYjEwZjAwNGM4NTJk","name":"usa"},{"id":"RW52aXJvbm1lbnQtYjVkM2Y0MDgtMTVlZi00M2E4LWFlOWUtMjY0OTQ4OGFlZDcw","name":"europe"},{"id":"RW52aXJvbm1lbnQtN2ZlYTc5ZWQtY2MxZi00ZDY5LTkzOGYtNzM4MGE5MGI4ZDVl","name":"local"}]}}}}}' - recorded_at: Wed, 07 Jul 2021 16:59:36 GMT -- request: - method: post - uri: https://api.cloudtruth.com/graphql - body: - encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_228620($environmentId: - ID, $projectName: String, $searchTerm: String) {\n viewer {\n organization - {\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_228620"}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - application/json - User-Agent: - - kubetruth/0.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:37 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/"794cb56206374ac5ab1a95a5b4bfbc8a" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 27e905a4-c6c6-4f8b-bb96-5ccc5d17c844 - X-Runtime: - - '0.788633' - body: - encoding: UTF-8 - string: '{"data":{"viewer":{"organization":{"project":{"parameters":{"nodes":[{"id":"UGFyYW1ldGVyLTMwNzJiYmEyLTU3YmYtNGVlOS1iMGM5LWU0MjE3NzFiNDE3YQ==","keyName":"aParam","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTBlMzIzMWIyLTI5MjYtNDFjNC04Mjc3LWM0YjU4Yzg1ZTkwZA==","keyName":"aSecret","isSecret":true,"environmentValue":{"parameterValue":""}}]}}}}}}' - recorded_at: Wed, 07 Jul 2021 16:59:37 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 deleted file mode 100644 index 0828133..0000000 --- a/spec/fixtures/vcr/CtApi/_parameters/uses_project_to_get_values.yml +++ /dev/null @@ -1,663 +0,0 @@ ---- -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.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:33 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/"55e26e24774851d2250b34d1fee03886" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 85567b95-494a-4a71-86da-f46890773f05 - X-Runtime: - - '1.290695' - 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":"preferredRegions","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","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":"statusMessage","description":null,"args":[],"type":{"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":"ENUM","name":"AwsRegionEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"US_EAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_EAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_WEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_WEST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AF_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_EAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTHEAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTHEAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CA_CENTRAL_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CN_NORTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CN_NORTHWEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_CENTRAL_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_NORTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ME_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SA_EAST_1","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":"preferredRegions","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","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":[],"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":"statusMessage","description":null,"args":[],"type":{"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":"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":"Integration","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":"Integration","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":"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":"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":"statusMessage","description":null,"args":[],"type":{"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":"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":"parameterType","description":null,"args":[],"type":{"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},{"name":"secret","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":"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":"Integration","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},{"name":"secret","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":"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},{"name":"CHECKING","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":"Integration","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},{"name":"INVALID_EMAIL","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":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","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":"refreshIntegrationState","description":null,"args":[{"name":"input","description":"Parameters - for RefreshIntegrationState","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RefreshIntegrationStateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RefreshIntegrationStatePayload","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":"updateServiceAccount","description":null,"args":[{"name":"input","description":"Parameters - for UpdateServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateServiceAccountPayload","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":"Integration","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":"myself","description":"Limit - result to your membership.","type":{"kind":"SCALAR","name":"Boolean","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":"createAuditLogSnapshot","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"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},{"name":"showSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","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},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","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":"RefreshIntegrationStateInput","description":"Autogenerated - input type of RefreshIntegrationState","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":"RefreshIntegrationStatePayload","description":"Autogenerated - return type of RefreshIntegrationState","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integration","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Integration","ofType":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":"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},{"name":"showSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","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":"preferredRegions","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A - unique identifier 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":"joined","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","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":"UpdateServiceAccountInput","description":"Autogenerated - input type of UpdateServiceAccount","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":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"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":"UpdateServiceAccountPayload","description":"Autogenerated - return type of UpdateServiceAccount","fields":[{"name":"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":"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":"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":"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":"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: Wed, 07 Jul 2021 16:59:33 GMT -- request: - method: post - uri: https://api.cloudtruth.com/graphql - body: - encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_209500 {\n viewer - {\n organization {\n environments {\n nodes {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_209500"}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - application/json - User-Agent: - - kubetruth/0.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:33 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/"4067dfe382ecaff3b64ab307fb568df4" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - de9447e4-f8bf-4daf-adff-2222379df024 - X-Runtime: - - '0.035437' - 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"},{"id":"RW52aXJvbm1lbnQtODlkYjg0NGEtOTlmMy00ODk1LWIyNWYtYjEwZjAwNGM4NTJk","name":"usa"},{"id":"RW52aXJvbm1lbnQtYjVkM2Y0MDgtMTVlZi00M2E4LWFlOWUtMjY0OTQ4OGFlZDcw","name":"europe"},{"id":"RW52aXJvbm1lbnQtN2ZlYTc5ZWQtY2MxZi00ZDY5LTkzOGYtNzM4MGE5MGI4ZDVl","name":"local"}]}}}}}' - recorded_at: Wed, 07 Jul 2021 16:59:33 GMT -- request: - method: post - uri: https://api.cloudtruth.com/graphql - body: - encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_209540($environmentId: - ID, $projectName: String, $searchTerm: String) {\n viewer {\n organization - {\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_209540"}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - application/json - User-Agent: - - kubetruth/0.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:34 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/"794cb56206374ac5ab1a95a5b4bfbc8a" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - ba748da9-c1ee-4ffb-b108-ae2bb46493de - X-Runtime: - - '0.966474' - body: - encoding: UTF-8 - string: '{"data":{"viewer":{"organization":{"project":{"parameters":{"nodes":[{"id":"UGFyYW1ldGVyLTMwNzJiYmEyLTU3YmYtNGVlOS1iMGM5LWU0MjE3NzFiNDE3YQ==","keyName":"aParam","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTBlMzIzMWIyLTI5MjYtNDFjNC04Mjc3LWM0YjU4Yzg1ZTkwZA==","keyName":"aSecret","isSecret":true,"environmentValue":{"parameterValue":""}}]}}}}}}' - recorded_at: Wed, 07 Jul 2021 16:59:34 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 deleted file mode 100644 index c67a632..0000000 --- a/spec/fixtures/vcr/CtApi/_parameters/uses_searchTerm_to_get_parameters.yml +++ /dev/null @@ -1,783 +0,0 @@ ---- -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.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:38 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/"55e26e24774851d2250b34d1fee03886" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 3445bb75-69df-4a39-9c2a-8572ade6d17d - X-Runtime: - - '1.395186' - 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":"preferredRegions","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","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":"statusMessage","description":null,"args":[],"type":{"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":"ENUM","name":"AwsRegionEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"US_EAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_EAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_WEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_WEST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AF_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_EAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTHEAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTHEAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CA_CENTRAL_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CN_NORTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CN_NORTHWEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_CENTRAL_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_NORTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ME_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SA_EAST_1","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":"preferredRegions","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","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":[],"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":"statusMessage","description":null,"args":[],"type":{"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":"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":"Integration","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":"Integration","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":"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":"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":"statusMessage","description":null,"args":[],"type":{"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":"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":"parameterType","description":null,"args":[],"type":{"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},{"name":"secret","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":"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":"Integration","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},{"name":"secret","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":"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},{"name":"CHECKING","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":"Integration","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},{"name":"INVALID_EMAIL","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":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","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":"refreshIntegrationState","description":null,"args":[{"name":"input","description":"Parameters - for RefreshIntegrationState","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RefreshIntegrationStateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RefreshIntegrationStatePayload","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":"updateServiceAccount","description":null,"args":[{"name":"input","description":"Parameters - for UpdateServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateServiceAccountPayload","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":"Integration","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":"myself","description":"Limit - result to your membership.","type":{"kind":"SCALAR","name":"Boolean","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":"createAuditLogSnapshot","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"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},{"name":"showSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","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},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","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":"RefreshIntegrationStateInput","description":"Autogenerated - input type of RefreshIntegrationState","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":"RefreshIntegrationStatePayload","description":"Autogenerated - return type of RefreshIntegrationState","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integration","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Integration","ofType":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":"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},{"name":"showSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","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":"preferredRegions","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A - unique identifier 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":"joined","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","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":"UpdateServiceAccountInput","description":"Autogenerated - input type of UpdateServiceAccount","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":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"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":"UpdateServiceAccountPayload","description":"Autogenerated - return type of UpdateServiceAccount","fields":[{"name":"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":"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":"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":"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":"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: Wed, 07 Jul 2021 16:59:40 GMT -- request: - method: post - uri: https://api.cloudtruth.com/graphql - body: - encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_247620 {\n viewer - {\n organization {\n environments {\n nodes {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_247620"}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - application/json - User-Agent: - - kubetruth/0.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:40 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/"4067dfe382ecaff3b64ab307fb568df4" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 22744f92-6ce1-4623-986b-09a321247347 - X-Runtime: - - '0.023837' - 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"},{"id":"RW52aXJvbm1lbnQtODlkYjg0NGEtOTlmMy00ODk1LWIyNWYtYjEwZjAwNGM4NTJk","name":"usa"},{"id":"RW52aXJvbm1lbnQtYjVkM2Y0MDgtMTVlZi00M2E4LWFlOWUtMjY0OTQ4OGFlZDcw","name":"europe"},{"id":"RW52aXJvbm1lbnQtN2ZlYTc5ZWQtY2MxZi00ZDY5LTkzOGYtNzM4MGE5MGI4ZDVl","name":"local"}]}}}}}' - recorded_at: Wed, 07 Jul 2021 16:59:40 GMT -- request: - method: post - uri: https://api.cloudtruth.com/graphql - body: - encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_247660($environmentId: - ID, $projectName: String, $searchTerm: String) {\n viewer {\n organization - {\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_247660"}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - application/json - User-Agent: - - kubetruth/0.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:41 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/"794cb56206374ac5ab1a95a5b4bfbc8a" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - da083426-8d5e-4177-a4f3-33396c0f7437 - X-Runtime: - - '0.918267' - body: - encoding: UTF-8 - string: '{"data":{"viewer":{"organization":{"project":{"parameters":{"nodes":[{"id":"UGFyYW1ldGVyLTMwNzJiYmEyLTU3YmYtNGVlOS1iMGM5LWU0MjE3NzFiNDE3YQ==","keyName":"aParam","isSecret":false,"environmentValue":{"parameterValue":""}},{"id":"UGFyYW1ldGVyLTBlMzIzMWIyLTI5MjYtNDFjNC04Mjc3LWM0YjU4Yzg1ZTkwZA==","keyName":"aSecret","isSecret":true,"environmentValue":{"parameterValue":""}}]}}}}}}' - recorded_at: Wed, 07 Jul 2021 16:59:41 GMT -- request: - method: post - uri: https://api.cloudtruth.com/graphql - body: - encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_247660($environmentId: - ID, $projectName: String, $searchTerm: String) {\n viewer {\n organization - {\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_247660"}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - application/json - User-Agent: - - kubetruth/0.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:42 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/"af7fd6d1f268e61fc3a6746c45a73b80" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 88544526-0c5f-42be-8f63-6f48d7c925f3 - X-Runtime: - - '0.032396' - body: - encoding: UTF-8 - string: '{"data":{"viewer":{"organization":{"project":{"parameters":{"nodes":[]}}}}}}' - recorded_at: Wed, 07 Jul 2021 16:59:42 GMT -- request: - method: post - uri: https://api.cloudtruth.com/graphql - body: - encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_247660($environmentId: - ID, $projectName: String, $searchTerm: String) {\n viewer {\n organization - {\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":"aParam","environmentId":"RW52aXJvbm1lbnQtZjk3MDI1NGEtNGQ0NS00YTA1LWJiYjctOTRjZTdhOGRmODky"},"operationName":"GraphQL__Client__OperationDefinition_247660"}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - application/json - User-Agent: - - kubetruth/0.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:42 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/"a1039504f7988c2b08a9e07635bd608e" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - c13c5366-faf4-403a-bde1-d772abfd40c2 - X-Runtime: - - '0.049076' - body: - encoding: UTF-8 - string: '{"data":{"viewer":{"organization":{"project":{"parameters":{"nodes":[{"id":"UGFyYW1ldGVyLTMwNzJiYmEyLTU3YmYtNGVlOS1iMGM5LWU0MjE3NzFiNDE3YQ==","keyName":"aParam","isSecret":false,"environmentValue":{"parameterValue":""}}]}}}}}}' - recorded_at: Wed, 07 Jul 2021 16:59:42 GMT -recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/CtApi/_projects/doesn_t_cache_projects_.yml b/spec/fixtures/vcr/CtApi/_projects/doesn_t_cache_projects_.yml deleted file mode 100644 index 080bb8e..0000000 --- a/spec/fixtures/vcr/CtApi/_projects/doesn_t_cache_projects_.yml +++ /dev/null @@ -1,774 +0,0 @@ ---- -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.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:23 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/"55e26e24774851d2250b34d1fee03886" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 0ce8dfd6-0c7e-4fb2-b8b9-bbb2e61ce3ed - X-Runtime: - - '1.076709' - 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":"preferredRegions","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","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":"statusMessage","description":null,"args":[],"type":{"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":"ENUM","name":"AwsRegionEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"US_EAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_EAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_WEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_WEST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AF_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_EAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTHEAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTHEAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CA_CENTRAL_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CN_NORTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CN_NORTHWEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_CENTRAL_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_NORTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ME_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SA_EAST_1","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":"preferredRegions","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","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":[],"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":"statusMessage","description":null,"args":[],"type":{"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":"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":"Integration","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":"Integration","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":"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":"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":"statusMessage","description":null,"args":[],"type":{"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":"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":"parameterType","description":null,"args":[],"type":{"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},{"name":"secret","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":"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":"Integration","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},{"name":"secret","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":"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},{"name":"CHECKING","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":"Integration","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},{"name":"INVALID_EMAIL","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":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","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":"refreshIntegrationState","description":null,"args":[{"name":"input","description":"Parameters - for RefreshIntegrationState","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RefreshIntegrationStateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RefreshIntegrationStatePayload","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":"updateServiceAccount","description":null,"args":[{"name":"input","description":"Parameters - for UpdateServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateServiceAccountPayload","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":"Integration","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":"myself","description":"Limit - result to your membership.","type":{"kind":"SCALAR","name":"Boolean","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":"createAuditLogSnapshot","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"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},{"name":"showSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","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},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","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":"RefreshIntegrationStateInput","description":"Autogenerated - input type of RefreshIntegrationState","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":"RefreshIntegrationStatePayload","description":"Autogenerated - return type of RefreshIntegrationState","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integration","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Integration","ofType":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":"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},{"name":"showSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","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":"preferredRegions","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A - unique identifier 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":"joined","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","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":"UpdateServiceAccountInput","description":"Autogenerated - input type of UpdateServiceAccount","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":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"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":"UpdateServiceAccountPayload","description":"Autogenerated - return type of UpdateServiceAccount","fields":[{"name":"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":"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":"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":"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":"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: Wed, 07 Jul 2021 16:59:23 GMT -- request: - method: post - uri: https://api.cloudtruth.com/graphql - body: - encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_150180 {\n viewer - {\n organization {\n projects {\n nodes {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_150180"}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - application/json - User-Agent: - - kubetruth/0.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:23 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/"1912df5ea7f5445323273dddf0b748e3" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - cd478b37-51e7-40bf-93da-ce2dc064e0c1 - X-Runtime: - - '0.026668' - body: - encoding: UTF-8 - string: '{"data":{"viewer":{"organization":{"projects":{"nodes":[{"id":"UHJvamVjdC1hMmUzMjgyYi0wMWE5LTRiMjEtOGJlMy04MDcyNzBiZWQ1MzQ=","name":"default"},{"id":"UHJvamVjdC01ZDFmNjUwNC0wNTkzLTQ5ZGEtYjlkNi00ZTQ4YmUwMDExNmQ=","name":"web"},{"id":"UHJvamVjdC0yYmYyZTE1OC1kZTIyLTQyZjktYTkyMC1kYWM3MTAxMzYxYzM=","name":"service"},{"id":"UHJvamVjdC1hMWRlNDZhMS0yNjA1LTQ5NjYtOTVjMC0wYWRmZDgxNDBhMzA=","name":"service-demo1"},{"id":"UHJvamVjdC1mYjY3MjRlOC1jM2NkLTQwYjUtYTUxNi1hNzgxYmU1M2ZjZGQ=","name":"service-demo3"},{"id":"UHJvamVjdC04NWQ2ZGI4Yi03YjNjLTQzODAtYTE0Ny01YTk0NmEzNmNkY2E=","name":"service-demo2"},{"id":"UHJvamVjdC01YjY3YTcyYy0xYjAxLTQ2ZTEtYWMwOC1iYzM5YWIyYWMzZDQ=","name":"common"},{"id":"UHJvamVjdC04NjhiZDJmMC1hMjIwLTQyN2YtYTIyZi02MGMyM2NhYWJlOTE=","name":"common-service"},{"id":"UHJvamVjdC04ZDdmZjlkZi0wZTNkLTQzNmYtYmVlZS1lNTlmYjZiNWE4MzE=","name":"deploy"},{"id":"UHJvamVjdC04ODM3NGUyZi1lMTMwLTRiZGUtODVjMy0zMGE4ODMzNmQyMGM=","name":"cfdemo"},{"id":"UHJvamVjdC05YjU0NTMxZi0zYzMzLTQxZTMtYjMzMC0yMWMyOTZmOTYyMDg=","name":"kubetruth"}]}}}}}' - recorded_at: Wed, 07 Jul 2021 16:59:23 GMT -- request: - method: post - uri: https://api.cloudtruth.com/graphql - body: - encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_150180 {\n viewer - {\n organization {\n projects {\n nodes {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_150180"}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - application/json - User-Agent: - - kubetruth/0.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:23 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/"1912df5ea7f5445323273dddf0b748e3" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - d43c45c6-f730-4189-933d-19058f7833a7 - X-Runtime: - - '0.043577' - body: - encoding: UTF-8 - string: '{"data":{"viewer":{"organization":{"projects":{"nodes":[{"id":"UHJvamVjdC1hMmUzMjgyYi0wMWE5LTRiMjEtOGJlMy04MDcyNzBiZWQ1MzQ=","name":"default"},{"id":"UHJvamVjdC01ZDFmNjUwNC0wNTkzLTQ5ZGEtYjlkNi00ZTQ4YmUwMDExNmQ=","name":"web"},{"id":"UHJvamVjdC0yYmYyZTE1OC1kZTIyLTQyZjktYTkyMC1kYWM3MTAxMzYxYzM=","name":"service"},{"id":"UHJvamVjdC1hMWRlNDZhMS0yNjA1LTQ5NjYtOTVjMC0wYWRmZDgxNDBhMzA=","name":"service-demo1"},{"id":"UHJvamVjdC1mYjY3MjRlOC1jM2NkLTQwYjUtYTUxNi1hNzgxYmU1M2ZjZGQ=","name":"service-demo3"},{"id":"UHJvamVjdC04NWQ2ZGI4Yi03YjNjLTQzODAtYTE0Ny01YTk0NmEzNmNkY2E=","name":"service-demo2"},{"id":"UHJvamVjdC01YjY3YTcyYy0xYjAxLTQ2ZTEtYWMwOC1iYzM5YWIyYWMzZDQ=","name":"common"},{"id":"UHJvamVjdC04NjhiZDJmMC1hMjIwLTQyN2YtYTIyZi02MGMyM2NhYWJlOTE=","name":"common-service"},{"id":"UHJvamVjdC04ZDdmZjlkZi0wZTNkLTQzNmYtYmVlZS1lNTlmYjZiNWE4MzE=","name":"deploy"},{"id":"UHJvamVjdC04ODM3NGUyZi1lMTMwLTRiZGUtODVjMy0zMGE4ODMzNmQyMGM=","name":"cfdemo"},{"id":"UHJvamVjdC05YjU0NTMxZi0zYzMzLTQxZTMtYjMzMC0yMWMyOTZmOTYyMDg=","name":"kubetruth"}]}}}}}' - recorded_at: Wed, 07 Jul 2021 16:59:23 GMT -- request: - method: post - uri: https://api.cloudtruth.com/graphql - body: - encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_150180 {\n viewer - {\n organization {\n projects {\n nodes {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_150180"}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - application/json - User-Agent: - - kubetruth/0.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:24 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/"1912df5ea7f5445323273dddf0b748e3" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 1fe213bb-51df-4d96-ab90-561b06f85fa9 - X-Runtime: - - '0.025482' - body: - encoding: UTF-8 - string: '{"data":{"viewer":{"organization":{"projects":{"nodes":[{"id":"UHJvamVjdC1hMmUzMjgyYi0wMWE5LTRiMjEtOGJlMy04MDcyNzBiZWQ1MzQ=","name":"default"},{"id":"UHJvamVjdC01ZDFmNjUwNC0wNTkzLTQ5ZGEtYjlkNi00ZTQ4YmUwMDExNmQ=","name":"web"},{"id":"UHJvamVjdC0yYmYyZTE1OC1kZTIyLTQyZjktYTkyMC1kYWM3MTAxMzYxYzM=","name":"service"},{"id":"UHJvamVjdC1hMWRlNDZhMS0yNjA1LTQ5NjYtOTVjMC0wYWRmZDgxNDBhMzA=","name":"service-demo1"},{"id":"UHJvamVjdC1mYjY3MjRlOC1jM2NkLTQwYjUtYTUxNi1hNzgxYmU1M2ZjZGQ=","name":"service-demo3"},{"id":"UHJvamVjdC04NWQ2ZGI4Yi03YjNjLTQzODAtYTE0Ny01YTk0NmEzNmNkY2E=","name":"service-demo2"},{"id":"UHJvamVjdC01YjY3YTcyYy0xYjAxLTQ2ZTEtYWMwOC1iYzM5YWIyYWMzZDQ=","name":"common"},{"id":"UHJvamVjdC04NjhiZDJmMC1hMjIwLTQyN2YtYTIyZi02MGMyM2NhYWJlOTE=","name":"common-service"},{"id":"UHJvamVjdC04ZDdmZjlkZi0wZTNkLTQzNmYtYmVlZS1lNTlmYjZiNWE4MzE=","name":"deploy"},{"id":"UHJvamVjdC04ODM3NGUyZi1lMTMwLTRiZGUtODVjMy0zMGE4ODMzNmQyMGM=","name":"cfdemo"},{"id":"UHJvamVjdC05YjU0NTMxZi0zYzMzLTQxZTMtYjMzMC0yMWMyOTZmOTYyMDg=","name":"kubetruth"}]}}}}}' - recorded_at: Wed, 07 Jul 2021 16:59:24 GMT -- request: - method: post - uri: https://api.cloudtruth.com/graphql - body: - encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_150180 {\n viewer - {\n organization {\n projects {\n nodes {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_150180"}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - application/json - User-Agent: - - kubetruth/0.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:24 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/"1912df5ea7f5445323273dddf0b748e3" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 4281a034-4443-46bb-9fee-1cf77a9e8cdd - X-Runtime: - - '0.019089' - body: - encoding: UTF-8 - string: '{"data":{"viewer":{"organization":{"projects":{"nodes":[{"id":"UHJvamVjdC1hMmUzMjgyYi0wMWE5LTRiMjEtOGJlMy04MDcyNzBiZWQ1MzQ=","name":"default"},{"id":"UHJvamVjdC01ZDFmNjUwNC0wNTkzLTQ5ZGEtYjlkNi00ZTQ4YmUwMDExNmQ=","name":"web"},{"id":"UHJvamVjdC0yYmYyZTE1OC1kZTIyLTQyZjktYTkyMC1kYWM3MTAxMzYxYzM=","name":"service"},{"id":"UHJvamVjdC1hMWRlNDZhMS0yNjA1LTQ5NjYtOTVjMC0wYWRmZDgxNDBhMzA=","name":"service-demo1"},{"id":"UHJvamVjdC1mYjY3MjRlOC1jM2NkLTQwYjUtYTUxNi1hNzgxYmU1M2ZjZGQ=","name":"service-demo3"},{"id":"UHJvamVjdC04NWQ2ZGI4Yi03YjNjLTQzODAtYTE0Ny01YTk0NmEzNmNkY2E=","name":"service-demo2"},{"id":"UHJvamVjdC01YjY3YTcyYy0xYjAxLTQ2ZTEtYWMwOC1iYzM5YWIyYWMzZDQ=","name":"common"},{"id":"UHJvamVjdC04NjhiZDJmMC1hMjIwLTQyN2YtYTIyZi02MGMyM2NhYWJlOTE=","name":"common-service"},{"id":"UHJvamVjdC04ZDdmZjlkZi0wZTNkLTQzNmYtYmVlZS1lNTlmYjZiNWE4MzE=","name":"deploy"},{"id":"UHJvamVjdC04ODM3NGUyZi1lMTMwLTRiZGUtODVjMy0zMGE4ODMzNmQyMGM=","name":"cfdemo"},{"id":"UHJvamVjdC05YjU0NTMxZi0zYzMzLTQxZTMtYjMzMC0yMWMyOTZmOTYyMDg=","name":"kubetruth"}]}}}}}' - recorded_at: Wed, 07 Jul 2021 16:59:24 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 deleted file mode 100644 index b23a035..0000000 --- a/spec/fixtures/vcr/CtApi/_projects/gets_projects.yml +++ /dev/null @@ -1,660 +0,0 @@ ---- -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.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:21 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/"55e26e24774851d2250b34d1fee03886" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - ee8328ad-318f-4e46-97ac-c3d12536fbc9 - X-Runtime: - - '1.179298' - 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":"preferredRegions","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","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":"statusMessage","description":null,"args":[],"type":{"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":"ENUM","name":"AwsRegionEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"US_EAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_EAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_WEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_WEST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AF_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_EAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTHEAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTHEAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CA_CENTRAL_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CN_NORTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CN_NORTHWEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_CENTRAL_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_NORTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ME_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SA_EAST_1","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":"preferredRegions","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","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":[],"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":"statusMessage","description":null,"args":[],"type":{"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":"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":"Integration","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":"Integration","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":"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":"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":"statusMessage","description":null,"args":[],"type":{"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":"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":"parameterType","description":null,"args":[],"type":{"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},{"name":"secret","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":"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":"Integration","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},{"name":"secret","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":"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},{"name":"CHECKING","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":"Integration","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},{"name":"INVALID_EMAIL","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":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","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":"refreshIntegrationState","description":null,"args":[{"name":"input","description":"Parameters - for RefreshIntegrationState","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RefreshIntegrationStateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RefreshIntegrationStatePayload","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":"updateServiceAccount","description":null,"args":[{"name":"input","description":"Parameters - for UpdateServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateServiceAccountPayload","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":"Integration","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":"myself","description":"Limit - result to your membership.","type":{"kind":"SCALAR","name":"Boolean","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":"createAuditLogSnapshot","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"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},{"name":"showSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","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},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","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":"RefreshIntegrationStateInput","description":"Autogenerated - input type of RefreshIntegrationState","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":"RefreshIntegrationStatePayload","description":"Autogenerated - return type of RefreshIntegrationState","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integration","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Integration","ofType":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":"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},{"name":"showSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","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":"preferredRegions","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A - unique identifier 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":"joined","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","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":"UpdateServiceAccountInput","description":"Autogenerated - input type of UpdateServiceAccount","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":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"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":"UpdateServiceAccountPayload","description":"Autogenerated - return type of UpdateServiceAccount","fields":[{"name":"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":"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":"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":"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":"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: Wed, 07 Jul 2021 16:59:21 GMT -- request: - method: post - uri: https://api.cloudtruth.com/graphql - body: - encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_131160 {\n viewer - {\n organization {\n projects {\n nodes {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_131160"}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - application/json - User-Agent: - - kubetruth/0.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:21 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/"1912df5ea7f5445323273dddf0b748e3" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - c4e83c4f-9ce8-42f0-b634-c9053df860b8 - X-Runtime: - - '0.048631' - body: - encoding: UTF-8 - string: '{"data":{"viewer":{"organization":{"projects":{"nodes":[{"id":"UHJvamVjdC1hMmUzMjgyYi0wMWE5LTRiMjEtOGJlMy04MDcyNzBiZWQ1MzQ=","name":"default"},{"id":"UHJvamVjdC01ZDFmNjUwNC0wNTkzLTQ5ZGEtYjlkNi00ZTQ4YmUwMDExNmQ=","name":"web"},{"id":"UHJvamVjdC0yYmYyZTE1OC1kZTIyLTQyZjktYTkyMC1kYWM3MTAxMzYxYzM=","name":"service"},{"id":"UHJvamVjdC1hMWRlNDZhMS0yNjA1LTQ5NjYtOTVjMC0wYWRmZDgxNDBhMzA=","name":"service-demo1"},{"id":"UHJvamVjdC1mYjY3MjRlOC1jM2NkLTQwYjUtYTUxNi1hNzgxYmU1M2ZjZGQ=","name":"service-demo3"},{"id":"UHJvamVjdC04NWQ2ZGI4Yi03YjNjLTQzODAtYTE0Ny01YTk0NmEzNmNkY2E=","name":"service-demo2"},{"id":"UHJvamVjdC01YjY3YTcyYy0xYjAxLTQ2ZTEtYWMwOC1iYzM5YWIyYWMzZDQ=","name":"common"},{"id":"UHJvamVjdC04NjhiZDJmMC1hMjIwLTQyN2YtYTIyZi02MGMyM2NhYWJlOTE=","name":"common-service"},{"id":"UHJvamVjdC04ZDdmZjlkZi0wZTNkLTQzNmYtYmVlZS1lNTlmYjZiNWE4MzE=","name":"deploy"},{"id":"UHJvamVjdC04ODM3NGUyZi1lMTMwLTRiZGUtODVjMy0zMGE4ODMzNmQyMGM=","name":"cfdemo"},{"id":"UHJvamVjdC05YjU0NTMxZi0zYzMzLTQxZTMtYjMzMC0yMWMyOTZmOTYyMDg=","name":"kubetruth"}]}}}}}' - recorded_at: Wed, 07 Jul 2021 16:59:21 GMT -- request: - method: post - uri: https://api.cloudtruth.com/graphql - body: - encoding: UTF-8 - string: '{"query":"query GraphQL__Client__OperationDefinition_131160 {\n viewer - {\n organization {\n projects {\n nodes {\n id\n name\n }\n }\n }\n }\n}","operationName":"GraphQL__Client__OperationDefinition_131160"}' - headers: - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - application/json - User-Agent: - - kubetruth/0.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:22 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/"1912df5ea7f5445323273dddf0b748e3" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - 3757c5a1-6aee-41e6-ad12-5e8207dd8d9d - X-Runtime: - - '0.138491' - body: - encoding: UTF-8 - string: '{"data":{"viewer":{"organization":{"projects":{"nodes":[{"id":"UHJvamVjdC1hMmUzMjgyYi0wMWE5LTRiMjEtOGJlMy04MDcyNzBiZWQ1MzQ=","name":"default"},{"id":"UHJvamVjdC01ZDFmNjUwNC0wNTkzLTQ5ZGEtYjlkNi00ZTQ4YmUwMDExNmQ=","name":"web"},{"id":"UHJvamVjdC0yYmYyZTE1OC1kZTIyLTQyZjktYTkyMC1kYWM3MTAxMzYxYzM=","name":"service"},{"id":"UHJvamVjdC1hMWRlNDZhMS0yNjA1LTQ5NjYtOTVjMC0wYWRmZDgxNDBhMzA=","name":"service-demo1"},{"id":"UHJvamVjdC1mYjY3MjRlOC1jM2NkLTQwYjUtYTUxNi1hNzgxYmU1M2ZjZGQ=","name":"service-demo3"},{"id":"UHJvamVjdC04NWQ2ZGI4Yi03YjNjLTQzODAtYTE0Ny01YTk0NmEzNmNkY2E=","name":"service-demo2"},{"id":"UHJvamVjdC01YjY3YTcyYy0xYjAxLTQ2ZTEtYWMwOC1iYzM5YWIyYWMzZDQ=","name":"common"},{"id":"UHJvamVjdC04NjhiZDJmMC1hMjIwLTQyN2YtYTIyZi02MGMyM2NhYWJlOTE=","name":"common-service"},{"id":"UHJvamVjdC04ZDdmZjlkZi0wZTNkLTQzNmYtYmVlZS1lNTlmYjZiNWE4MzE=","name":"deploy"},{"id":"UHJvamVjdC04ODM3NGUyZi1lMTMwLTRiZGUtODVjMy0zMGE4ODMzNmQyMGM=","name":"cfdemo"},{"id":"UHJvamVjdC05YjU0NTMxZi0zYzMzLTQxZTMtYjMzMC0yMWMyOTZmOTYyMDg=","name":"kubetruth"}]}}}}}' - recorded_at: Wed, 07 Jul 2021 16:59:22 GMT -recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/CtApi/class_definition/defines_class.yml b/spec/fixtures/vcr/CtApi/class_definition/defines_class.yml deleted file mode 100644 index 52bd32f..0000000 --- a/spec/fixtures/vcr/CtApi/class_definition/defines_class.yml +++ /dev/null @@ -1,546 +0,0 @@ ---- -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.6.0 - Content-Type: - - application/json - Authorization: - - Bearer - response: - status: - code: 200 - message: OK - headers: - Date: - - Wed, 07 Jul 2021 16:59:10 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/"55e26e24774851d2250b34d1fee03886" - Cache-Control: - - max-age=0, private, must-revalidate - X-Request-Id: - - a0b7c9de-4bcf-4f4a-b209-7084e0d96dc7 - X-Runtime: - - '1.298296' - 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":"preferredRegions","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","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":"statusMessage","description":null,"args":[],"type":{"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":"ENUM","name":"AwsRegionEnum","description":null,"fields":null,"inputFields":null,"interfaces":null,"enumValues":[{"name":"US_EAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_EAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_WEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"US_WEST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AF_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_EAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTHEAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_SOUTHEAST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"AP_NORTHEAST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CA_CENTRAL_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CN_NORTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"CN_NORTHWEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_CENTRAL_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_2","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_WEST_3","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"EU_NORTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"ME_SOUTH_1","description":null,"isDeprecated":false,"deprecationReason":null},{"name":"SA_EAST_1","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":"preferredRegions","description":null,"type":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","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":[],"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":"statusMessage","description":null,"args":[],"type":{"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":"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":"Integration","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":"Integration","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":"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":"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":"statusMessage","description":null,"args":[],"type":{"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":"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":"parameterType","description":null,"args":[],"type":{"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},{"name":"secret","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":"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":"Integration","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},{"name":"secret","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":"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},{"name":"CHECKING","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":"Integration","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},{"name":"INVALID_EMAIL","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":"description","description":null,"args":[],"type":{"kind":"SCALAR","name":"String","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":"refreshIntegrationState","description":null,"args":[{"name":"input","description":"Parameters - for RefreshIntegrationState","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"RefreshIntegrationStateInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"RefreshIntegrationStatePayload","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":"updateServiceAccount","description":null,"args":[{"name":"input","description":"Parameters - for UpdateServiceAccount","type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"INPUT_OBJECT","name":"UpdateServiceAccountInput","ofType":null}},"defaultValue":null}],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"UpdateServiceAccountPayload","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":"Integration","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":"myself","description":"Limit - result to your membership.","type":{"kind":"SCALAR","name":"Boolean","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":"createAuditLogSnapshot","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","ofType":null}},"isDeprecated":false,"deprecationReason":null},{"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},{"name":"showSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","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},{"name":"environmentName","description":null,"type":{"kind":"SCALAR","name":"String","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":"RefreshIntegrationStateInput","description":"Autogenerated - input type of RefreshIntegrationState","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":"RefreshIntegrationStatePayload","description":"Autogenerated - return type of RefreshIntegrationState","fields":[{"name":"clientMutationId","description":"A - unique identifier for the client performing the mutation.","args":[],"type":{"kind":"SCALAR","name":"String","ofType":null},"isDeprecated":false,"deprecationReason":null},{"name":"integration","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"OBJECT","name":"Integration","ofType":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":"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},{"name":"showSecret","description":null,"type":{"kind":"SCALAR","name":"Boolean","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":"preferredRegions","description":null,"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"LIST","name":null,"ofType":{"kind":"NON_NULL","name":null,"ofType":{"kind":"ENUM","name":"AwsRegionEnum","ofType":null}}}},"defaultValue":null},{"name":"clientMutationId","description":"A - unique identifier 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":"joined","description":null,"args":[],"type":{"kind":"NON_NULL","name":null,"ofType":{"kind":"SCALAR","name":"Boolean","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":"UpdateServiceAccountInput","description":"Autogenerated - input type of UpdateServiceAccount","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":"description","description":null,"type":{"kind":"SCALAR","name":"String","ofType":null},"defaultValue":null},{"name":"role","description":null,"type":{"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":"UpdateServiceAccountPayload","description":"Autogenerated - return type of UpdateServiceAccount","fields":[{"name":"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":"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":"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":"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":"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: Wed, 07 Jul 2021 16:59:10 GMT -recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/gets_id.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/gets_id.yml new file mode 100644 index 0000000..0467605 --- /dev/null +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/gets_id.yml @@ -0,0 +1,58 @@ +--- +http_interactions: +- request: + method: get + uri: https://localhost:8000/api/v1/environments/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 200 + message: OK + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:01 GMT + Connection: + - close + Content-Type: + - application/json + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '1516' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=uDIbNTaPhFophsYt6FAJTZN7mJENHlOSN5ou7hnqZy2gM9vLRRRt2EcJwaEVEpsc; + expires=Tue, 12 Jul 2022 18:36:01 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=2egiujqoz1jhpedzjubjruyy4r42rc3c; expires=Tue, 27 Jul 2021 18:36:01 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","id":"1c03b5c1-7040-49e4-be35-7594be262c11","name":"default","description":"Default + environment, base for all environments.","parent":null,"created_at":"2021-07-13T17:57:00.029171Z","modified_at":"2021-07-13T17:57:00.029210Z"},{"url":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","id":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","name":"development","description":"Development + deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.048313Z","modified_at":"2021-07-13T17:57:00.048347Z"},{"url":"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/","id":"1eadb281-baa9-4816-8f88-775d0a636f16","name":"production","description":"Production + deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.072603Z","modified_at":"2021-07-13T17:57:00.072636Z"},{"url":"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/","id":"f7f81820-f920-467c-9a37-fc4a6ad518fe","name":"staging","description":"Staging + deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.061960Z","modified_at":"2021-07-13T17:57:00.061995Z"}]}' + recorded_at: Tue, 13 Jul 2021 18:36:01 GMT +recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/raises_if_environment_doesn_t_exist.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/raises_if_environment_doesn_t_exist.yml new file mode 100644 index 0000000..110854d --- /dev/null +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/raises_if_environment_doesn_t_exist.yml @@ -0,0 +1,113 @@ +--- +http_interactions: +- request: + method: get + uri: https://localhost:8000/api/v1/environments/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 200 + message: OK + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:03 GMT + Connection: + - close + Content-Type: + - application/json + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '1516' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=2zYAMCOMD1QHaswxx2eV7yk06QbvFcsjm5kw82znc7thtjVLnEDqQh2JTCG5YVzu; + expires=Tue, 12 Jul 2022 18:36:03 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=i3saufusqv9r89fuwhbmqzd3nnym0vk9; expires=Tue, 27 Jul 2021 18:36:03 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","id":"1c03b5c1-7040-49e4-be35-7594be262c11","name":"default","description":"Default + environment, base for all environments.","parent":null,"created_at":"2021-07-13T17:57:00.029171Z","modified_at":"2021-07-13T17:57:00.029210Z"},{"url":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","id":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","name":"development","description":"Development + deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.048313Z","modified_at":"2021-07-13T17:57:00.048347Z"},{"url":"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/","id":"1eadb281-baa9-4816-8f88-775d0a636f16","name":"production","description":"Production + deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.072603Z","modified_at":"2021-07-13T17:57:00.072636Z"},{"url":"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/","id":"f7f81820-f920-467c-9a37-fc4a6ad518fe","name":"staging","description":"Staging + deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.061960Z","modified_at":"2021-07-13T17:57:00.061995Z"}]}' + recorded_at: Tue, 13 Jul 2021 18:36:03 GMT +- request: + method: get + uri: https://localhost:8000/api/v1/environments/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 200 + message: OK + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:04 GMT + Connection: + - close + Content-Type: + - application/json + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '1516' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=VNhyXCrJAtschnRJRtp8TAmIguMbEB7FxAXQxyqP4UDjtbuR2XqH6mmnk5TpTYPb; + expires=Tue, 12 Jul 2022 18:36:04 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=h6e4dg4ojhggi11ofi1enjjgyaax6lyn; expires=Tue, 27 Jul 2021 18:36:04 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","id":"1c03b5c1-7040-49e4-be35-7594be262c11","name":"default","description":"Default + environment, base for all environments.","parent":null,"created_at":"2021-07-13T17:57:00.029171Z","modified_at":"2021-07-13T17:57:00.029210Z"},{"url":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","id":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","name":"development","description":"Development + deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.048313Z","modified_at":"2021-07-13T17:57:00.048347Z"},{"url":"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/","id":"1eadb281-baa9-4816-8f88-775d0a636f16","name":"production","description":"Production + deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.072603Z","modified_at":"2021-07-13T17:57:00.072636Z"},{"url":"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/","id":"f7f81820-f920-467c-9a37-fc4a6ad518fe","name":"staging","description":"Staging + deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.061960Z","modified_at":"2021-07-13T17:57:00.061995Z"}]}' + recorded_at: Tue, 13 Jul 2021 18:36:04 GMT +recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/retries_if_environment_doesn_t_exist.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/retries_if_environment_doesn_t_exist.yml new file mode 100644 index 0000000..5b2ea6d --- /dev/null +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/retries_if_environment_doesn_t_exist.yml @@ -0,0 +1,113 @@ +--- +http_interactions: +- request: + method: get + uri: https://localhost:8000/api/v1/environments/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 200 + message: OK + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:06 GMT + Connection: + - close + Content-Type: + - application/json + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '1516' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=QT76YQOoIDVTW7CrP3kc7Y3rCTyEo3IRERAOroDMtLZsf6K9LaIGK6wuFkLj7DaD; + expires=Tue, 12 Jul 2022 18:36:05 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=jx32a0heaqqyyb6f95twkne0noaelchm; expires=Tue, 27 Jul 2021 18:36:05 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","id":"1c03b5c1-7040-49e4-be35-7594be262c11","name":"default","description":"Default + environment, base for all environments.","parent":null,"created_at":"2021-07-13T17:57:00.029171Z","modified_at":"2021-07-13T17:57:00.029210Z"},{"url":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","id":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","name":"development","description":"Development + deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.048313Z","modified_at":"2021-07-13T17:57:00.048347Z"},{"url":"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/","id":"1eadb281-baa9-4816-8f88-775d0a636f16","name":"production","description":"Production + deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.072603Z","modified_at":"2021-07-13T17:57:00.072636Z"},{"url":"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/","id":"f7f81820-f920-467c-9a37-fc4a6ad518fe","name":"staging","description":"Staging + deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.061960Z","modified_at":"2021-07-13T17:57:00.061995Z"}]}' + recorded_at: Tue, 13 Jul 2021 18:36:06 GMT +- request: + method: get + uri: https://localhost:8000/api/v1/environments/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 200 + message: OK + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:07 GMT + Connection: + - close + Content-Type: + - application/json + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '1516' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=Au6BakQ3KmzAOHGjnCqzr0yQhKjVWakTPUulERRoLavMGag9Cc655wOyMwdaBot3; + expires=Tue, 12 Jul 2022 18:36:07 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=5jfkevxbatab23ck67gg04b3pcna14ep; expires=Tue, 27 Jul 2021 18:36:07 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","id":"1c03b5c1-7040-49e4-be35-7594be262c11","name":"default","description":"Default + environment, base for all environments.","parent":null,"created_at":"2021-07-13T17:57:00.029171Z","modified_at":"2021-07-13T17:57:00.029210Z"},{"url":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","id":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","name":"development","description":"Development + deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.048313Z","modified_at":"2021-07-13T17:57:00.048347Z"},{"url":"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/","id":"1eadb281-baa9-4816-8f88-775d0a636f16","name":"production","description":"Production + deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.072603Z","modified_at":"2021-07-13T17:57:00.072636Z"},{"url":"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/","id":"f7f81820-f920-467c-9a37-fc4a6ad518fe","name":"staging","description":"Staging + deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.061960Z","modified_at":"2021-07-13T17:57:00.061995Z"}]}' + recorded_at: Tue, 13 Jul 2021 18:36:07 GMT +recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_environments/gets_environments.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_environments/gets_environments.yml new file mode 100644 index 0000000..dd03cea --- /dev/null +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_environments/gets_environments.yml @@ -0,0 +1,58 @@ +--- +http_interactions: +- request: + method: get + uri: https://localhost:8000/api/v1/environments/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 200 + message: OK + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:35:58 GMT + Connection: + - close + Content-Type: + - application/json + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '1516' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=c7nqJzj1MMIZBxhnOecabjo5ERdAA1nBCll7lONEDOwDczHSFHdKOsDBSCyGNUkT; + expires=Tue, 12 Jul 2022 18:35:58 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=qitj3du92jfkp9arub5hykmnad0svpuh; expires=Tue, 27 Jul 2021 18:35:58 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","id":"1c03b5c1-7040-49e4-be35-7594be262c11","name":"default","description":"Default + environment, base for all environments.","parent":null,"created_at":"2021-07-13T17:57:00.029171Z","modified_at":"2021-07-13T17:57:00.029210Z"},{"url":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","id":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","name":"development","description":"Development + deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.048313Z","modified_at":"2021-07-13T17:57:00.048347Z"},{"url":"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/","id":"1eadb281-baa9-4816-8f88-775d0a636f16","name":"production","description":"Production + deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.072603Z","modified_at":"2021-07-13T17:57:00.072636Z"},{"url":"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/","id":"f7f81820-f920-467c-9a37-fc4a6ad518fe","name":"staging","description":"Staging + deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.061960Z","modified_at":"2021-07-13T17:57:00.061995Z"}]}' + recorded_at: Tue, 13 Jul 2021 18:35:58 GMT +recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_environments/memoizes_environments.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_environments/memoizes_environments.yml new file mode 100644 index 0000000..48921f8 --- /dev/null +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_environments/memoizes_environments.yml @@ -0,0 +1,58 @@ +--- +http_interactions: +- request: + method: get + uri: https://localhost:8000/api/v1/environments/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 200 + message: OK + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:00 GMT + Connection: + - close + Content-Type: + - application/json + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '1516' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=fMirZbD3BUTboPeOmLn4TWevS1O4RsjWQXpe3thDzwR2twxYgA384YToc6sPcDZr; + expires=Tue, 12 Jul 2022 18:36:00 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=q3hqnzk39w9zmci8ry5ir9y86n4asc9r; expires=Tue, 27 Jul 2021 18:36:00 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","id":"1c03b5c1-7040-49e4-be35-7594be262c11","name":"default","description":"Default + environment, base for all environments.","parent":null,"created_at":"2021-07-13T17:57:00.029171Z","modified_at":"2021-07-13T17:57:00.029210Z"},{"url":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","id":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","name":"development","description":"Development + deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.048313Z","modified_at":"2021-07-13T17:57:00.048347Z"},{"url":"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/","id":"1eadb281-baa9-4816-8f88-775d0a636f16","name":"production","description":"Production + deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.072603Z","modified_at":"2021-07-13T17:57:00.072636Z"},{"url":"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/","id":"f7f81820-f920-467c-9a37-fc4a6ad518fe","name":"staging","description":"Staging + deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.061960Z","modified_at":"2021-07-13T17:57:00.061995Z"}]}' + recorded_at: Tue, 13 Jul 2021 18:36:00 GMT +recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/doesn_t_expose_secret_in_debug_log.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/doesn_t_expose_secret_in_debug_log.yml new file mode 100644 index 0000000..888eeeb --- /dev/null +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/doesn_t_expose_secret_in_debug_log.yml @@ -0,0 +1,577 @@ +--- +http_interactions: +- request: + method: get + uri: https://localhost:8000/api/v1/projects/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 200 + message: OK + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:30 GMT + Connection: + - close + Content-Type: + - application/json + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '610' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=q3i066o40THYivHKJ2oxI3SBFOnieNIjeSJ93nlvka8LKHwxvVyR6wEmggTiecVC; + expires=Tue, 12 Jul 2022 18:36:30 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=9emjp5xn1z2jswovr32xmie3lt3fy60i; expires=Tue, 27 Jul 2021 18:36:30 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/d8a29c6e-63fa-4c83-96df-01fa74a38a1b/","id":"d8a29c6e-63fa-4c83-96df-01fa74a38a1b","name":"TestProject","description":"","created_at":"2021-07-13T18:36:20.700480Z","modified_at":"2021-07-13T18:36:20.700511Z"}]}' + recorded_at: Tue, 13 Jul 2021 18:36:30 GMT +- request: + method: delete + uri: https://localhost:8000/api/v1/projects/d8a29c6e-63fa-4c83-96df-01fa74a38a1b/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 204 + message: No Content + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:32 GMT + Connection: + - close + Vary: + - Accept, Cookie, Origin + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '0' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=pY62Tz0icaKUDvGi0OtgCXy1mUYyTe6ufzEMwjOrgDdgJ6Z6zecTzzelyNhDyi1g; + expires=Tue, 12 Jul 2022 18:36:32 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=qqbylz63lejs48i41yr9cjke3q0pwv2x; expires=Tue, 27 Jul 2021 18:36:32 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '' + recorded_at: Tue, 13 Jul 2021 18:36:32 GMT +- request: + method: post + uri: https://localhost:8000/api/v1/projects/ + body: + encoding: UTF-8 + string: '{"name":"TestProject"}' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 201 + message: Created + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:33 GMT + Connection: + - close + Content-Type: + - application/json + Location: + - https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/ + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '255' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=1qV0MaSgAKyVtmVfiEc4j6UWJQ3x1NqvI2vPu6tqG0RZixCREEObNCdtvtZ9G3Do; + expires=Tue, 12 Jul 2022 18:36:33 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=8yivejvs6wesyl6jyxip7nzwn24hutvm; expires=Tue, 27 Jul 2021 18:36:33 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"url":"https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/","id":"81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e","name":"TestProject","description":"","created_at":"2021-07-13T18:36:33.788226Z","modified_at":"2021-07-13T18:36:33.788264Z"}' + recorded_at: Tue, 13 Jul 2021 18:36:33 GMT +- request: + method: get + uri: https://localhost:8000/api/v1/projects/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 200 + message: OK + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:35 GMT + Connection: + - close + Content-Type: + - application/json + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '610' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=WIijfLHG8G0fjjq0YfKrTyjBjRWX8d462UtWKChJfyyCVVJ4b7xLluovmtQTe1hW; + expires=Tue, 12 Jul 2022 18:36:35 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=tx5pmuls9ip1phllwlsa8dgqb0sft3y4; expires=Tue, 27 Jul 2021 18:36:35 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/","id":"81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e","name":"TestProject","description":"","created_at":"2021-07-13T18:36:33.788226Z","modified_at":"2021-07-13T18:36:33.788264Z"}]}' + recorded_at: Tue, 13 Jul 2021 18:36:35 GMT +- request: + method: post + uri: https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/ + body: + encoding: UTF-8 + string: '{"name":"one"}' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 201 + message: Created + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:36 GMT + Connection: + - close + Content-Type: + - application/json + Location: + - https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/c82ba994-ca4c-40c2-9f51-8c6fda86b4a1/ + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '716' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=BewPjv3Ko12gXJzukw7rS8C6mC2i7g445ugfT7Lmw5PeATLyN9bDJxBNwLEwES0O; + expires=Tue, 12 Jul 2022 18:36:36 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=mchei3x66l06npckq9yx7zbiho1wnfxc; expires=Tue, 27 Jul 2021 18:36:36 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"url":"https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/c82ba994-ca4c-40c2-9f51-8c6fda86b4a1/","id":"c82ba994-ca4c-40c2-9f51-8c6fda86b4a1","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null,"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":null,"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/":null,"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/":null},"created_at":"2021-07-13T18:36:36.404867Z","modified_at":"2021-07-13T18:36:36.404911Z"}' + recorded_at: Tue, 13 Jul 2021 18:36:36 GMT +- request: + method: post + uri: https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/ + body: + encoding: UTF-8 + string: '{"name":"two"}' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 201 + message: Created + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:38 GMT + Connection: + - close + Content-Type: + - application/json + Location: + - https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/02835737-0a5b-42c5-99aa-1173c4bac2ad/ + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '716' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=WqTf6dVg28tz0YRQlAahzhMybeuw0B0FEjMBYef0ZfFnVvBtKof1NB25wkbxyh9t; + expires=Tue, 12 Jul 2022 18:36:38 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=gszqu7co8vjjih0v4ygqanuwckjpehqa; expires=Tue, 27 Jul 2021 18:36:38 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"url":"https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/02835737-0a5b-42c5-99aa-1173c4bac2ad/","id":"02835737-0a5b-42c5-99aa-1173c4bac2ad","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null,"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":null,"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/":null,"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/":null},"created_at":"2021-07-13T18:36:38.174242Z","modified_at":"2021-07-13T18:36:38.174282Z"}' + recorded_at: Tue, 13 Jul 2021 18:36:38 GMT +- request: + method: post + uri: https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/ + body: + encoding: UTF-8 + string: '{"name":"three","secret":true}' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 201 + message: Created + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:40 GMT + Connection: + - close + Content-Type: + - application/json + Location: + - https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/63d2c307-4df0-4914-8c76-bfb557b199f7/ + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '717' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=pXKYrku39pWQ5BVDbDAIfbGMLZeaR8QajJ2IFIOxie1GH9hz6DVZWn4DPlQCiaaT; + expires=Tue, 12 Jul 2022 18:36:40 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=560di9cd1l6opfha1kugfw4567v5wzr2; expires=Tue, 27 Jul 2021 18:36:40 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"url":"https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/63d2c307-4df0-4914-8c76-bfb557b199f7/","id":"63d2c307-4df0-4914-8c76-bfb557b199f7","name":"three","description":"","secret":true,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null,"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":null,"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/":null,"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/":null},"created_at":"2021-07-13T18:36:40.158493Z","modified_at":"2021-07-13T18:36:40.158532Z"}' + recorded_at: Tue, 13 Jul 2021 18:36:40 GMT +- request: + method: get + uri: https://localhost:8000/api/v1/environments/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 200 + message: OK + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:41 GMT + Connection: + - close + Content-Type: + - application/json + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '1516' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=FYwuKKx6b69FIe0PqhdKhIRNIhjqWvNa3ZWL4CFrL3yhKDvpdwPBmpjbGI2Myqvz; + expires=Tue, 12 Jul 2022 18:36:41 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=2f324tc6c7ieivbz1l5w53qdhdy8xckk; expires=Tue, 27 Jul 2021 18:36:41 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","id":"1c03b5c1-7040-49e4-be35-7594be262c11","name":"default","description":"Default + environment, base for all environments.","parent":null,"created_at":"2021-07-13T17:57:00.029171Z","modified_at":"2021-07-13T17:57:00.029210Z"},{"url":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","id":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","name":"development","description":"Development + deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.048313Z","modified_at":"2021-07-13T17:57:00.048347Z"},{"url":"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/","id":"1eadb281-baa9-4816-8f88-775d0a636f16","name":"production","description":"Production + deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.072603Z","modified_at":"2021-07-13T17:57:00.072636Z"},{"url":"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/","id":"f7f81820-f920-467c-9a37-fc4a6ad518fe","name":"staging","description":"Staging + deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.061960Z","modified_at":"2021-07-13T17:57:00.061995Z"}]}' + recorded_at: Tue, 13 Jul 2021 18:36:41 GMT +- request: + method: post + uri: https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/63d2c307-4df0-4914-8c76-bfb557b199f7/values/ + body: + encoding: UTF-8 + string: '{"environment":"1c03b5c1-7040-49e4-be35-7594be262c11","dynamic":false,"static_value":"defaultthree"}' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 201 + message: Created + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:44 GMT + Connection: + - close + Content-Type: + - application/json + Location: + - https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/63d2c307-4df0-4914-8c76-bfb557b199f7/values/029fa2db-5722-44d9-80c9-bc6dd4217e5b/ + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '641' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=WEdBYZ9llHYzkIFElYI6OuAxqpyafFvces07JgrLldE48vEpON9otmlJd01wNoR4; + expires=Tue, 12 Jul 2022 18:36:44 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=pzbltktvq4qxf3p33egbhnx3z35ky0fo; expires=Tue, 27 Jul 2021 18:36:44 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"url":"https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/63d2c307-4df0-4914-8c76-bfb557b199f7/values/029fa2db-5722-44d9-80c9-bc6dd4217e5b/","id":"029fa2db-5722-44d9-80c9-bc6dd4217e5b","environment":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","parameter":"https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/63d2c307-4df0-4914-8c76-bfb557b199f7/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":null,"value":"defaultthree","created_at":"2021-07-13T18:36:43.156101Z","modified_at":"2021-07-13T18:36:43.156159Z"}' + recorded_at: Tue, 13 Jul 2021 18:36:44 GMT +- request: + method: get + uri: https://localhost:8000/api/v1/projects/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 200 + message: OK + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:46 GMT + Connection: + - close + Content-Type: + - application/json + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '610' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=MdtG2UPQvKnFWuqwBVkA4tQB6dEsqjXGHvE5lpKof1q4kMrU9IHAkhAbDNHWN78Y; + expires=Tue, 12 Jul 2022 18:36:46 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=2abkpmtbgc0qtiwn3quchf4jmlhmizbj; expires=Tue, 27 Jul 2021 18:36:46 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/","id":"81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e","name":"TestProject","description":"","created_at":"2021-07-13T18:36:33.788226Z","modified_at":"2021-07-13T18:36:33.788264Z"}]}' + recorded_at: Tue, 13 Jul 2021 18:36:46 GMT +- request: + method: get + uri: https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/?environment=1c03b5c1-7040-49e4-be35-7594be262c11 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 200 + message: OK + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:47 GMT + Connection: + - close + Content-Type: + - application/json + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '2048' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=YUHgp4ZB7bkDG3TVc0LPgsEsLghdbpsFBrcAelow8OudAd4ieyrEuWtz25ewj2rq; + expires=Tue, 12 Jul 2022 18:36:47 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=ekyybdd8fkcoz35vighieu3f3nxp6jua; expires=Tue, 27 Jul 2021 18:36:47 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"count":3,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/c82ba994-ca4c-40c2-9f51-8c6fda86b4a1/","id":"c82ba994-ca4c-40c2-9f51-8c6fda86b4a1","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null},"created_at":"2021-07-13T18:36:36.404867Z","modified_at":"2021-07-13T18:36:36.404911Z"},{"url":"https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/63d2c307-4df0-4914-8c76-bfb557b199f7/","id":"63d2c307-4df0-4914-8c76-bfb557b199f7","name":"three","description":"","secret":true,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":{"url":"https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/63d2c307-4df0-4914-8c76-bfb557b199f7/values/029fa2db-5722-44d9-80c9-bc6dd4217e5b/","id":"029fa2db-5722-44d9-80c9-bc6dd4217e5b","environment":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","parameter":"https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/63d2c307-4df0-4914-8c76-bfb557b199f7/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":null,"value":"defaultthree","created_at":"2021-07-13T18:36:43.156101Z","modified_at":"2021-07-13T18:36:43.156159Z"}},"created_at":"2021-07-13T18:36:40.158493Z","modified_at":"2021-07-13T18:36:40.158532Z"},{"url":"https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/02835737-0a5b-42c5-99aa-1173c4bac2ad/","id":"02835737-0a5b-42c5-99aa-1173c4bac2ad","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null},"created_at":"2021-07-13T18:36:38.174242Z","modified_at":"2021-07-13T18:36:38.174282Z"}]}' + recorded_at: Tue, 13 Jul 2021 18:36:47 GMT +recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/gets_parameters.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/gets_parameters.yml new file mode 100644 index 0000000..833295f --- /dev/null +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/gets_parameters.yml @@ -0,0 +1,471 @@ +--- +http_interactions: +- request: + method: get + uri: https://localhost:8000/api/v1/projects/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 200 + message: OK + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:17 GMT + Connection: + - close + Content-Type: + - application/json + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '610' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=gUylkEGEEcWPMJJWIBNLBQMfIyHKIbvZGbLkfXmVjEKiruBo9Gxwqz2LpkOulScB; + expires=Tue, 12 Jul 2022 18:36:17 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=4nylgwpoao3go5733up7h4ctmf4d6uz5; expires=Tue, 27 Jul 2021 18:36:17 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/ac8ab123-6bd9-4d2c-8cf8-d58a8dcb7ac7/","id":"ac8ab123-6bd9-4d2c-8cf8-d58a8dcb7ac7","name":"TestProject","description":"","created_at":"2021-07-13T18:30:21.976094Z","modified_at":"2021-07-13T18:30:21.976134Z"}]}' + recorded_at: Tue, 13 Jul 2021 18:36:17 GMT +- request: + method: delete + uri: https://localhost:8000/api/v1/projects/ac8ab123-6bd9-4d2c-8cf8-d58a8dcb7ac7/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 204 + message: No Content + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:19 GMT + Connection: + - close + Vary: + - Accept, Cookie, Origin + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '0' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=2wViOW9Ak4voN5BMeJpeKZiYoH3W2cGJx8ubfOjLod5tElAN2sw0Dv30lNMplifF; + expires=Tue, 12 Jul 2022 18:36:19 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=glcqog9s9bcth1h79efemvbrdqxw9uwi; expires=Tue, 27 Jul 2021 18:36:19 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '' + recorded_at: Tue, 13 Jul 2021 18:36:19 GMT +- request: + method: post + uri: https://localhost:8000/api/v1/projects/ + body: + encoding: UTF-8 + string: '{"name":"TestProject"}' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 201 + message: Created + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:20 GMT + Connection: + - close + Content-Type: + - application/json + Location: + - https://localhost:8000/api/v1/projects/d8a29c6e-63fa-4c83-96df-01fa74a38a1b/ + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '255' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=V6DZ65gvg10Opi3H0bnwRi46AwJziSX9Ec9rnqxzlIq3HAz63peN7wR6RdKU6zH8; + expires=Tue, 12 Jul 2022 18:36:20 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=qw829cj9opkvgowgorolpowhfvpcwb9c; expires=Tue, 27 Jul 2021 18:36:20 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"url":"https://localhost:8000/api/v1/projects/d8a29c6e-63fa-4c83-96df-01fa74a38a1b/","id":"d8a29c6e-63fa-4c83-96df-01fa74a38a1b","name":"TestProject","description":"","created_at":"2021-07-13T18:36:20.700480Z","modified_at":"2021-07-13T18:36:20.700511Z"}' + recorded_at: Tue, 13 Jul 2021 18:36:20 GMT +- request: + method: get + uri: https://localhost:8000/api/v1/projects/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 200 + message: OK + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:22 GMT + Connection: + - close + Content-Type: + - application/json + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '610' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=JW1KVHuh7MM2ySyqJSgGWFLxDDY26MJ2JOf77k7zOaTPvV9JC2NzQmr6lkCVeJHF; + expires=Tue, 12 Jul 2022 18:36:22 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=yqc28pcpi1zt9lxiqgi422ak9dcv1wps; expires=Tue, 27 Jul 2021 18:36:22 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/d8a29c6e-63fa-4c83-96df-01fa74a38a1b/","id":"d8a29c6e-63fa-4c83-96df-01fa74a38a1b","name":"TestProject","description":"","created_at":"2021-07-13T18:36:20.700480Z","modified_at":"2021-07-13T18:36:20.700511Z"}]}' + recorded_at: Tue, 13 Jul 2021 18:36:22 GMT +- request: + method: post + uri: https://localhost:8000/api/v1/projects/d8a29c6e-63fa-4c83-96df-01fa74a38a1b/parameters/ + body: + encoding: UTF-8 + string: '{"name":"one"}' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 201 + message: Created + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:23 GMT + Connection: + - close + Content-Type: + - application/json + Location: + - https://localhost:8000/api/v1/projects/d8a29c6e-63fa-4c83-96df-01fa74a38a1b/parameters/9a656f21-bfb1-4755-b993-973ae10c4f6d/ + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '716' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=RI43C95VX8zRupb1btKt2DNnngtLQpd0uouyzihqxjqHw7oyy1LjIPM0LdUuLVWy; + expires=Tue, 12 Jul 2022 18:36:23 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=fxkt2y9xk72dwhhob4lb56xqhy84zsru; expires=Tue, 27 Jul 2021 18:36:23 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"url":"https://localhost:8000/api/v1/projects/d8a29c6e-63fa-4c83-96df-01fa74a38a1b/parameters/9a656f21-bfb1-4755-b993-973ae10c4f6d/","id":"9a656f21-bfb1-4755-b993-973ae10c4f6d","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null,"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":null,"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/":null,"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/":null},"created_at":"2021-07-13T18:36:23.206590Z","modified_at":"2021-07-13T18:36:23.206633Z"}' + recorded_at: Tue, 13 Jul 2021 18:36:23 GMT +- request: + method: post + uri: https://localhost:8000/api/v1/projects/d8a29c6e-63fa-4c83-96df-01fa74a38a1b/parameters/ + body: + encoding: UTF-8 + string: '{"name":"two"}' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 201 + message: Created + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:25 GMT + Connection: + - close + Content-Type: + - application/json + Location: + - https://localhost:8000/api/v1/projects/d8a29c6e-63fa-4c83-96df-01fa74a38a1b/parameters/77a55bcc-ef57-42ae-968e-ef633f967077/ + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '716' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=PrQjiqV2B8b4jdYYGCpyadqEsS4JyfEgMOQ7iVgbcl243FknXKvhSb5JagxV8Pd4; + expires=Tue, 12 Jul 2022 18:36:25 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=0jaut8i6d2uv880s8k2x055ms5ahbaw4; expires=Tue, 27 Jul 2021 18:36:25 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"url":"https://localhost:8000/api/v1/projects/d8a29c6e-63fa-4c83-96df-01fa74a38a1b/parameters/77a55bcc-ef57-42ae-968e-ef633f967077/","id":"77a55bcc-ef57-42ae-968e-ef633f967077","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null,"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":null,"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/":null,"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/":null},"created_at":"2021-07-13T18:36:24.841375Z","modified_at":"2021-07-13T18:36:24.841407Z"}' + recorded_at: Tue, 13 Jul 2021 18:36:25 GMT +- request: + method: get + uri: https://localhost:8000/api/v1/environments/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 200 + message: OK + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:26 GMT + Connection: + - close + Content-Type: + - application/json + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '1516' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=wjaMLBBkzmc62vBVTvXK0X8qhFStskZNdivLT7wMTgmDSESTRAbkHXa02GA6g528; + expires=Tue, 12 Jul 2022 18:36:26 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=q8afia6wts87ctof8qms1iaymmlkk4w5; expires=Tue, 27 Jul 2021 18:36:26 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","id":"1c03b5c1-7040-49e4-be35-7594be262c11","name":"default","description":"Default + environment, base for all environments.","parent":null,"created_at":"2021-07-13T17:57:00.029171Z","modified_at":"2021-07-13T17:57:00.029210Z"},{"url":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","id":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","name":"development","description":"Development + deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.048313Z","modified_at":"2021-07-13T17:57:00.048347Z"},{"url":"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/","id":"1eadb281-baa9-4816-8f88-775d0a636f16","name":"production","description":"Production + deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.072603Z","modified_at":"2021-07-13T17:57:00.072636Z"},{"url":"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/","id":"f7f81820-f920-467c-9a37-fc4a6ad518fe","name":"staging","description":"Staging + deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.061960Z","modified_at":"2021-07-13T17:57:00.061995Z"}]}' + recorded_at: Tue, 13 Jul 2021 18:36:26 GMT +- request: + method: get + uri: https://localhost:8000/api/v1/projects/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 200 + message: OK + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:27 GMT + Connection: + - close + Content-Type: + - application/json + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '610' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=dTrnRP7DOiuMwDAfDAGhXvDmzGprvFKVi03oflBr7o5HZUCVisfb00zr35CnsuW4; + expires=Tue, 12 Jul 2022 18:36:27 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=g6zyvx3uauftkgf608myxu12cnqf9u05; expires=Tue, 27 Jul 2021 18:36:27 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/d8a29c6e-63fa-4c83-96df-01fa74a38a1b/","id":"d8a29c6e-63fa-4c83-96df-01fa74a38a1b","name":"TestProject","description":"","created_at":"2021-07-13T18:36:20.700480Z","modified_at":"2021-07-13T18:36:20.700511Z"}]}' + recorded_at: Tue, 13 Jul 2021 18:36:27 GMT +- request: + method: get + uri: https://localhost:8000/api/v1/projects/d8a29c6e-63fa-4c83-96df-01fa74a38a1b/parameters/?environment=1c03b5c1-7040-49e4-be35-7594be262c11 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 200 + message: OK + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:29 GMT + Connection: + - close + Content-Type: + - application/json + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '957' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=E7fzIWPRRD8QDtxDUK7CW74sgQDipU1SjZIFRDTq91ekaxsop1aMpL0LDqXaxy8X; + expires=Tue, 12 Jul 2022 18:36:29 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=y225b245lba7i18v8vvqw9pn8piuixf5; expires=Tue, 27 Jul 2021 18:36:29 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/d8a29c6e-63fa-4c83-96df-01fa74a38a1b/parameters/9a656f21-bfb1-4755-b993-973ae10c4f6d/","id":"9a656f21-bfb1-4755-b993-973ae10c4f6d","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null},"created_at":"2021-07-13T18:36:23.206590Z","modified_at":"2021-07-13T18:36:23.206633Z"},{"url":"https://localhost:8000/api/v1/projects/d8a29c6e-63fa-4c83-96df-01fa74a38a1b/parameters/77a55bcc-ef57-42ae-968e-ef633f967077/","id":"77a55bcc-ef57-42ae-968e-ef633f967077","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null},"created_at":"2021-07-13T18:36:24.841375Z","modified_at":"2021-07-13T18:36:24.841407Z"}]}' + recorded_at: Tue, 13 Jul 2021 18:36:29 GMT +recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/uses_environment_to_get_values.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/uses_environment_to_get_values.yml new file mode 100644 index 0000000..88fe361 --- /dev/null +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/uses_environment_to_get_values.yml @@ -0,0 +1,786 @@ +--- +http_interactions: +- request: + method: get + uri: https://localhost:8000/api/v1/projects/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 200 + message: OK + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:49 GMT + Connection: + - close + Content-Type: + - application/json + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '610' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=ym6S6J9IggvZLx3tufxZlRKoCn8eqKGZSBniQWCCCz7YWjaOSShC49J91EUDpxeD; + expires=Tue, 12 Jul 2022 18:36:49 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=8wt64lzvzpzjz4xh3tbdq6qitcqzy33z; expires=Tue, 27 Jul 2021 18:36:49 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/","id":"81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e","name":"TestProject","description":"","created_at":"2021-07-13T18:36:33.788226Z","modified_at":"2021-07-13T18:36:33.788264Z"}]}' + recorded_at: Tue, 13 Jul 2021 18:36:49 GMT +- request: + method: delete + uri: https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 204 + message: No Content + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:51 GMT + Connection: + - close + Vary: + - Accept, Cookie, Origin + Allow: + - GET, PUT, PATCH, DELETE, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '0' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=fNHNmsI96JgzF4HCZCsk8wqjARRS3gQnG0Uf1v3yDj8UYctZcqxxi4f36gtuUGH0; + expires=Tue, 12 Jul 2022 18:36:51 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=sxlyerya8gp7mc6qp1ecax4usljji7vl; expires=Tue, 27 Jul 2021 18:36:51 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '' + recorded_at: Tue, 13 Jul 2021 18:36:51 GMT +- request: + method: post + uri: https://localhost:8000/api/v1/projects/ + body: + encoding: UTF-8 + string: '{"name":"TestProject"}' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 201 + message: Created + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:53 GMT + Connection: + - close + Content-Type: + - application/json + Location: + - https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/ + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '255' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=AhQL2tTFl1yZosGibyTZiKmXpN1BpW4seWi6gvp1Lx22Qp7C8q4j9YyEp0xqjxDg; + expires=Tue, 12 Jul 2022 18:36:53 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=v4ifipbywrtu14hbld8mh2lmgue0e9eq; expires=Tue, 27 Jul 2021 18:36:53 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/","id":"09757741-9659-4b43-bcbd-26317dfa2bff","name":"TestProject","description":"","created_at":"2021-07-13T18:36:53.178046Z","modified_at":"2021-07-13T18:36:53.178104Z"}' + recorded_at: Tue, 13 Jul 2021 18:36:53 GMT +- request: + method: get + uri: https://localhost:8000/api/v1/projects/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 200 + message: OK + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:54 GMT + Connection: + - close + Content-Type: + - application/json + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '610' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=CfzjDv6N3CIsyS4JLWRaMeV3Szx8evXf8Gq4QUDMJCXabBS43iMZiQCQxiDFMsUB; + expires=Tue, 12 Jul 2022 18:36:54 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=4797ioony5koik47v2xl89uon9rq18xm; expires=Tue, 27 Jul 2021 18:36:54 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/","id":"09757741-9659-4b43-bcbd-26317dfa2bff","name":"TestProject","description":"","created_at":"2021-07-13T18:36:53.178046Z","modified_at":"2021-07-13T18:36:53.178104Z"}]}' + recorded_at: Tue, 13 Jul 2021 18:36:54 GMT +- request: + method: post + uri: https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/ + body: + encoding: UTF-8 + string: '{"name":"one"}' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 201 + message: Created + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:56 GMT + Connection: + - close + Content-Type: + - application/json + Location: + - https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/27d9671b-8592-4be1-9e4c-5fa23ec8146e/ + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '716' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=UXD8LEIAIc3HKfIQIRELRR6uSopeD7wz8ee413O0O0lky8rQg7QYURonA0YI2SzV; + expires=Tue, 12 Jul 2022 18:36:56 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=447rmo20k1mmbscoildprcx2fb1xbzzf; expires=Tue, 27 Jul 2021 18:36:56 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/27d9671b-8592-4be1-9e4c-5fa23ec8146e/","id":"27d9671b-8592-4be1-9e4c-5fa23ec8146e","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null,"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":null,"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/":null,"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/":null},"created_at":"2021-07-13T18:36:56.478449Z","modified_at":"2021-07-13T18:36:56.478488Z"}' + recorded_at: Tue, 13 Jul 2021 18:36:56 GMT +- request: + method: post + uri: https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/ + body: + encoding: UTF-8 + string: '{"name":"two"}' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 201 + message: Created + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:58 GMT + Connection: + - close + Content-Type: + - application/json + Location: + - https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/be0393fd-6872-4627-9dc4-a05511d3113e/ + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '716' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=FxWqlHILe2FSfqecp4yGwVsCcSoqPYuHyf51I4F8tQL4zUvbvbVfzbwVzsxg2bok; + expires=Tue, 12 Jul 2022 18:36:58 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=xxgycpagv2w3h42vu9fgobx5vc1coie7; expires=Tue, 27 Jul 2021 18:36:58 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/be0393fd-6872-4627-9dc4-a05511d3113e/","id":"be0393fd-6872-4627-9dc4-a05511d3113e","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null,"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":null,"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/":null,"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/":null},"created_at":"2021-07-13T18:36:58.139999Z","modified_at":"2021-07-13T18:36:58.140034Z"}' + recorded_at: Tue, 13 Jul 2021 18:36:58 GMT +- request: + method: get + uri: https://localhost:8000/api/v1/environments/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 200 + message: OK + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:59 GMT + Connection: + - close + Content-Type: + - application/json + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '1516' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=K2XaJ2kcIZz8jLqGySbjzatqm38CTNW3C1MCXOfJD1ReKHpoNvsmcoelKWm74DPd; + expires=Tue, 12 Jul 2022 18:36:59 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=ly9iey9olvb23u0npcl01yfypcifmfiz; expires=Tue, 27 Jul 2021 18:36:59 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","id":"1c03b5c1-7040-49e4-be35-7594be262c11","name":"default","description":"Default + environment, base for all environments.","parent":null,"created_at":"2021-07-13T17:57:00.029171Z","modified_at":"2021-07-13T17:57:00.029210Z"},{"url":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","id":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","name":"development","description":"Development + deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.048313Z","modified_at":"2021-07-13T17:57:00.048347Z"},{"url":"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/","id":"1eadb281-baa9-4816-8f88-775d0a636f16","name":"production","description":"Production + deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.072603Z","modified_at":"2021-07-13T17:57:00.072636Z"},{"url":"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/","id":"f7f81820-f920-467c-9a37-fc4a6ad518fe","name":"staging","description":"Staging + deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.061960Z","modified_at":"2021-07-13T17:57:00.061995Z"}]}' + recorded_at: Tue, 13 Jul 2021 18:36:59 GMT +- request: + method: post + uri: https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/27d9671b-8592-4be1-9e4c-5fa23ec8146e/values/ + body: + encoding: UTF-8 + string: '{"environment":"1c03b5c1-7040-49e4-be35-7594be262c11","dynamic":false,"static_value":"defaultone"}' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 201 + message: Created + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:37:00 GMT + Connection: + - close + Content-Type: + - application/json + Location: + - https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/27d9671b-8592-4be1-9e4c-5fa23ec8146e/values/3fcb51dd-c660-4750-a3a4-f104ea33d2f8/ + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '647' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=EnH75PmxS6IaSqlwCSjpjs4cM0NJSZeRJdjypl2ZcDqCmny2WPkYyWSqEzxlpjlX; + expires=Tue, 12 Jul 2022 18:37:00 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=7tindqvw8vky7851hjv9g9na47tyiehp; expires=Tue, 27 Jul 2021 18:37:00 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/27d9671b-8592-4be1-9e4c-5fa23ec8146e/values/3fcb51dd-c660-4750-a3a4-f104ea33d2f8/","id":"3fcb51dd-c660-4750-a3a4-f104ea33d2f8","environment":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","parameter":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/27d9671b-8592-4be1-9e4c-5fa23ec8146e/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"defaultone","value":"defaultone","created_at":"2021-07-13T18:37:00.902797Z","modified_at":"2021-07-13T18:37:00.902831Z"}' + recorded_at: Tue, 13 Jul 2021 18:37:00 GMT +- request: + method: post + uri: https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/27d9671b-8592-4be1-9e4c-5fa23ec8146e/values/ + body: + encoding: UTF-8 + string: '{"environment":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","dynamic":false,"static_value":"developmentone"}' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 201 + message: Created + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:37:02 GMT + Connection: + - close + Content-Type: + - application/json + Location: + - https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/27d9671b-8592-4be1-9e4c-5fa23ec8146e/values/3b7c8e3b-af09-4e10-a31c-fce43955ebbe/ + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '655' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=uyPzeCdhXN9WZdI4Pa8ccCVG4QGNEAWV2gXMu3DLK1IKzdyBEyAERlbdxWEVhHBz; + expires=Tue, 12 Jul 2022 18:37:02 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=27gsuuri8c5frkz7rc05g4s3id0zscqw; expires=Tue, 27 Jul 2021 18:37:02 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/27d9671b-8592-4be1-9e4c-5fa23ec8146e/values/3b7c8e3b-af09-4e10-a31c-fce43955ebbe/","id":"3b7c8e3b-af09-4e10-a31c-fce43955ebbe","environment":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","parameter":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/27d9671b-8592-4be1-9e4c-5fa23ec8146e/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"developmentone","value":"developmentone","created_at":"2021-07-13T18:37:02.678854Z","modified_at":"2021-07-13T18:37:02.678897Z"}' + recorded_at: Tue, 13 Jul 2021 18:37:02 GMT +- request: + method: post + uri: https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/be0393fd-6872-4627-9dc4-a05511d3113e/values/ + body: + encoding: UTF-8 + string: '{"environment":"1c03b5c1-7040-49e4-be35-7594be262c11","dynamic":false,"static_value":"defaulttwo"}' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 201 + message: Created + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:37:04 GMT + Connection: + - close + Content-Type: + - application/json + Location: + - https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/be0393fd-6872-4627-9dc4-a05511d3113e/values/31d8b68c-5d5d-4306-9e38-533ad6a5d3ba/ + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '647' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=3wGs7qUd40he61s1LqzzmESkKygA10XgueAMetxrLto94uEZG4tH7v8dydfDXzDT; + expires=Tue, 12 Jul 2022 18:37:04 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=8nur40134hk5vxs1bvzpj8nnpmi6yft7; expires=Tue, 27 Jul 2021 18:37:04 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/be0393fd-6872-4627-9dc4-a05511d3113e/values/31d8b68c-5d5d-4306-9e38-533ad6a5d3ba/","id":"31d8b68c-5d5d-4306-9e38-533ad6a5d3ba","environment":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","parameter":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/be0393fd-6872-4627-9dc4-a05511d3113e/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"defaulttwo","value":"defaulttwo","created_at":"2021-07-13T18:37:04.932523Z","modified_at":"2021-07-13T18:37:04.932547Z"}' + recorded_at: Tue, 13 Jul 2021 18:37:04 GMT +- request: + method: post + uri: https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/be0393fd-6872-4627-9dc4-a05511d3113e/values/ + body: + encoding: UTF-8 + string: '{"environment":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","dynamic":false,"static_value":"developmenttwo"}' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 201 + message: Created + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:37:06 GMT + Connection: + - close + Content-Type: + - application/json + Location: + - https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/be0393fd-6872-4627-9dc4-a05511d3113e/values/45bf2352-f61a-4cda-a354-9409e0172516/ + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '655' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=KQxZjOqNkW5JsfGyqEswUnGyZ2jzKJKN9ESn2leSkpTW05xBn0UyO1Q3wZRao5l8; + expires=Tue, 12 Jul 2022 18:37:06 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=7lmfbfabth55gr801xbmxfoq84pnko4a; expires=Tue, 27 Jul 2021 18:37:06 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/be0393fd-6872-4627-9dc4-a05511d3113e/values/45bf2352-f61a-4cda-a354-9409e0172516/","id":"45bf2352-f61a-4cda-a354-9409e0172516","environment":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","parameter":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/be0393fd-6872-4627-9dc4-a05511d3113e/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"developmenttwo","value":"developmenttwo","created_at":"2021-07-13T18:37:06.475329Z","modified_at":"2021-07-13T18:37:06.475367Z"}' + recorded_at: Tue, 13 Jul 2021 18:37:06 GMT +- request: + method: get + uri: https://localhost:8000/api/v1/projects/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 200 + message: OK + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:37:07 GMT + Connection: + - close + Content-Type: + - application/json + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '610' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=eEgXuMxUjKdJRANaPENGhPE79zqprUTmd5Ribvfo51d8UGmWXYGXKJs2WEmjW8WC; + expires=Tue, 12 Jul 2022 18:37:07 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=nm848xk9fqvw56fihdowd2m6f2usvork; expires=Tue, 27 Jul 2021 18:37:07 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/","id":"09757741-9659-4b43-bcbd-26317dfa2bff","name":"TestProject","description":"","created_at":"2021-07-13T18:36:53.178046Z","modified_at":"2021-07-13T18:36:53.178104Z"}]}' + recorded_at: Tue, 13 Jul 2021 18:37:07 GMT +- request: + method: get + uri: https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/?environment=1c03b5c1-7040-49e4-be35-7594be262c11 + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 200 + message: OK + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:37:09 GMT + Connection: + - close + Content-Type: + - application/json + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '2243' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=7PRtSstnzMhHwfoJvQdNfWmuKZTSDlRYiJ3uCOibOKHXlUq5uBuO831ebaQ181Xz; + expires=Tue, 12 Jul 2022 18:37:09 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=989h9dmuzevbbfwu7j79yvxjhv8j0k50; expires=Tue, 27 Jul 2021 18:37:09 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/27d9671b-8592-4be1-9e4c-5fa23ec8146e/","id":"27d9671b-8592-4be1-9e4c-5fa23ec8146e","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/27d9671b-8592-4be1-9e4c-5fa23ec8146e/values/3fcb51dd-c660-4750-a3a4-f104ea33d2f8/","id":"3fcb51dd-c660-4750-a3a4-f104ea33d2f8","environment":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","parameter":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/27d9671b-8592-4be1-9e4c-5fa23ec8146e/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"defaultone","value":"defaultone","created_at":"2021-07-13T18:37:00.902797Z","modified_at":"2021-07-13T18:37:00.902831Z"}},"created_at":"2021-07-13T18:36:56.478449Z","modified_at":"2021-07-13T18:36:56.478488Z"},{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/be0393fd-6872-4627-9dc4-a05511d3113e/","id":"be0393fd-6872-4627-9dc4-a05511d3113e","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/be0393fd-6872-4627-9dc4-a05511d3113e/values/31d8b68c-5d5d-4306-9e38-533ad6a5d3ba/","id":"31d8b68c-5d5d-4306-9e38-533ad6a5d3ba","environment":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","parameter":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/be0393fd-6872-4627-9dc4-a05511d3113e/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"defaulttwo","value":"defaulttwo","created_at":"2021-07-13T18:37:04.932523Z","modified_at":"2021-07-13T18:37:04.932547Z"}},"created_at":"2021-07-13T18:36:58.139999Z","modified_at":"2021-07-13T18:36:58.140034Z"}]}' + recorded_at: Tue, 13 Jul 2021 18:37:09 GMT +- request: + method: get + uri: https://localhost:8000/api/v1/projects/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 200 + message: OK + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:37:10 GMT + Connection: + - close + Content-Type: + - application/json + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '610' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=VK8YozmzHi53jfHx2PO5TXJwy75BGcECQ4WkTZxZaYABlxXYcKP5hY0yjJrQ6R7W; + expires=Tue, 12 Jul 2022 18:37:10 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=heyamnhleiatfjabsvzh7qt09gzyxpmn; expires=Tue, 27 Jul 2021 18:37:10 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/","id":"09757741-9659-4b43-bcbd-26317dfa2bff","name":"TestProject","description":"","created_at":"2021-07-13T18:36:53.178046Z","modified_at":"2021-07-13T18:36:53.178104Z"}]}' + recorded_at: Tue, 13 Jul 2021 18:37:10 GMT +- request: + method: get + uri: https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/?environment=30b123cd-288c-4fd8-b5cc-607086c8cb4f + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 200 + message: OK + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:37:12 GMT + Connection: + - close + Content-Type: + - application/json + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '2259' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=qHt3LqMMe1qKUbvIEUjjbVDOXkV9wrOpmfDuxWxWvpAciKjpyrmFVWAN8clhPe3l; + expires=Tue, 12 Jul 2022 18:37:12 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=ptzo5d6pj9aj3ti8sjhe0xfvva9ostqb; expires=Tue, 27 Jul 2021 18:37:12 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/27d9671b-8592-4be1-9e4c-5fa23ec8146e/","id":"27d9671b-8592-4be1-9e4c-5fa23ec8146e","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/27d9671b-8592-4be1-9e4c-5fa23ec8146e/values/3b7c8e3b-af09-4e10-a31c-fce43955ebbe/","id":"3b7c8e3b-af09-4e10-a31c-fce43955ebbe","environment":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","parameter":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/27d9671b-8592-4be1-9e4c-5fa23ec8146e/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"developmentone","value":"developmentone","created_at":"2021-07-13T18:37:02.678854Z","modified_at":"2021-07-13T18:37:02.678897Z"}},"created_at":"2021-07-13T18:36:56.478449Z","modified_at":"2021-07-13T18:36:56.478488Z"},{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/be0393fd-6872-4627-9dc4-a05511d3113e/","id":"be0393fd-6872-4627-9dc4-a05511d3113e","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/be0393fd-6872-4627-9dc4-a05511d3113e/values/45bf2352-f61a-4cda-a354-9409e0172516/","id":"45bf2352-f61a-4cda-a354-9409e0172516","environment":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","parameter":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/be0393fd-6872-4627-9dc4-a05511d3113e/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"developmenttwo","value":"developmenttwo","created_at":"2021-07-13T18:37:06.475329Z","modified_at":"2021-07-13T18:37:06.475367Z"}},"created_at":"2021-07-13T18:36:58.139999Z","modified_at":"2021-07-13T18:36:58.140034Z"}]}' + recorded_at: Tue, 13 Jul 2021 18:37:12 GMT +recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_projects/doesn_t_memoize_projects_.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_projects/doesn_t_memoize_projects_.yml new file mode 100644 index 0000000..57fdfd8 --- /dev/null +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_projects/doesn_t_memoize_projects_.yml @@ -0,0 +1,211 @@ +--- +http_interactions: +- request: + method: get + uri: https://localhost:8000/api/v1/projects/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 200 + message: OK + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:11 GMT + Connection: + - close + Content-Type: + - application/json + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '610' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=get1BpyAQEKfyhtUMV08KVA3224oPGPMOk7v2XM9y5UcX9XY4rgMdIx9xj53M7gI; + expires=Tue, 12 Jul 2022 18:36:11 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=pnjdegfsvusbdd91bple89skz2xa4hmn; expires=Tue, 27 Jul 2021 18:36:11 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/ac8ab123-6bd9-4d2c-8cf8-d58a8dcb7ac7/","id":"ac8ab123-6bd9-4d2c-8cf8-d58a8dcb7ac7","name":"TestProject","description":"","created_at":"2021-07-13T18:30:21.976094Z","modified_at":"2021-07-13T18:30:21.976134Z"}]}' + recorded_at: Tue, 13 Jul 2021 18:36:11 GMT +- request: + method: get + uri: https://localhost:8000/api/v1/projects/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 200 + message: OK + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:13 GMT + Connection: + - close + Content-Type: + - application/json + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '610' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=wAB1IEmnkH0lACC31ydoSz7zhNL7mjaqtCyjeSy386pCKVJuTGN6ztWOaTsl1VGb; + expires=Tue, 12 Jul 2022 18:36:13 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=k4nzky3lzz3awk09fn18xeezzcxvm2l9; expires=Tue, 27 Jul 2021 18:36:13 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/ac8ab123-6bd9-4d2c-8cf8-d58a8dcb7ac7/","id":"ac8ab123-6bd9-4d2c-8cf8-d58a8dcb7ac7","name":"TestProject","description":"","created_at":"2021-07-13T18:30:21.976094Z","modified_at":"2021-07-13T18:30:21.976134Z"}]}' + recorded_at: Tue, 13 Jul 2021 18:36:13 GMT +- request: + method: get + uri: https://localhost:8000/api/v1/projects/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 200 + message: OK + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:14 GMT + Connection: + - close + Content-Type: + - application/json + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '610' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=SFVgaj1mMguvoNsnDxmKZpcPUu7vBOtaiRCAgKuHYDzvmdSzSUEMhzpgZhwIkoqY; + expires=Tue, 12 Jul 2022 18:36:14 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=fw3ew5fuajxxrf7xbz7trlzrrasekcpf; expires=Tue, 27 Jul 2021 18:36:14 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/ac8ab123-6bd9-4d2c-8cf8-d58a8dcb7ac7/","id":"ac8ab123-6bd9-4d2c-8cf8-d58a8dcb7ac7","name":"TestProject","description":"","created_at":"2021-07-13T18:30:21.976094Z","modified_at":"2021-07-13T18:30:21.976134Z"}]}' + recorded_at: Tue, 13 Jul 2021 18:36:14 GMT +- request: + method: get + uri: https://localhost:8000/api/v1/projects/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 200 + message: OK + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:16 GMT + Connection: + - close + Content-Type: + - application/json + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '610' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=AsiF1I5BT36u4Bf6u9AtFds6ChzXpI51sQOdRR1CQW5ZYvnFyeD2McBKRSJisoui; + expires=Tue, 12 Jul 2022 18:36:16 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=ajwbc6d9sgxu8omzr7bo4gmhrs1j101z; expires=Tue, 27 Jul 2021 18:36:16 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/ac8ab123-6bd9-4d2c-8cf8-d58a8dcb7ac7/","id":"ac8ab123-6bd9-4d2c-8cf8-d58a8dcb7ac7","name":"TestProject","description":"","created_at":"2021-07-13T18:30:21.976094Z","modified_at":"2021-07-13T18:30:21.976134Z"}]}' + recorded_at: Tue, 13 Jul 2021 18:36:16 GMT +recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_projects/gets_projects.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_projects/gets_projects.yml new file mode 100644 index 0000000..1261704 --- /dev/null +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_projects/gets_projects.yml @@ -0,0 +1,107 @@ +--- +http_interactions: +- request: + method: get + uri: https://localhost:8000/api/v1/projects/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 200 + message: OK + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:08 GMT + Connection: + - close + Content-Type: + - application/json + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '610' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=3esoqg7LQZs1pfa9HZRCUePMVEvr5ldZr8pEhfL0fBfcFFTkkU0jlHj5TVP07FlO; + expires=Tue, 12 Jul 2022 18:36:08 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=l42mx2pnwe590b79w30adrb3iqnsclac; expires=Tue, 27 Jul 2021 18:36:08 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/ac8ab123-6bd9-4d2c-8cf8-d58a8dcb7ac7/","id":"ac8ab123-6bd9-4d2c-8cf8-d58a8dcb7ac7","name":"TestProject","description":"","created_at":"2021-07-13T18:30:21.976094Z","modified_at":"2021-07-13T18:30:21.976134Z"}]}' + recorded_at: Tue, 13 Jul 2021 18:36:08 GMT +- request: + method: get + uri: https://localhost:8000/api/v1/projects/ + body: + encoding: US-ASCII + string: '' + headers: + User-Agent: + - kubetruth/0.6.0 + Content-Type: + - application/json + Accept: + - application/json + Authorization: + - Api-Key + Expect: + - '' + response: + status: + code: 200 + message: OK + headers: + Server: + - gunicorn + Date: + - Tue, 13 Jul 2021 18:36:10 GMT + Connection: + - close + Content-Type: + - application/json + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '610' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=AtpnemY6V3bi1P7qqkzcMre9a6ZM3GoMFsPiqnblKeXM5x6gexRA2wox5WBhUqKh; + expires=Tue, 12 Jul 2022 18:36:10 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=ikx2krk7jg373mr3dht692by84i5ul7w; expires=Tue, 27 Jul 2021 18:36:10 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: ASCII-8BIT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/ac8ab123-6bd9-4d2c-8cf8-d58a8dcb7ac7/","id":"ac8ab123-6bd9-4d2c-8cf8-d58a8dcb7ac7","name":"TestProject","description":"","created_at":"2021-07-13T18:30:21.976094Z","modified_at":"2021-07-13T18:30:21.976134Z"}]}' + recorded_at: Tue, 13 Jul 2021 18:36:10 GMT +recorded_with: VCR 6.0.0 diff --git a/spec/kubetruth/cli_spec.rb b/spec/kubetruth/cli_spec.rb index 7f26d48..e273f78 100644 --- a/spec/kubetruth/cli_spec.rb +++ b/spec/kubetruth/cli_spec.rb @@ -21,6 +21,7 @@ module Kubetruth it "passes args to etl" do args = %w[ --api-key abc123 + --api-url cu --kube-namespace kn --kube-token kt --kube-url ku @@ -28,17 +29,19 @@ module Kubetruth --polling-interval 27 ] - expect(Kubetruth).to receive(:ctapi_setup).with({ - api_key: "abc123" - }) + expect(Kubetruth::CtApi).to receive(:configure).with({ + api_key: "abc123", + api_url: "cu" + }) + + expect(Kubetruth::KubeApi).to receive(:configure).with({ + namespace: "kn", + token: "kt", + api_url: "ku" + }) etl = double(ETL) - expect(ETL).to receive(:new).with(kube_context: { - namespace: "kn", - token: "kt", - api_url: "ku" - }, - dry_run: true).and_return(etl) + expect(ETL).to receive(:new).with(dry_run: true).and_return(etl) expect(etl).to receive(:apply) expect(etl).to receive(:with_polling).with(27).and_yield cli.run(args) @@ -51,8 +54,10 @@ module Kubetruth Kubetruth::Logging.testing = false Kubetruth::Logging.setup_logging(level: :debug, color: false) - allow(Kubetruth).to receive(:ctapi_setup) - etl = ETL.new(kube_context: {namespace: 'ns', token: 'xyz'}, dry_run: true) + allow(Kubetruth::CtApi).to receive(:instance).and_return(double(Kubetruth::CtApi)) + allow(Kubetruth::KubeApi).to receive(:instance).and_return(double(Kubetruth::KubeApi)) + + etl = ETL.new(dry_run: true) allow(ETL).to receive(:new).and_return(etl) watcher = double("watcher") @@ -66,7 +71,7 @@ module Kubetruth count += 1 exit if count > 1 end - cli.run(%w[--api-key xyz --polling-interval 1]) + cli.run(%w[--api-key xyz --kube-namespace ns1 --kube-token xyz --polling-interval 1]) end sleep 0.5 Process.kill("HUP", pid) diff --git a/spec/kubetruth/ctapi_spec.rb b/spec/kubetruth/ctapi_spec.rb index 799b356..fd29d8f 100644 --- a/spec/kubetruth/ctapi_spec.rb +++ b/spec/kubetruth/ctapi_spec.rb @@ -3,29 +3,31 @@ module Kubetruth - describe "CtApi", :vcr do - - before(:each) do |ex| - # Do this so that tests perform the same http requests whether they get - # run individually or as part of the entire file - ::Kubetruth.send(:remove_const, :CtApi) if defined? ::Kubetruth::CtApi - end - - let(:ctapi) { ::Kubetruth::ctapi_setup(api_key: ENV['CLOUDTRUTH_API_KEY']) } - - describe "class definition", :vcr do - - it "defines class" do - expect(::Kubetruth.const_defined?(:CtApi)).to be_falsey - clazz = ctapi - expect(::Kubetruth.const_defined?(:CtApi)).to be_truthy - expect(::Kubetruth::CtApi).to be_a(Class) - expect(clazz).to eq(::Kubetruth::CtApi) + describe CtApi, :vcr do + + let(:ctapi) { + # Spin up a local dev server and create a user with an api key to use + # here, or use cloudtruth actual + key = 'QINuBCMG.5p9I9xZgyirtlYHZ5E3G3j0tCZW34EE6' || ENV['CLOUDTRUTH_API_KEY'] + url = ENV['CLOUDTRUTH_API_URL'] || "https://localhost:8000" + instance = ::Kubetruth::CtApi.new(api_key: key, api_url: url) + instance.client.config.debugging = false # ssl debug logging is messy, so only turn this on as desired + instance.client.config.verify_ssl = false + instance + } + + describe "instance" do + + it "fails if not configured" do + expect { described_class.instance }.to raise_error(ArgumentError, /has not been configured/) + end - instance = ::Kubetruth::CtApi.new - expect(instance).to be_an_instance_of(::Kubetruth::CtApi) - instance.logger.debug "Hello" - expect(Logging.contents).to match(/DEBUG\s*CtApi Hello/) + it "succeeds when configured" do + described_class.configure(api_key: "sekret", api_url: "http://localhost") + expect(described_class.instance).to be_an_instance_of(described_class) + expect(described_class.instance).to equal(described_class.instance) + expect(described_class.instance.instance_variable_get(:@api_key)).to eq("sekret") + expect(described_class.instance.instance_variable_get(:@api_url)).to eq("http://localhost") end end @@ -33,14 +35,13 @@ module Kubetruth describe "#environments" do it "gets environments" do - api = ctapi.new - expect(api.environments).to match hash_including("default") - expect(api.environment_names).to match array_including("default") + expect(ctapi.environments).to match hash_including("default") + expect(ctapi.environment_names).to match array_including("default") end it "memoizes environments" do - api = ctapi.new - expect(api.environments).to equal(api.environments) + expect(ctapi.environments).to equal(ctapi.environments) + expect(ctapi.environment_names).to eq(ctapi.environment_names) # Hash#keys creates new object end end @@ -48,21 +49,18 @@ module Kubetruth describe "#environment_id" do it "gets id" do - api = ctapi.new - expect(api.environments).to match hash_including("default") - expect(api.environment_id("default")).to be_present + expect(ctapi.environments).to match hash_including("default") + expect(ctapi.environment_id("default")).to be_present expect(Logging.contents).to_not match(/Unknown environment, retrying/) end it "raises if environment doesn't exist" do - api = ctapi.new - expect { api.environment_id("badenv") }.to raise_error(Kubetruth::Error, /Unknown environment/) + expect { ctapi.environment_id("badenv") }.to raise_error(Kubetruth::Error, /Unknown environment/) end it "retries if environment doesn't exist" do - api = ctapi.new - expect(api).to receive(:environments).and_call_original.twice - expect { api.environment_id("badenv") }.to raise_error(Kubetruth::Error, /Unknown environment/) + expect(ctapi).to receive(:environments).and_call_original.twice + expect { ctapi.environment_id("badenv") }.to raise_error(Kubetruth::Error, /Unknown environment/) expect(Logging.contents).to match(/Unknown environment, retrying/) end @@ -71,61 +69,60 @@ module Kubetruth describe "#projects" do it "gets projects" do - api = ctapi.new - expect(api.projects).to match hash_including("default") - expect(api.project_names).to match array_including("default") + expect(ctapi.projects).to match hash_including("MyFirstProject") + expect(ctapi.project_names).to match array_including("MyFirstProject") end - it "doesn't cache projects " do - api = ctapi.new - expect(api.projects).to_not equal(api.projects) - expect(api.project_names).to_not equal(api.project_names) + it "doesn't memoize projects " do + expect(ctapi.projects).to_not equal(ctapi.projects) + expect(ctapi.project_names).to_not equal(ctapi.project_names) end end describe "#parameters" do - it "gets parameters without a search" do - api = ctapi.new - expect(api.parameters).to match array_including(Parameter) + before(:each) do + @project_name = "TestProject" + existing = ctapi.apis[:projects].projects_list.results + existing.each do |proj| + if proj.name == @project_name + ctapi.apis[:projects].projects_destroy(proj.id) + end + end + + ctapi.apis[:projects].projects_create(CloudtruthClient::ProjectCreate.new(name: @project_name)) + @project_id = ctapi.projects[@project_name] + @one_param = ctapi.apis[:projects].projects_parameters_create(@project_id, CloudtruthClient::ParameterCreate.new(name: "one")) + @two_param = ctapi.apis[:projects].projects_parameters_create(@project_id, CloudtruthClient::ParameterCreate.new(name: "two")) + end + + it "gets parameters" do + params = ctapi.parameters(project: @project_name) + expect(params).to match array_including(Parameter) + expect(params.collect(&:key)).to eq(["one", "two"]) end it "doesn't expose secret in debug log" do - api = ctapi.new - params = api.parameters + three_param = ctapi.apis[:projects].projects_parameters_create(@project_id, CloudtruthClient::ParameterCreate.new(name: "three", secret: true)) + ctapi.apis[:projects].projects_parameters_values_create(three_param.id, @project_id, CloudtruthClient::ValueCreate.new(environment: ctapi.environment_id("default"), dynamic: false, static_value: "defaultthree")) + params = ctapi.parameters(project: @project_name) secrets = params.find {|p| p.secret } expect(secrets.size).to_not eq(0) expect(Logging.contents).to include("") - end - - it "uses project to get values" do - api = ctapi.new - expect(api.parameters(project: "default")).to match array_including(Parameter) + expect(Logging.contents).to_not include("defaultthree") end it "uses environment to get values" do - api = ctapi.new - dev_id = api.environments["development"] - allow(ctapi.client).to receive(:query).and_call_original - expect(ctapi.client).to receive(:query). - with(ctapi.queries[:ParametersQuery], - variables: hash_including(:environmentId => dev_id)).and_call_original - expect(api.parameters(environment: "development")).to match array_including(Parameter) - end - - it "uses searchTerm to get parameters" do - api = ctapi.new - - all = api.parameters - expect(all.size).to be > 0 - - expect(api.parameters(searchTerm: "nothingtoseehere")).to eq([]) - - some = api.parameters(searchTerm: "aParam") - expect(some.size).to be > 0 - expect(some.size).to be < all.size - some.each {|p| expect(p.key).to include("aParam") } + ctapi.apis[:projects].projects_parameters_values_create(@one_param.id, @project_id, CloudtruthClient::ValueCreate.new(environment: ctapi.environment_id("default"), dynamic: false, static_value: "defaultone")) + ctapi.apis[:projects].projects_parameters_values_create(@one_param.id, @project_id, CloudtruthClient::ValueCreate.new(environment: ctapi.environment_id("development"), dynamic: false, static_value: "developmentone")) + ctapi.apis[:projects].projects_parameters_values_create(@two_param.id, @project_id, CloudtruthClient::ValueCreate.new(environment: ctapi.environment_id("default"), dynamic: false, static_value: "defaulttwo")) + ctapi.apis[:projects].projects_parameters_values_create(@two_param.id, @project_id, CloudtruthClient::ValueCreate.new(environment: ctapi.environment_id("development"), dynamic: false, static_value: "developmenttwo")) + + params = ctapi.parameters(project: @project_name, environment: "default") + expect(params.collect(&:value)).to eq(["defaultone", "defaulttwo"]) + params = ctapi.parameters(project: @project_name, environment: "development") + expect(params.collect(&:value)).to eq(["developmentone", "developmenttwo"]) end end diff --git a/spec/kubetruth/etl_spec.rb b/spec/kubetruth/etl_spec.rb index a189319..32c51f8 100644 --- a/spec/kubetruth/etl_spec.rb +++ b/spec/kubetruth/etl_spec.rb @@ -1,59 +1,34 @@ require 'rspec' require 'kubetruth/etl' require 'kubetruth/project_collection' +require 'kubetruth/parameter' module Kubetruth describe ETL do - let(:init_args) {{ - kube_context: {} - }} - let(:etl) { described_class.new(**init_args) } - - def kubeapi - kapi = double(Kubetruth::KubeApi) - allow(Kubetruth::KubeApi).to receive(:new).and_return(kapi) - allow(kapi).to receive(:get_resource).and_return(Kubeclient::Resource.new) - allow(kapi).to receive(:apply_resource) - allow(kapi).to receive(:under_management?).and_return(true) - allow(kapi).to receive(:set_managed) - allow(kapi).to receive(:ensure_namespace) - allow(kapi).to receive(:namespace).and_return("default") - allow(kapi).to receive(:get_project_mappings).and_return([]) - kapi - end + let(:etl) { described_class.new } before(:each) do - @kubeapi = kubeapi - end - - describe "#kubeapi" do - - it "passes namespace to ctor" do - etl = described_class.new(kube_context: {namespace: "foo"}) - expect(Kubetruth::KubeApi).to receive(:new).with(namespace: "foo") - etl.kubeapi - end - - it "is memoized" do - etl = described_class.new(**init_args) - allow(Kubetruth::KubeApi).to receive(:new) - expect(etl.kubeapi).to equal(etl.kubeapi) - end - + @kubeapi = double(Kubetruth::KubeApi) + allow(@kubeapi).to receive(:get_resource).and_return(Kubeclient::Resource.new) + allow(@kubeapi).to receive(:apply_resource) + allow(@kubeapi).to receive(:under_management?).and_return(true) + allow(@kubeapi).to receive(:set_managed) + allow(@kubeapi).to receive(:ensure_namespace) + allow(@kubeapi).to receive(:namespace).and_return("default") + allow(@kubeapi).to receive(:get_project_mappings).and_return([]) + allow_any_instance_of(described_class).to receive(:kubeapi).and_return(@kubeapi) end describe "#interruptible_sleep" do it "runs for interval without interruption" do - etl = described_class.new(**init_args) t = Time.now.to_f etl.interruptible_sleep(0.2) expect(Time.now.to_f - t).to be >= 0.2 end it "can be interrupted" do - etl = described_class.new(**init_args) Thread.new do sleep 0.1 etl.interrupt_sleep @@ -70,8 +45,6 @@ def kubeapi class ForceExit < Exception; end it "runs with an interval" do - etl = described_class.new(**init_args) - watcher = double() expect(@kubeapi).to receive(:watch_project_mappings).and_return(watcher).twice expect(watcher).to receive(:each).twice @@ -93,8 +66,6 @@ class ForceExit < Exception; end end it "isolates run loop from block failures" do - etl = described_class.new(**init_args) - watcher = double() expect(@kubeapi).to receive(:watch_project_mappings).and_return(watcher).twice expect(watcher).to receive(:each).twice @@ -116,8 +87,6 @@ class ForceExit < Exception; end end it "treats Kubetruth::Error differently in block failures" do - etl = described_class.new(**init_args) - watcher = double() expect(@kubeapi).to receive(:watch_project_mappings).and_return(watcher).twice expect(watcher).to receive(:each).twice @@ -142,8 +111,6 @@ class ForceExit < Exception; end end it "interrupts sleep on watch event" do - etl = described_class.new(**init_args) - watcher = double() notice = double("notice", type: "UPDATED", object: double("kube_resource")) expect(@kubeapi).to receive(:watch_project_mappings).and_return(watcher) @@ -171,7 +138,6 @@ class ForceExit < Exception; end it "raises if no primary" do allow(@kubeapi).to receive(:namespace).and_return("primary-ns") expect(@kubeapi).to receive(:get_project_mappings).and_return({}) - etl = described_class.new(**init_args) expect { etl.load_config }.to raise_error(Kubetruth::Error, /A default set of mappings is required/) end @@ -185,7 +151,6 @@ class ForceExit < Exception; end "override2" => Config::DEFAULT_SPEC.merge(scope: "override", name: "override2") } }) - etl = described_class.new(**init_args) configs = etl.load_config expect(configs.size).to eq(1) expect(configs.first).to be_an_instance_of(Kubetruth::Config) @@ -206,7 +171,6 @@ class ForceExit < Exception; end "override1" => Config::DEFAULT_SPEC.merge(scope: "override", name: "override1") } }) - etl = described_class.new(**init_args) configs = etl.load_config expect(configs.size).to eq(2) expect(configs.first).to be_an_instance_of(Kubetruth::Config) @@ -232,7 +196,6 @@ class ForceExit < Exception; end "myroot" => Config::DEFAULT_SPEC.merge(scope: "root", name: "myroot", environment: "env3"), } }) - etl = described_class.new(**init_args) nses = ["primary-ns", "other-ns", "yetanother-ns"] envs = ["default", "otherenv", "env3"] @@ -404,10 +367,11 @@ class ForceExit < Exception; end end it "allows dryrun" do - etl.instance_variable_set(:@dry_run, true) + etl = described_class.new(dry_run: true) allow(etl).to receive(:load_config).and_yield(@ns, config) expect(collection).to receive(:names).and_return(["proj1"]) + expect(@kubeapi).to receive(:get_resource) expect(@kubeapi).to_not receive(:ensure_namespace) expect(@kubeapi).to_not receive(:apply_resource) diff --git a/spec/kubetruth/kubeapi_spec.rb b/spec/kubetruth/kubeapi_spec.rb index 67c4daf..501e349 100644 --- a/spec/kubetruth/kubeapi_spec.rb +++ b/spec/kubetruth/kubeapi_spec.rb @@ -88,6 +88,23 @@ def apiserver; "https://127.0.0.1"; end @spec_name = "#{self.class.name}#{ex.description}".downcase.gsub(/[^\w]+/, "-") end + describe "instance" do + + it "fails if not configured" do + expect { described_class.instance }.to raise_error(ArgumentError, /has not been configured/) + end + + it "succeeds when configured" do + described_class.configure(namespace: "ns1", token: "token1", api_url: "http://localhost") + expect(described_class.instance).to be_an_instance_of(described_class) + expect(described_class.instance).to equal(described_class.instance) + expect(described_class.instance.instance_variable_get(:@namespace)).to eq("ns1") + expect(described_class.instance.instance_variable_get(:@auth_options)).to eq({bearer_token: "token1"}) + expect(described_class.instance.instance_variable_get(:@api_url)).to eq("http://localhost") + end + + end + describe "initialize" do it "uses supplied namespace" do @@ -103,6 +120,7 @@ def apiserver; "https://127.0.0.1"; end expect(instance.instance_variable_get(:@auth_options)[:bearer_token_file]).to eq(KubeApi::TOKEN_PATH) expect(instance.instance_variable_get(:@ssl_options)[:ca_file]).to eq(KubeApi::CA_PATH) end + end describe "#api_url" do diff --git a/spec/kubetruth/project_collection_spec.rb b/spec/kubetruth/project_collection_spec.rb index 6f2df77..9e39f97 100644 --- a/spec/kubetruth/project_collection_spec.rb +++ b/spec/kubetruth/project_collection_spec.rb @@ -12,21 +12,6 @@ module Kubetruth allow(collection).to receive(:ctapi).and_return(@ctapi) end - describe "#ctapi" do - - it "is memoized" do - begin - ::Kubetruth.const_set(:CtApi, Class) if ! defined? ::Kubetruth::CtApi - expect(::Kubetruth::CtApi).to receive(:new).and_return(@ctapi) - instance = described_class.new - expect(instance.ctapi).to equal(instance.ctapi) - ensure - ::Kubetruth.send(:remove_const, :CtApi) - end - end - - end - describe "#names" do it "gets project names from ctapi" do diff --git a/spec/kubetruth/project_spec.rb b/spec/kubetruth/project_spec.rb index e5c3416..077aa53 100644 --- a/spec/kubetruth/project_spec.rb +++ b/spec/kubetruth/project_spec.rb @@ -31,25 +31,25 @@ module Kubetruth collection: collection) } it "handles empty" do - expect(@ctapi).to receive(:parameters).with(searchTerm: "", project: project.name, environment: "default").and_return([]) + expect(@ctapi).to receive(:parameters).with(project: project.name, environment: "default").and_return([]) params = project.parameters expect(params).to eq([]) end - it "uses simple key_selector as search parameter" do + it "uses simple key_selector" do project.spec.key_selector = /svc/ - expect(@ctapi).to receive(:parameters).with(searchTerm: "svc", project: project.name, environment: "default").and_return([ + expect(@ctapi).to receive(:parameters).with(project: project.name, environment: "default").and_return([ Parameter.new(key: "svc.param1", value: "value1", secret: false), Parameter.new(key: "svc.param2", value: "value2", secret: false), ]) params = project.parameters expect(params.size).to eq(2) - expect(Logging.contents).to_not match(/Looking for key pattern matches/) + expect(Logging.contents).to match(/Looking for key pattern matches/) end - it "uses complex key_selector client-side" do + it "uses complex key_selector" do project.spec.key_selector = /foo$/ - expect(@ctapi).to receive(:parameters).with(searchTerm: "", project: project.name, environment: "default").and_return([ + expect(@ctapi).to receive(:parameters).with(project: project.name, environment: "default").and_return([ Parameter.new(key: "svc.param1", value: "value1", secret: false), Parameter.new(key: "svc.param2.foo", value: "value2", secret: false), ]) @@ -62,7 +62,7 @@ module Kubetruth it "doesn't expose secret in debug log" do Logging.setup_logging(level: :debug, color: false) - expect(@ctapi).to receive(:parameters).with(searchTerm: "", project: project.name, environment: "default").and_return([ + expect(@ctapi).to receive(:parameters).with(project: project.name, environment: "default").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), diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 9990024..93ef29c 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -33,67 +33,16 @@ def fixture_dir @fixture_dir ||= File.expand_path("../fixtures", __FILE__) end -# Monkey patch VCR so we can do a regexp replace for parameter values (multiple -# different strings matching a pattern in single response body) -class VCR::HTTPInteraction::HookAware - def filter!(text, replacement_text) - # replacement -> text when loading a fixture - if replacement_text.is_a?(Regexp) - replacement_text = text - return self if replacement_text.empty? - end - - # text -> replacement when writing out a fixture - if text.is_a?(Regexp) - return self if text == // - else - text = text.to_s - return self if text.empty? - end - - filter_object!(self, text, replacement_text) - end - - private - - def filter_object!(object, text, replacement_text) - if object.respond_to?(:gsub) - - if text.is_a?(Regexp) - object.gsub!(text, replacement_text) if object.match?(text) - else - begin - object.gsub!(text, replacement_text) if object.include?(text) - rescue - raise - end - - end - elsif Hash === object - filter_hash!(object, text, replacement_text) - elsif object.respond_to?(:each) - # This handles nested arrays and structs - object.each { |o| filter_object!(o, text, replacement_text) } - end - - object - end -end - VCR.configure do |c| c.cassette_library_dir = "#{fixture_dir}/vcr" c.hook_into :webmock c.configure_rspec_metadata! - c.filter_sensitive_data('') do |interaction| + c.filter_sensitive_data('') do |interaction| auths = interaction.request.headers['Authorization'].first - if (match = auths.match /^Bearer\s+([^,\s]+)/ ) + if (match = auths.match /^[^\s]+\s+([^,\s]+)/ ) match.captures.first end end - - string_with_escapes = '"((\\\\.|[^\"])*)"' - c.filter_sensitive_data('"parameterValue":""') { /"parameterValue":#{string_with_escapes}/ } - c.filter_sensitive_data('"CLOUDTRUTH_API_KEY":""') { /"CLOUDTRUTH_API_KEY":#{string_with_escapes}/ } end From 2d540c0081fe7a84d2d3127f52124895d36a1c3f Mon Sep 17 00:00:00 2001 From: Matt Conway Date: Tue, 13 Jul 2021 20:39:55 -0400 Subject: [PATCH 02/17] ignore coverage for generated client lib --- spec/spec_helper.rb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 93ef29c..eda6b2d 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -20,10 +20,12 @@ # start SimpleCov.start do add_filter 'spec' + add_filter '/client/' end end SimpleCov.start do add_filter 'spec' + add_filter '/client/' end require 'vcr' @@ -33,6 +35,10 @@ def fixture_dir @fixture_dir ||= File.expand_path("../fixtures", __FILE__) end +def logger + ::Logging.logger.root +end + VCR.configure do |c| c.cassette_library_dir = "#{fixture_dir}/vcr" c.hook_into :webmock From d1d3992d89aca028a4c796bb4af2dfd3a9af4139 Mon Sep 17 00:00:00 2001 From: Matt Conway Date: Tue, 13 Jul 2021 20:40:56 -0400 Subject: [PATCH 03/17] explicit async wait at top level to future proof if sibling asyncs are added --- lib/kubetruth/etl.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/kubetruth/etl.rb b/lib/kubetruth/etl.rb index f680837..06a5e82 100644 --- a/lib/kubetruth/etl.rb +++ b/lib/kubetruth/etl.rb @@ -182,7 +182,7 @@ def apply end end - end + end.wait end def params_to_hash(param_list) From d194ac61fa610f58517f1009557107ab032636ec Mon Sep 17 00:00:00 2001 From: Matt Conway Date: Tue, 13 Jul 2021 20:43:03 -0400 Subject: [PATCH 04/17] add tests to validate concurrency for http calls. Use faradat instead of typhoeus in generated client lib to get concurrency for ctapi --- Gemfile.lock | 25 +- Rakefile | 1 + .../_environment_id/gets_id.yml | 20 +- .../raises_if_environment_doesn_t_exist.yml | 40 +- .../retries_if_environment_doesn_t_exist.yml | 40 +- .../_environments/gets_environments.yml | 20 +- .../_environments/memoizes_environments.yml | 20 +- .../doesn_t_expose_secret_in_debug_log.yml | 262 ++++++------- .../_parameters/gets_parameters.yml | 210 +++++----- .../uses_environment_to_get_values.yml | 360 +++++++++--------- .../_projects/doesn_t_memoize_projects_.yml | 88 ++--- .../_projects/gets_projects.yml | 44 +-- .../does_api_requests_concurrently.yml | 107 ++++++ .../does_api_requests_concurrently.yml | 197 ++++++++++ spec/kubetruth/ctapi_spec.rb | 53 ++- spec/kubetruth/kubeapi_spec.rb | 49 +++ spec/kubetruth/project_collection_spec.rb | 4 +- 17 files changed, 981 insertions(+), 559 deletions(-) create mode 100644 spec/fixtures/vcr/Kubetruth_CtApi/validate_async/does_api_requests_concurrently.yml create mode 100644 spec/fixtures/vcr/Kubetruth_KubeApi/validate_async/does_api_requests_concurrently.yml diff --git a/Gemfile.lock b/Gemfile.lock index 2be54d4..2189199 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -9,7 +9,7 @@ PATH remote: client specs: cloudtruth-client (1.0.0) - typhoeus (~> 1.0, >= 1.0.1) + faraday (~> 1.0, >= 1.0.1) GEM remote: https://rubygems.org/ @@ -40,8 +40,23 @@ GEM docile (1.4.0) domain_name (0.5.20190701) unf (>= 0.0.5, < 1.0.0) - ethon (0.14.0) - ffi (>= 1.15.0) + faraday (1.5.1) + faraday-em_http (~> 1.0) + faraday-em_synchrony (~> 1.0) + faraday-excon (~> 1.1) + faraday-httpclient (~> 1.0.1) + faraday-net_http (~> 1.0) + faraday-net_http_persistent (~> 1.1) + faraday-patron (~> 1.0) + multipart-post (>= 1.2, < 3) + ruby2_keywords (>= 0.0.4) + faraday-em_http (1.0.0) + faraday-em_synchrony (1.0.0) + faraday-excon (1.1.0) + faraday-httpclient (1.0.1) + faraday-net_http (1.0.1) + faraday-net_http_persistent (1.2.0) + faraday-patron (1.0.0) ffi (1.15.3) ffi-compiler (1.0.1) ffi (>= 1.0.0) @@ -81,6 +96,7 @@ GEM mime-types-data (3.2021.0704) minitest (5.14.4) multi_json (1.15.0) + multipart-post (2.1.1) netrc (0.11.0) nio4r (2.5.7) pry (0.14.1) @@ -111,6 +127,7 @@ GEM diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.10.0) rspec-support (3.10.2) + ruby2_keywords (0.0.4) simplecov (0.21.2) docile (~> 1.1) simplecov-html (~> 0.11) @@ -118,8 +135,6 @@ GEM simplecov-html (0.12.3) simplecov_json_formatter (0.1.3) timers (4.3.3) - typhoeus (1.4.0) - ethon (>= 0.9.0) tzinfo (2.0.4) concurrent-ruby (~> 1.0) unf (0.1.4) diff --git a/Rakefile b/Rakefile index ee2ed19..3cf7c3e 100644 --- a/Rakefile +++ b/Rakefile @@ -232,6 +232,7 @@ file "#{CLIENT_DIR}/Gemfile" => "openapi.yml" do -i /data/openapi.yml -g ruby -o /data/client + --library faraday --additional-properties=gemName=cloudtruth-client ] end diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/gets_id.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/gets_id.yml index 0467605..353489e 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/gets_id.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/gets_id.yml @@ -7,16 +7,16 @@ http_interactions: encoding: US-ASCII string: '' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 200 @@ -25,7 +25,7 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:01 GMT + - Wed, 14 Jul 2021 00:32:41 GMT Connection: - close Content-Type: @@ -43,16 +43,16 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=uDIbNTaPhFophsYt6FAJTZN7mJENHlOSN5ou7hnqZy2gM9vLRRRt2EcJwaEVEpsc; - expires=Tue, 12 Jul 2022 18:36:01 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=2egiujqoz1jhpedzjubjruyy4r42rc3c; expires=Tue, 27 Jul 2021 18:36:01 + - csrftoken=5IY9krbffcfdVVP9k9AozzRZTW6dROxvJ8TYT2DV0TkWP43lFDtZvYKXfe2QnSiC; + expires=Wed, 13 Jul 2022 00:32:41 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=9ggv1rv94bg91qrrqtwn3gnmz4xcwleb; expires=Wed, 28 Jul 2021 00:32:41 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT + encoding: UTF-8 string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","id":"1c03b5c1-7040-49e4-be35-7594be262c11","name":"default","description":"Default environment, base for all environments.","parent":null,"created_at":"2021-07-13T17:57:00.029171Z","modified_at":"2021-07-13T17:57:00.029210Z"},{"url":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","id":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","name":"development","description":"Development deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.048313Z","modified_at":"2021-07-13T17:57:00.048347Z"},{"url":"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/","id":"1eadb281-baa9-4816-8f88-775d0a636f16","name":"production","description":"Production deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.072603Z","modified_at":"2021-07-13T17:57:00.072636Z"},{"url":"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/","id":"f7f81820-f920-467c-9a37-fc4a6ad518fe","name":"staging","description":"Staging deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.061960Z","modified_at":"2021-07-13T17:57:00.061995Z"}]}' - recorded_at: Tue, 13 Jul 2021 18:36:01 GMT + recorded_at: Wed, 14 Jul 2021 00:32:41 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/raises_if_environment_doesn_t_exist.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/raises_if_environment_doesn_t_exist.yml index 110854d..bd286c7 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/raises_if_environment_doesn_t_exist.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/raises_if_environment_doesn_t_exist.yml @@ -7,16 +7,16 @@ http_interactions: encoding: US-ASCII string: '' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 200 @@ -25,7 +25,7 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:03 GMT + - Wed, 14 Jul 2021 00:32:42 GMT Connection: - close Content-Type: @@ -43,18 +43,18 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=2zYAMCOMD1QHaswxx2eV7yk06QbvFcsjm5kw82znc7thtjVLnEDqQh2JTCG5YVzu; - expires=Tue, 12 Jul 2022 18:36:03 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=i3saufusqv9r89fuwhbmqzd3nnym0vk9; expires=Tue, 27 Jul 2021 18:36:03 + - csrftoken=zzjuDV8Rlx9U2HoPsHXLeDY0xfW1tBPBwv4pfm9JR5cTLfBWsBeq2RmrH4p2mbK8; + expires=Wed, 13 Jul 2022 00:32:42 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=hqbas9yuhvf9s8ax9ocvnm0m3air9m1b; expires=Wed, 28 Jul 2021 00:32:42 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT + encoding: UTF-8 string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","id":"1c03b5c1-7040-49e4-be35-7594be262c11","name":"default","description":"Default environment, base for all environments.","parent":null,"created_at":"2021-07-13T17:57:00.029171Z","modified_at":"2021-07-13T17:57:00.029210Z"},{"url":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","id":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","name":"development","description":"Development deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.048313Z","modified_at":"2021-07-13T17:57:00.048347Z"},{"url":"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/","id":"1eadb281-baa9-4816-8f88-775d0a636f16","name":"production","description":"Production deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.072603Z","modified_at":"2021-07-13T17:57:00.072636Z"},{"url":"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/","id":"f7f81820-f920-467c-9a37-fc4a6ad518fe","name":"staging","description":"Staging deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.061960Z","modified_at":"2021-07-13T17:57:00.061995Z"}]}' - recorded_at: Tue, 13 Jul 2021 18:36:03 GMT + recorded_at: Wed, 14 Jul 2021 00:32:42 GMT - request: method: get uri: https://localhost:8000/api/v1/environments/ @@ -62,16 +62,16 @@ http_interactions: encoding: US-ASCII string: '' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 200 @@ -80,7 +80,7 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:04 GMT + - Wed, 14 Jul 2021 00:32:44 GMT Connection: - close Content-Type: @@ -98,16 +98,16 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=VNhyXCrJAtschnRJRtp8TAmIguMbEB7FxAXQxyqP4UDjtbuR2XqH6mmnk5TpTYPb; - expires=Tue, 12 Jul 2022 18:36:04 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=h6e4dg4ojhggi11ofi1enjjgyaax6lyn; expires=Tue, 27 Jul 2021 18:36:04 + - csrftoken=WBXSoUIYffq4xoP4CSbgu2SfuWUlSUFlkpu0dTbFG9kqUFv2OLmnOfsJTQGuiGBW; + expires=Wed, 13 Jul 2022 00:32:44 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=eq1u3dvb5s1h2nwnknbsf2s8key6izsd; expires=Wed, 28 Jul 2021 00:32:44 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT + encoding: UTF-8 string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","id":"1c03b5c1-7040-49e4-be35-7594be262c11","name":"default","description":"Default environment, base for all environments.","parent":null,"created_at":"2021-07-13T17:57:00.029171Z","modified_at":"2021-07-13T17:57:00.029210Z"},{"url":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","id":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","name":"development","description":"Development deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.048313Z","modified_at":"2021-07-13T17:57:00.048347Z"},{"url":"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/","id":"1eadb281-baa9-4816-8f88-775d0a636f16","name":"production","description":"Production deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.072603Z","modified_at":"2021-07-13T17:57:00.072636Z"},{"url":"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/","id":"f7f81820-f920-467c-9a37-fc4a6ad518fe","name":"staging","description":"Staging deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.061960Z","modified_at":"2021-07-13T17:57:00.061995Z"}]}' - recorded_at: Tue, 13 Jul 2021 18:36:04 GMT + recorded_at: Wed, 14 Jul 2021 00:32:44 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/retries_if_environment_doesn_t_exist.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/retries_if_environment_doesn_t_exist.yml index 5b2ea6d..c6ae9d7 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/retries_if_environment_doesn_t_exist.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/retries_if_environment_doesn_t_exist.yml @@ -7,16 +7,16 @@ http_interactions: encoding: US-ASCII string: '' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 200 @@ -25,7 +25,7 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:06 GMT + - Wed, 14 Jul 2021 00:32:46 GMT Connection: - close Content-Type: @@ -43,18 +43,18 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=QT76YQOoIDVTW7CrP3kc7Y3rCTyEo3IRERAOroDMtLZsf6K9LaIGK6wuFkLj7DaD; - expires=Tue, 12 Jul 2022 18:36:05 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=jx32a0heaqqyyb6f95twkne0noaelchm; expires=Tue, 27 Jul 2021 18:36:05 + - csrftoken=RoTJ5HXnwVR1trGrX7of1Al7CL2MGZv3EqlP0bYquvNTh8cMI02vv64PT1BjmMXp; + expires=Wed, 13 Jul 2022 00:32:46 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=ht15sue1467jo4z0d4ss2yvh467gyac1; expires=Wed, 28 Jul 2021 00:32:46 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT + encoding: UTF-8 string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","id":"1c03b5c1-7040-49e4-be35-7594be262c11","name":"default","description":"Default environment, base for all environments.","parent":null,"created_at":"2021-07-13T17:57:00.029171Z","modified_at":"2021-07-13T17:57:00.029210Z"},{"url":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","id":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","name":"development","description":"Development deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.048313Z","modified_at":"2021-07-13T17:57:00.048347Z"},{"url":"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/","id":"1eadb281-baa9-4816-8f88-775d0a636f16","name":"production","description":"Production deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.072603Z","modified_at":"2021-07-13T17:57:00.072636Z"},{"url":"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/","id":"f7f81820-f920-467c-9a37-fc4a6ad518fe","name":"staging","description":"Staging deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.061960Z","modified_at":"2021-07-13T17:57:00.061995Z"}]}' - recorded_at: Tue, 13 Jul 2021 18:36:06 GMT + recorded_at: Wed, 14 Jul 2021 00:32:46 GMT - request: method: get uri: https://localhost:8000/api/v1/environments/ @@ -62,16 +62,16 @@ http_interactions: encoding: US-ASCII string: '' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 200 @@ -80,7 +80,7 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:07 GMT + - Wed, 14 Jul 2021 00:32:47 GMT Connection: - close Content-Type: @@ -98,16 +98,16 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=Au6BakQ3KmzAOHGjnCqzr0yQhKjVWakTPUulERRoLavMGag9Cc655wOyMwdaBot3; - expires=Tue, 12 Jul 2022 18:36:07 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=5jfkevxbatab23ck67gg04b3pcna14ep; expires=Tue, 27 Jul 2021 18:36:07 + - csrftoken=qMEQnOBFnzXAcmIFEuygBhe99UwR7GJeOxoNTvh2sCVe4Wt58teo4Zvi4YKmQU5L; + expires=Wed, 13 Jul 2022 00:32:47 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=b596hncedlysdnjeghsfubb7ew39c3ny; expires=Wed, 28 Jul 2021 00:32:47 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT + encoding: UTF-8 string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","id":"1c03b5c1-7040-49e4-be35-7594be262c11","name":"default","description":"Default environment, base for all environments.","parent":null,"created_at":"2021-07-13T17:57:00.029171Z","modified_at":"2021-07-13T17:57:00.029210Z"},{"url":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","id":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","name":"development","description":"Development deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.048313Z","modified_at":"2021-07-13T17:57:00.048347Z"},{"url":"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/","id":"1eadb281-baa9-4816-8f88-775d0a636f16","name":"production","description":"Production deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.072603Z","modified_at":"2021-07-13T17:57:00.072636Z"},{"url":"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/","id":"f7f81820-f920-467c-9a37-fc4a6ad518fe","name":"staging","description":"Staging deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.061960Z","modified_at":"2021-07-13T17:57:00.061995Z"}]}' - recorded_at: Tue, 13 Jul 2021 18:36:07 GMT + recorded_at: Wed, 14 Jul 2021 00:32:47 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_environments/gets_environments.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_environments/gets_environments.yml index dd03cea..8d273b7 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_environments/gets_environments.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_environments/gets_environments.yml @@ -7,16 +7,16 @@ http_interactions: encoding: US-ASCII string: '' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 200 @@ -25,7 +25,7 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:35:58 GMT + - Wed, 14 Jul 2021 00:32:38 GMT Connection: - close Content-Type: @@ -43,16 +43,16 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=c7nqJzj1MMIZBxhnOecabjo5ERdAA1nBCll7lONEDOwDczHSFHdKOsDBSCyGNUkT; - expires=Tue, 12 Jul 2022 18:35:58 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=qitj3du92jfkp9arub5hykmnad0svpuh; expires=Tue, 27 Jul 2021 18:35:58 + - csrftoken=RaaqZRhaNnoLgHTygPYHhUhomVwpmoDaBJxJNH5ThLBRpp8t732f86ScTCuZi0Fs; + expires=Wed, 13 Jul 2022 00:32:38 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=xiucukgdg9nbnoh1hsf8jtjhbwvs3z88; expires=Wed, 28 Jul 2021 00:32:38 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT + encoding: UTF-8 string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","id":"1c03b5c1-7040-49e4-be35-7594be262c11","name":"default","description":"Default environment, base for all environments.","parent":null,"created_at":"2021-07-13T17:57:00.029171Z","modified_at":"2021-07-13T17:57:00.029210Z"},{"url":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","id":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","name":"development","description":"Development deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.048313Z","modified_at":"2021-07-13T17:57:00.048347Z"},{"url":"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/","id":"1eadb281-baa9-4816-8f88-775d0a636f16","name":"production","description":"Production deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.072603Z","modified_at":"2021-07-13T17:57:00.072636Z"},{"url":"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/","id":"f7f81820-f920-467c-9a37-fc4a6ad518fe","name":"staging","description":"Staging deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.061960Z","modified_at":"2021-07-13T17:57:00.061995Z"}]}' - recorded_at: Tue, 13 Jul 2021 18:35:58 GMT + recorded_at: Wed, 14 Jul 2021 00:32:38 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_environments/memoizes_environments.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_environments/memoizes_environments.yml index 48921f8..d10b91f 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_environments/memoizes_environments.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_environments/memoizes_environments.yml @@ -7,16 +7,16 @@ http_interactions: encoding: US-ASCII string: '' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 200 @@ -25,7 +25,7 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:00 GMT + - Wed, 14 Jul 2021 00:32:40 GMT Connection: - close Content-Type: @@ -43,16 +43,16 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=fMirZbD3BUTboPeOmLn4TWevS1O4RsjWQXpe3thDzwR2twxYgA384YToc6sPcDZr; - expires=Tue, 12 Jul 2022 18:36:00 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=q3hqnzk39w9zmci8ry5ir9y86n4asc9r; expires=Tue, 27 Jul 2021 18:36:00 + - csrftoken=TG4yCY85AgPEgnK0fyMY4mzLQLlYC6XsOZkgiNtiJK7V1FobTNtDp9iUG7SfjvF8; + expires=Wed, 13 Jul 2022 00:32:40 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=1ttsonnv649hkiuo4jo6jgpcjdvud7k1; expires=Wed, 28 Jul 2021 00:32:40 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT + encoding: UTF-8 string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","id":"1c03b5c1-7040-49e4-be35-7594be262c11","name":"default","description":"Default environment, base for all environments.","parent":null,"created_at":"2021-07-13T17:57:00.029171Z","modified_at":"2021-07-13T17:57:00.029210Z"},{"url":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","id":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","name":"development","description":"Development deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.048313Z","modified_at":"2021-07-13T17:57:00.048347Z"},{"url":"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/","id":"1eadb281-baa9-4816-8f88-775d0a636f16","name":"production","description":"Production deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.072603Z","modified_at":"2021-07-13T17:57:00.072636Z"},{"url":"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/","id":"f7f81820-f920-467c-9a37-fc4a6ad518fe","name":"staging","description":"Staging deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.061960Z","modified_at":"2021-07-13T17:57:00.061995Z"}]}' - recorded_at: Tue, 13 Jul 2021 18:36:00 GMT + recorded_at: Wed, 14 Jul 2021 00:32:40 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/doesn_t_expose_secret_in_debug_log.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/doesn_t_expose_secret_in_debug_log.yml index 888eeeb..7b1d572 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/doesn_t_expose_secret_in_debug_log.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/doesn_t_expose_secret_in_debug_log.yml @@ -7,16 +7,16 @@ http_interactions: encoding: US-ASCII string: '' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 200 @@ -25,7 +25,7 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:30 GMT + - Wed, 14 Jul 2021 00:33:13 GMT Connection: - close Content-Type: @@ -43,30 +43,32 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=q3i066o40THYivHKJ2oxI3SBFOnieNIjeSJ93nlvka8LKHwxvVyR6wEmggTiecVC; - expires=Tue, 12 Jul 2022 18:36:30 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=9emjp5xn1z2jswovr32xmie3lt3fy60i; expires=Tue, 27 Jul 2021 18:36:30 + - csrftoken=YA6mGGNl4DSdIg4fYHrUwLEbzV0fKU5Ba3xPA9RSnH6OIwCqqXr6wi29T27AHC9s; + expires=Wed, 13 Jul 2022 00:33:13 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=2qa2t8yib0aqtes4m29vh3syffpdt0q1; expires=Wed, 28 Jul 2021 00:33:13 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT + encoding: UTF-8 string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/d8a29c6e-63fa-4c83-96df-01fa74a38a1b/","id":"d8a29c6e-63fa-4c83-96df-01fa74a38a1b","name":"TestProject","description":"","created_at":"2021-07-13T18:36:20.700480Z","modified_at":"2021-07-13T18:36:20.700511Z"}]}' - recorded_at: Tue, 13 Jul 2021 18:36:30 GMT + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/0fe82ebf-0abf-4567-b681-38245fd86feb/","id":"0fe82ebf-0abf-4567-b681-38245fd86feb","name":"TestProject","description":"","created_at":"2021-07-14T00:33:03.674185Z","modified_at":"2021-07-14T00:33:03.674227Z"}]}' + recorded_at: Wed, 14 Jul 2021 00:33:13 GMT - request: method: delete - uri: https://localhost:8000/api/v1/projects/d8a29c6e-63fa-4c83-96df-01fa74a38a1b/ + uri: https://localhost:8000/api/v1/projects/0fe82ebf-0abf-4567-b681-38245fd86feb/ body: encoding: US-ASCII string: '' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" response: status: code: 204 @@ -75,7 +77,7 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:32 GMT + - Wed, 14 Jul 2021 00:33:15 GMT Connection: - close Vary: @@ -91,14 +93,14 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=pY62Tz0icaKUDvGi0OtgCXy1mUYyTe6ufzEMwjOrgDdgJ6Z6zecTzzelyNhDyi1g; - expires=Tue, 12 Jul 2022 18:36:32 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=qqbylz63lejs48i41yr9cjke3q0pwv2x; expires=Tue, 27 Jul 2021 18:36:32 + - csrftoken=D3zYcz4XJHf1Bo17GabKwsYWVOtdZigIXXnBOwgJjhx19DkYXbmy7Hpr4FolkIz5; + expires=Wed, 13 Jul 2022 00:33:15 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=2kz1o9cl3q0iihytjxc7zcfequ2mgxmk; expires=Wed, 28 Jul 2021 00:33:15 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT + encoding: UTF-8 string: '' - recorded_at: Tue, 13 Jul 2021 18:36:32 GMT + recorded_at: Wed, 14 Jul 2021 00:33:15 GMT - request: method: post uri: https://localhost:8000/api/v1/projects/ @@ -106,16 +108,16 @@ http_interactions: encoding: UTF-8 string: '{"name":"TestProject"}' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 201 @@ -124,13 +126,13 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:33 GMT + - Wed, 14 Jul 2021 00:33:16 GMT Connection: - close Content-Type: - application/json Location: - - https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/ + - https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/ Vary: - Accept, Cookie, Origin Allow: @@ -144,14 +146,14 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=1qV0MaSgAKyVtmVfiEc4j6UWJQ3x1NqvI2vPu6tqG0RZixCREEObNCdtvtZ9G3Do; - expires=Tue, 12 Jul 2022 18:36:33 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=8yivejvs6wesyl6jyxip7nzwn24hutvm; expires=Tue, 27 Jul 2021 18:36:33 + - csrftoken=9CXZu29csfP7qRNY9mYRA4Bi7f2XFQKn29X6wzt4CnGwDpRk5iqUNuX0P6ERYCcH; + expires=Wed, 13 Jul 2022 00:33:16 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=mf0nwhw8ebyupofhqsxemymyjo33cnjw; expires=Wed, 28 Jul 2021 00:33:16 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT - string: '{"url":"https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/","id":"81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e","name":"TestProject","description":"","created_at":"2021-07-13T18:36:33.788226Z","modified_at":"2021-07-13T18:36:33.788264Z"}' - recorded_at: Tue, 13 Jul 2021 18:36:33 GMT + encoding: UTF-8 + string: '{"url":"https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/","id":"f76f1696-252c-4289-8fdc-e611579e4dba","name":"TestProject","description":"","created_at":"2021-07-14T00:33:16.808298Z","modified_at":"2021-07-14T00:33:16.808341Z"}' + recorded_at: Wed, 14 Jul 2021 00:33:16 GMT - request: method: get uri: https://localhost:8000/api/v1/projects/ @@ -159,16 +161,16 @@ http_interactions: encoding: US-ASCII string: '' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 200 @@ -177,7 +179,7 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:35 GMT + - Wed, 14 Jul 2021 00:33:18 GMT Connection: - close Content-Type: @@ -195,32 +197,32 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=WIijfLHG8G0fjjq0YfKrTyjBjRWX8d462UtWKChJfyyCVVJ4b7xLluovmtQTe1hW; - expires=Tue, 12 Jul 2022 18:36:35 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=tx5pmuls9ip1phllwlsa8dgqb0sft3y4; expires=Tue, 27 Jul 2021 18:36:35 + - csrftoken=bt5w2SA96MhkgbktIRPIEUFXtu08EKaUHvY261ui7qT8i7AJx9zCH7beSTBZTwJa; + expires=Wed, 13 Jul 2022 00:33:18 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=grb9kg607156cql7des1olamcqp1maic; expires=Wed, 28 Jul 2021 00:33:18 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT + encoding: UTF-8 string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/","id":"81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e","name":"TestProject","description":"","created_at":"2021-07-13T18:36:33.788226Z","modified_at":"2021-07-13T18:36:33.788264Z"}]}' - recorded_at: Tue, 13 Jul 2021 18:36:35 GMT + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/","id":"f76f1696-252c-4289-8fdc-e611579e4dba","name":"TestProject","description":"","created_at":"2021-07-14T00:33:16.808298Z","modified_at":"2021-07-14T00:33:16.808341Z"}]}' + recorded_at: Wed, 14 Jul 2021 00:33:18 GMT - request: method: post - uri: https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/ + uri: https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/ body: encoding: UTF-8 string: '{"name":"one"}' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 201 @@ -229,13 +231,13 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:36 GMT + - Wed, 14 Jul 2021 00:33:19 GMT Connection: - close Content-Type: - application/json Location: - - https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/c82ba994-ca4c-40c2-9f51-8c6fda86b4a1/ + - https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/33eb5177-80ee-470c-a73e-baacc27e9e55/ Vary: - Accept, Cookie, Origin Allow: @@ -249,31 +251,31 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=BewPjv3Ko12gXJzukw7rS8C6mC2i7g445ugfT7Lmw5PeATLyN9bDJxBNwLEwES0O; - expires=Tue, 12 Jul 2022 18:36:36 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=mchei3x66l06npckq9yx7zbiho1wnfxc; expires=Tue, 27 Jul 2021 18:36:36 + - csrftoken=ANZIMOyg09lAcglcxL6aQjqb3xVPArRRjiWIjpherlAosMDBcLZCBX1r4QzIP0IS; + expires=Wed, 13 Jul 2022 00:33:19 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=gptpwx0uiqqdwtgm35z84a8tu4d4poe1; expires=Wed, 28 Jul 2021 00:33:19 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT - string: '{"url":"https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/c82ba994-ca4c-40c2-9f51-8c6fda86b4a1/","id":"c82ba994-ca4c-40c2-9f51-8c6fda86b4a1","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null,"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":null,"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/":null,"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/":null},"created_at":"2021-07-13T18:36:36.404867Z","modified_at":"2021-07-13T18:36:36.404911Z"}' - recorded_at: Tue, 13 Jul 2021 18:36:36 GMT + encoding: UTF-8 + string: '{"url":"https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/33eb5177-80ee-470c-a73e-baacc27e9e55/","id":"33eb5177-80ee-470c-a73e-baacc27e9e55","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null,"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":null,"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/":null,"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/":null},"created_at":"2021-07-14T00:33:19.533724Z","modified_at":"2021-07-14T00:33:19.533760Z"}' + recorded_at: Wed, 14 Jul 2021 00:33:19 GMT - request: method: post - uri: https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/ + uri: https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/ body: encoding: UTF-8 string: '{"name":"two"}' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 201 @@ -282,13 +284,13 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:38 GMT + - Wed, 14 Jul 2021 00:33:21 GMT Connection: - close Content-Type: - application/json Location: - - https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/02835737-0a5b-42c5-99aa-1173c4bac2ad/ + - https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/fe279bbd-b038-452c-8cdd-c152c44376ae/ Vary: - Accept, Cookie, Origin Allow: @@ -302,31 +304,31 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=WqTf6dVg28tz0YRQlAahzhMybeuw0B0FEjMBYef0ZfFnVvBtKof1NB25wkbxyh9t; - expires=Tue, 12 Jul 2022 18:36:38 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=gszqu7co8vjjih0v4ygqanuwckjpehqa; expires=Tue, 27 Jul 2021 18:36:38 + - csrftoken=HAWPFLGH2S5CJ8org5iHggqc4PDqzSOyG3xRHA7gguIKXHcG2oEh9brimxTcNPtd; + expires=Wed, 13 Jul 2022 00:33:21 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=egv58hh0wzziz4pnlk4x07crclu6v5eq; expires=Wed, 28 Jul 2021 00:33:21 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT - string: '{"url":"https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/02835737-0a5b-42c5-99aa-1173c4bac2ad/","id":"02835737-0a5b-42c5-99aa-1173c4bac2ad","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null,"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":null,"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/":null,"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/":null},"created_at":"2021-07-13T18:36:38.174242Z","modified_at":"2021-07-13T18:36:38.174282Z"}' - recorded_at: Tue, 13 Jul 2021 18:36:38 GMT + encoding: UTF-8 + string: '{"url":"https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/fe279bbd-b038-452c-8cdd-c152c44376ae/","id":"fe279bbd-b038-452c-8cdd-c152c44376ae","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null,"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":null,"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/":null,"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/":null},"created_at":"2021-07-14T00:33:21.122355Z","modified_at":"2021-07-14T00:33:21.122397Z"}' + recorded_at: Wed, 14 Jul 2021 00:33:21 GMT - request: method: post - uri: https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/ + uri: https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/ body: encoding: UTF-8 string: '{"name":"three","secret":true}' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 201 @@ -335,13 +337,13 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:40 GMT + - Wed, 14 Jul 2021 00:33:22 GMT Connection: - close Content-Type: - application/json Location: - - https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/63d2c307-4df0-4914-8c76-bfb557b199f7/ + - https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/0dc81dde-f8f4-4b55-bbed-420f6b2aee8e/ Vary: - Accept, Cookie, Origin Allow: @@ -355,14 +357,14 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=pXKYrku39pWQ5BVDbDAIfbGMLZeaR8QajJ2IFIOxie1GH9hz6DVZWn4DPlQCiaaT; - expires=Tue, 12 Jul 2022 18:36:40 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=560di9cd1l6opfha1kugfw4567v5wzr2; expires=Tue, 27 Jul 2021 18:36:40 + - csrftoken=8PXgOkvoUfQaLFQeu4HacIaPet1g0QRCbdaxvQqn4sCEiUDJIWsU7mRzrpSAC1Jm; + expires=Wed, 13 Jul 2022 00:33:22 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=qvcxxu1nsy6sz66iux39ycp5tcrarv69; expires=Wed, 28 Jul 2021 00:33:22 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT - string: '{"url":"https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/63d2c307-4df0-4914-8c76-bfb557b199f7/","id":"63d2c307-4df0-4914-8c76-bfb557b199f7","name":"three","description":"","secret":true,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null,"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":null,"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/":null,"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/":null},"created_at":"2021-07-13T18:36:40.158493Z","modified_at":"2021-07-13T18:36:40.158532Z"}' - recorded_at: Tue, 13 Jul 2021 18:36:40 GMT + encoding: UTF-8 + string: '{"url":"https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/0dc81dde-f8f4-4b55-bbed-420f6b2aee8e/","id":"0dc81dde-f8f4-4b55-bbed-420f6b2aee8e","name":"three","description":"","secret":true,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null,"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":null,"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/":null,"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/":null},"created_at":"2021-07-14T00:33:22.580147Z","modified_at":"2021-07-14T00:33:22.580185Z"}' + recorded_at: Wed, 14 Jul 2021 00:33:22 GMT - request: method: get uri: https://localhost:8000/api/v1/environments/ @@ -370,16 +372,16 @@ http_interactions: encoding: US-ASCII string: '' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 200 @@ -388,7 +390,7 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:41 GMT + - Wed, 14 Jul 2021 00:33:24 GMT Connection: - close Content-Type: @@ -406,35 +408,35 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=FYwuKKx6b69FIe0PqhdKhIRNIhjqWvNa3ZWL4CFrL3yhKDvpdwPBmpjbGI2Myqvz; - expires=Tue, 12 Jul 2022 18:36:41 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=2f324tc6c7ieivbz1l5w53qdhdy8xckk; expires=Tue, 27 Jul 2021 18:36:41 + - csrftoken=xYcQRKtZXWDyoAEjyiFLZHQ8T7qZelE1Bs4KGi9ZKzFUEMUG3LnVNhRPyWYgGvNy; + expires=Wed, 13 Jul 2022 00:33:24 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=3wes2klh5adqnhfabe4laqy30t5f3d4s; expires=Wed, 28 Jul 2021 00:33:24 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT + encoding: UTF-8 string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","id":"1c03b5c1-7040-49e4-be35-7594be262c11","name":"default","description":"Default environment, base for all environments.","parent":null,"created_at":"2021-07-13T17:57:00.029171Z","modified_at":"2021-07-13T17:57:00.029210Z"},{"url":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","id":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","name":"development","description":"Development deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.048313Z","modified_at":"2021-07-13T17:57:00.048347Z"},{"url":"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/","id":"1eadb281-baa9-4816-8f88-775d0a636f16","name":"production","description":"Production deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.072603Z","modified_at":"2021-07-13T17:57:00.072636Z"},{"url":"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/","id":"f7f81820-f920-467c-9a37-fc4a6ad518fe","name":"staging","description":"Staging deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.061960Z","modified_at":"2021-07-13T17:57:00.061995Z"}]}' - recorded_at: Tue, 13 Jul 2021 18:36:41 GMT + recorded_at: Wed, 14 Jul 2021 00:33:24 GMT - request: method: post - uri: https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/63d2c307-4df0-4914-8c76-bfb557b199f7/values/ + uri: https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/0dc81dde-f8f4-4b55-bbed-420f6b2aee8e/values/ body: encoding: UTF-8 string: '{"environment":"1c03b5c1-7040-49e4-be35-7594be262c11","dynamic":false,"static_value":"defaultthree"}' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 201 @@ -443,13 +445,13 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:44 GMT + - Wed, 14 Jul 2021 00:33:27 GMT Connection: - close Content-Type: - application/json Location: - - https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/63d2c307-4df0-4914-8c76-bfb557b199f7/values/029fa2db-5722-44d9-80c9-bc6dd4217e5b/ + - https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/0dc81dde-f8f4-4b55-bbed-420f6b2aee8e/values/f23e37a0-3253-4e9f-8720-1314e2a487f4/ Vary: - Accept, Cookie, Origin Allow: @@ -463,14 +465,14 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=WEdBYZ9llHYzkIFElYI6OuAxqpyafFvces07JgrLldE48vEpON9otmlJd01wNoR4; - expires=Tue, 12 Jul 2022 18:36:44 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=pzbltktvq4qxf3p33egbhnx3z35ky0fo; expires=Tue, 27 Jul 2021 18:36:44 + - csrftoken=ldckygywBUZ8YEWg2wntyPPOAY0R01kJcDQ1Hcys1RYjDQNyrGlCaDiFAW2nP4vv; + expires=Wed, 13 Jul 2022 00:33:27 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=ge7y0pktvwmvfbrdlwq6i96j69sc7fs4; expires=Wed, 28 Jul 2021 00:33:27 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT - string: '{"url":"https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/63d2c307-4df0-4914-8c76-bfb557b199f7/values/029fa2db-5722-44d9-80c9-bc6dd4217e5b/","id":"029fa2db-5722-44d9-80c9-bc6dd4217e5b","environment":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","parameter":"https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/63d2c307-4df0-4914-8c76-bfb557b199f7/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":null,"value":"defaultthree","created_at":"2021-07-13T18:36:43.156101Z","modified_at":"2021-07-13T18:36:43.156159Z"}' - recorded_at: Tue, 13 Jul 2021 18:36:44 GMT + encoding: UTF-8 + string: '{"url":"https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/0dc81dde-f8f4-4b55-bbed-420f6b2aee8e/values/f23e37a0-3253-4e9f-8720-1314e2a487f4/","id":"f23e37a0-3253-4e9f-8720-1314e2a487f4","environment":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","parameter":"https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/0dc81dde-f8f4-4b55-bbed-420f6b2aee8e/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":null,"value":"defaultthree","created_at":"2021-07-14T00:33:25.951074Z","modified_at":"2021-07-14T00:33:25.951107Z"}' + recorded_at: Wed, 14 Jul 2021 00:33:27 GMT - request: method: get uri: https://localhost:8000/api/v1/projects/ @@ -478,16 +480,16 @@ http_interactions: encoding: US-ASCII string: '' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 200 @@ -496,7 +498,7 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:46 GMT + - Wed, 14 Jul 2021 00:33:29 GMT Connection: - close Content-Type: @@ -514,32 +516,32 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=MdtG2UPQvKnFWuqwBVkA4tQB6dEsqjXGHvE5lpKof1q4kMrU9IHAkhAbDNHWN78Y; - expires=Tue, 12 Jul 2022 18:36:46 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=2abkpmtbgc0qtiwn3quchf4jmlhmizbj; expires=Tue, 27 Jul 2021 18:36:46 + - csrftoken=q7I1uyofDXT1ukqcsdOEtIn7t6ma1Hj7qBtJbpbI3EbkL3BSgpfNAobz7hDYvTnn; + expires=Wed, 13 Jul 2022 00:33:29 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=ogxtswbfzoetov4vabvjya6hc8o3gg4a; expires=Wed, 28 Jul 2021 00:33:29 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT + encoding: UTF-8 string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/","id":"81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e","name":"TestProject","description":"","created_at":"2021-07-13T18:36:33.788226Z","modified_at":"2021-07-13T18:36:33.788264Z"}]}' - recorded_at: Tue, 13 Jul 2021 18:36:46 GMT + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/","id":"f76f1696-252c-4289-8fdc-e611579e4dba","name":"TestProject","description":"","created_at":"2021-07-14T00:33:16.808298Z","modified_at":"2021-07-14T00:33:16.808341Z"}]}' + recorded_at: Wed, 14 Jul 2021 00:33:29 GMT - request: method: get - uri: https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/?environment=1c03b5c1-7040-49e4-be35-7594be262c11 + uri: https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/?environment=1c03b5c1-7040-49e4-be35-7594be262c11 body: encoding: US-ASCII string: '' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 200 @@ -548,7 +550,7 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:47 GMT + - Wed, 14 Jul 2021 00:33:31 GMT Connection: - close Content-Type: @@ -566,12 +568,12 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=YUHgp4ZB7bkDG3TVc0LPgsEsLghdbpsFBrcAelow8OudAd4ieyrEuWtz25ewj2rq; - expires=Tue, 12 Jul 2022 18:36:47 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=ekyybdd8fkcoz35vighieu3f3nxp6jua; expires=Tue, 27 Jul 2021 18:36:47 + - csrftoken=NyravMOaKSoqdVhuzPKWlGGaXmjaNj7qCM5Fd8Pfnb9RPkP7Z8zaTHWkVW7VrCAB; + expires=Wed, 13 Jul 2022 00:33:31 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=xinkt3nf61dpfx3cf5bu0uc22u8022ps; expires=Wed, 28 Jul 2021 00:33:31 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT - string: '{"count":3,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/c82ba994-ca4c-40c2-9f51-8c6fda86b4a1/","id":"c82ba994-ca4c-40c2-9f51-8c6fda86b4a1","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null},"created_at":"2021-07-13T18:36:36.404867Z","modified_at":"2021-07-13T18:36:36.404911Z"},{"url":"https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/63d2c307-4df0-4914-8c76-bfb557b199f7/","id":"63d2c307-4df0-4914-8c76-bfb557b199f7","name":"three","description":"","secret":true,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":{"url":"https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/63d2c307-4df0-4914-8c76-bfb557b199f7/values/029fa2db-5722-44d9-80c9-bc6dd4217e5b/","id":"029fa2db-5722-44d9-80c9-bc6dd4217e5b","environment":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","parameter":"https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/63d2c307-4df0-4914-8c76-bfb557b199f7/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":null,"value":"defaultthree","created_at":"2021-07-13T18:36:43.156101Z","modified_at":"2021-07-13T18:36:43.156159Z"}},"created_at":"2021-07-13T18:36:40.158493Z","modified_at":"2021-07-13T18:36:40.158532Z"},{"url":"https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/parameters/02835737-0a5b-42c5-99aa-1173c4bac2ad/","id":"02835737-0a5b-42c5-99aa-1173c4bac2ad","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null},"created_at":"2021-07-13T18:36:38.174242Z","modified_at":"2021-07-13T18:36:38.174282Z"}]}' - recorded_at: Tue, 13 Jul 2021 18:36:47 GMT + encoding: UTF-8 + string: '{"count":3,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/33eb5177-80ee-470c-a73e-baacc27e9e55/","id":"33eb5177-80ee-470c-a73e-baacc27e9e55","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null},"created_at":"2021-07-14T00:33:19.533724Z","modified_at":"2021-07-14T00:33:19.533760Z"},{"url":"https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/0dc81dde-f8f4-4b55-bbed-420f6b2aee8e/","id":"0dc81dde-f8f4-4b55-bbed-420f6b2aee8e","name":"three","description":"","secret":true,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":{"url":"https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/0dc81dde-f8f4-4b55-bbed-420f6b2aee8e/values/f23e37a0-3253-4e9f-8720-1314e2a487f4/","id":"f23e37a0-3253-4e9f-8720-1314e2a487f4","environment":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","parameter":"https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/0dc81dde-f8f4-4b55-bbed-420f6b2aee8e/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":null,"value":"defaultthree","created_at":"2021-07-14T00:33:25.951074Z","modified_at":"2021-07-14T00:33:25.951107Z"}},"created_at":"2021-07-14T00:33:22.580147Z","modified_at":"2021-07-14T00:33:22.580185Z"},{"url":"https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/fe279bbd-b038-452c-8cdd-c152c44376ae/","id":"fe279bbd-b038-452c-8cdd-c152c44376ae","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null},"created_at":"2021-07-14T00:33:21.122355Z","modified_at":"2021-07-14T00:33:21.122397Z"}]}' + recorded_at: Wed, 14 Jul 2021 00:33:31 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/gets_parameters.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/gets_parameters.yml index 833295f..a1de3fb 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/gets_parameters.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/gets_parameters.yml @@ -7,16 +7,16 @@ http_interactions: encoding: US-ASCII string: '' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 200 @@ -25,7 +25,7 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:17 GMT + - Wed, 14 Jul 2021 00:32:59 GMT Connection: - close Content-Type: @@ -43,30 +43,32 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=gUylkEGEEcWPMJJWIBNLBQMfIyHKIbvZGbLkfXmVjEKiruBo9Gxwqz2LpkOulScB; - expires=Tue, 12 Jul 2022 18:36:17 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=4nylgwpoao3go5733up7h4ctmf4d6uz5; expires=Tue, 27 Jul 2021 18:36:17 + - csrftoken=4I7l2TlIJSjnWyUSi5P78LBMDQOw4mGet8bXedAi7kmIxe66UaMTv36zH9k142XU; + expires=Wed, 13 Jul 2022 00:32:59 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=ja2tspx7zhmyjurhbsv3h4o2tppvhtdu; expires=Wed, 28 Jul 2021 00:32:59 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT + encoding: UTF-8 string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/ac8ab123-6bd9-4d2c-8cf8-d58a8dcb7ac7/","id":"ac8ab123-6bd9-4d2c-8cf8-d58a8dcb7ac7","name":"TestProject","description":"","created_at":"2021-07-13T18:30:21.976094Z","modified_at":"2021-07-13T18:30:21.976134Z"}]}' - recorded_at: Tue, 13 Jul 2021 18:36:17 GMT + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/","id":"09757741-9659-4b43-bcbd-26317dfa2bff","name":"TestProject","description":"","created_at":"2021-07-13T18:36:53.178046Z","modified_at":"2021-07-13T18:36:53.178104Z"}]}' + recorded_at: Wed, 14 Jul 2021 00:32:59 GMT - request: method: delete - uri: https://localhost:8000/api/v1/projects/ac8ab123-6bd9-4d2c-8cf8-d58a8dcb7ac7/ + uri: https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/ body: encoding: US-ASCII string: '' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" response: status: code: 204 @@ -75,7 +77,7 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:19 GMT + - Wed, 14 Jul 2021 00:33:02 GMT Connection: - close Vary: @@ -91,14 +93,14 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=2wViOW9Ak4voN5BMeJpeKZiYoH3W2cGJx8ubfOjLod5tElAN2sw0Dv30lNMplifF; - expires=Tue, 12 Jul 2022 18:36:19 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=glcqog9s9bcth1h79efemvbrdqxw9uwi; expires=Tue, 27 Jul 2021 18:36:19 + - csrftoken=gg0yztXB7fDXnJyfSTqS393okOapPSf0lD02sQmJxIyfel0k5WV9SIl5qRYThQ6E; + expires=Wed, 13 Jul 2022 00:33:02 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=nqwuaqq5d28fw3evify8xhvr6zrau7ah; expires=Wed, 28 Jul 2021 00:33:02 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT + encoding: UTF-8 string: '' - recorded_at: Tue, 13 Jul 2021 18:36:19 GMT + recorded_at: Wed, 14 Jul 2021 00:33:02 GMT - request: method: post uri: https://localhost:8000/api/v1/projects/ @@ -106,16 +108,16 @@ http_interactions: encoding: UTF-8 string: '{"name":"TestProject"}' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 201 @@ -124,13 +126,13 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:20 GMT + - Wed, 14 Jul 2021 00:33:03 GMT Connection: - close Content-Type: - application/json Location: - - https://localhost:8000/api/v1/projects/d8a29c6e-63fa-4c83-96df-01fa74a38a1b/ + - https://localhost:8000/api/v1/projects/0fe82ebf-0abf-4567-b681-38245fd86feb/ Vary: - Accept, Cookie, Origin Allow: @@ -144,14 +146,14 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=V6DZ65gvg10Opi3H0bnwRi46AwJziSX9Ec9rnqxzlIq3HAz63peN7wR6RdKU6zH8; - expires=Tue, 12 Jul 2022 18:36:20 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=qw829cj9opkvgowgorolpowhfvpcwb9c; expires=Tue, 27 Jul 2021 18:36:20 + - csrftoken=3hkQOmb9CvQpuYezW9UFJthvRMXMDRHw6JRQIIvwQdo9HxXyyvJgaijvWlcg1orf; + expires=Wed, 13 Jul 2022 00:33:03 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=thhmqx0pk2zcf8m7nb6yn5qmi55k0xoa; expires=Wed, 28 Jul 2021 00:33:03 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT - string: '{"url":"https://localhost:8000/api/v1/projects/d8a29c6e-63fa-4c83-96df-01fa74a38a1b/","id":"d8a29c6e-63fa-4c83-96df-01fa74a38a1b","name":"TestProject","description":"","created_at":"2021-07-13T18:36:20.700480Z","modified_at":"2021-07-13T18:36:20.700511Z"}' - recorded_at: Tue, 13 Jul 2021 18:36:20 GMT + encoding: UTF-8 + string: '{"url":"https://localhost:8000/api/v1/projects/0fe82ebf-0abf-4567-b681-38245fd86feb/","id":"0fe82ebf-0abf-4567-b681-38245fd86feb","name":"TestProject","description":"","created_at":"2021-07-14T00:33:03.674185Z","modified_at":"2021-07-14T00:33:03.674227Z"}' + recorded_at: Wed, 14 Jul 2021 00:33:03 GMT - request: method: get uri: https://localhost:8000/api/v1/projects/ @@ -159,16 +161,16 @@ http_interactions: encoding: US-ASCII string: '' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 200 @@ -177,7 +179,7 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:22 GMT + - Wed, 14 Jul 2021 00:33:05 GMT Connection: - close Content-Type: @@ -195,32 +197,32 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=JW1KVHuh7MM2ySyqJSgGWFLxDDY26MJ2JOf77k7zOaTPvV9JC2NzQmr6lkCVeJHF; - expires=Tue, 12 Jul 2022 18:36:22 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=yqc28pcpi1zt9lxiqgi422ak9dcv1wps; expires=Tue, 27 Jul 2021 18:36:22 + - csrftoken=lONzOElmPe2821tvYiRPtrKZYXoSkOxRbo7Dyoop8uUqVwD2U8ENIhNSJGiwGhSe; + expires=Wed, 13 Jul 2022 00:33:05 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=yd3fov5xixdzklxgyfqwj8pz19vpg453; expires=Wed, 28 Jul 2021 00:33:05 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT + encoding: UTF-8 string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/d8a29c6e-63fa-4c83-96df-01fa74a38a1b/","id":"d8a29c6e-63fa-4c83-96df-01fa74a38a1b","name":"TestProject","description":"","created_at":"2021-07-13T18:36:20.700480Z","modified_at":"2021-07-13T18:36:20.700511Z"}]}' - recorded_at: Tue, 13 Jul 2021 18:36:22 GMT + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/0fe82ebf-0abf-4567-b681-38245fd86feb/","id":"0fe82ebf-0abf-4567-b681-38245fd86feb","name":"TestProject","description":"","created_at":"2021-07-14T00:33:03.674185Z","modified_at":"2021-07-14T00:33:03.674227Z"}]}' + recorded_at: Wed, 14 Jul 2021 00:33:05 GMT - request: method: post - uri: https://localhost:8000/api/v1/projects/d8a29c6e-63fa-4c83-96df-01fa74a38a1b/parameters/ + uri: https://localhost:8000/api/v1/projects/0fe82ebf-0abf-4567-b681-38245fd86feb/parameters/ body: encoding: UTF-8 string: '{"name":"one"}' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 201 @@ -229,13 +231,13 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:23 GMT + - Wed, 14 Jul 2021 00:33:06 GMT Connection: - close Content-Type: - application/json Location: - - https://localhost:8000/api/v1/projects/d8a29c6e-63fa-4c83-96df-01fa74a38a1b/parameters/9a656f21-bfb1-4755-b993-973ae10c4f6d/ + - https://localhost:8000/api/v1/projects/0fe82ebf-0abf-4567-b681-38245fd86feb/parameters/eb2b3c55-3767-4bad-85cf-2842decef52b/ Vary: - Accept, Cookie, Origin Allow: @@ -249,31 +251,31 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=RI43C95VX8zRupb1btKt2DNnngtLQpd0uouyzihqxjqHw7oyy1LjIPM0LdUuLVWy; - expires=Tue, 12 Jul 2022 18:36:23 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=fxkt2y9xk72dwhhob4lb56xqhy84zsru; expires=Tue, 27 Jul 2021 18:36:23 + - csrftoken=zl7LsVq8AhPIwackda43WhxWJ4GekEeRvPEgrKKKqZOAksn8V8NcrlCe64ScmfVD; + expires=Wed, 13 Jul 2022 00:33:06 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=vjp5vbjbz2v8junyzbtyl7mfkavgy1s0; expires=Wed, 28 Jul 2021 00:33:06 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT - string: '{"url":"https://localhost:8000/api/v1/projects/d8a29c6e-63fa-4c83-96df-01fa74a38a1b/parameters/9a656f21-bfb1-4755-b993-973ae10c4f6d/","id":"9a656f21-bfb1-4755-b993-973ae10c4f6d","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null,"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":null,"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/":null,"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/":null},"created_at":"2021-07-13T18:36:23.206590Z","modified_at":"2021-07-13T18:36:23.206633Z"}' - recorded_at: Tue, 13 Jul 2021 18:36:23 GMT + encoding: UTF-8 + string: '{"url":"https://localhost:8000/api/v1/projects/0fe82ebf-0abf-4567-b681-38245fd86feb/parameters/eb2b3c55-3767-4bad-85cf-2842decef52b/","id":"eb2b3c55-3767-4bad-85cf-2842decef52b","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null,"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":null,"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/":null,"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/":null},"created_at":"2021-07-14T00:33:06.210102Z","modified_at":"2021-07-14T00:33:06.210134Z"}' + recorded_at: Wed, 14 Jul 2021 00:33:06 GMT - request: method: post - uri: https://localhost:8000/api/v1/projects/d8a29c6e-63fa-4c83-96df-01fa74a38a1b/parameters/ + uri: https://localhost:8000/api/v1/projects/0fe82ebf-0abf-4567-b681-38245fd86feb/parameters/ body: encoding: UTF-8 string: '{"name":"two"}' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 201 @@ -282,13 +284,13 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:25 GMT + - Wed, 14 Jul 2021 00:33:07 GMT Connection: - close Content-Type: - application/json Location: - - https://localhost:8000/api/v1/projects/d8a29c6e-63fa-4c83-96df-01fa74a38a1b/parameters/77a55bcc-ef57-42ae-968e-ef633f967077/ + - https://localhost:8000/api/v1/projects/0fe82ebf-0abf-4567-b681-38245fd86feb/parameters/68faaadc-0083-4af2-a80d-a4c16bce113e/ Vary: - Accept, Cookie, Origin Allow: @@ -302,14 +304,14 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=PrQjiqV2B8b4jdYYGCpyadqEsS4JyfEgMOQ7iVgbcl243FknXKvhSb5JagxV8Pd4; - expires=Tue, 12 Jul 2022 18:36:25 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=0jaut8i6d2uv880s8k2x055ms5ahbaw4; expires=Tue, 27 Jul 2021 18:36:25 + - csrftoken=A0T2zJZSAbuF205R37GuYrUe8xW7dwpAIfIHMXJDHiBSlZOQ4Z2MXsu4r5rbNKtf; + expires=Wed, 13 Jul 2022 00:33:07 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=mhtb814oy5vx4m1sh49mkq4tvb6sy6hu; expires=Wed, 28 Jul 2021 00:33:07 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT - string: '{"url":"https://localhost:8000/api/v1/projects/d8a29c6e-63fa-4c83-96df-01fa74a38a1b/parameters/77a55bcc-ef57-42ae-968e-ef633f967077/","id":"77a55bcc-ef57-42ae-968e-ef633f967077","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null,"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":null,"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/":null,"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/":null},"created_at":"2021-07-13T18:36:24.841375Z","modified_at":"2021-07-13T18:36:24.841407Z"}' - recorded_at: Tue, 13 Jul 2021 18:36:25 GMT + encoding: UTF-8 + string: '{"url":"https://localhost:8000/api/v1/projects/0fe82ebf-0abf-4567-b681-38245fd86feb/parameters/68faaadc-0083-4af2-a80d-a4c16bce113e/","id":"68faaadc-0083-4af2-a80d-a4c16bce113e","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null,"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":null,"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/":null,"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/":null},"created_at":"2021-07-14T00:33:07.624207Z","modified_at":"2021-07-14T00:33:07.624253Z"}' + recorded_at: Wed, 14 Jul 2021 00:33:07 GMT - request: method: get uri: https://localhost:8000/api/v1/environments/ @@ -317,16 +319,16 @@ http_interactions: encoding: US-ASCII string: '' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 200 @@ -335,7 +337,7 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:26 GMT + - Wed, 14 Jul 2021 00:33:09 GMT Connection: - close Content-Type: @@ -353,18 +355,18 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=wjaMLBBkzmc62vBVTvXK0X8qhFStskZNdivLT7wMTgmDSESTRAbkHXa02GA6g528; - expires=Tue, 12 Jul 2022 18:36:26 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=q8afia6wts87ctof8qms1iaymmlkk4w5; expires=Tue, 27 Jul 2021 18:36:26 + - csrftoken=w6n4dsvc6oTVGlwwuzl0ceacwvOaGHpH5pue6iZkzjb9tCacd8CWSgeTEqmbdM81; + expires=Wed, 13 Jul 2022 00:33:09 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=lsthq95qmv7xf0y8jd9hma7d1ypmdpj5; expires=Wed, 28 Jul 2021 00:33:09 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT + encoding: UTF-8 string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","id":"1c03b5c1-7040-49e4-be35-7594be262c11","name":"default","description":"Default environment, base for all environments.","parent":null,"created_at":"2021-07-13T17:57:00.029171Z","modified_at":"2021-07-13T17:57:00.029210Z"},{"url":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","id":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","name":"development","description":"Development deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.048313Z","modified_at":"2021-07-13T17:57:00.048347Z"},{"url":"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/","id":"1eadb281-baa9-4816-8f88-775d0a636f16","name":"production","description":"Production deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.072603Z","modified_at":"2021-07-13T17:57:00.072636Z"},{"url":"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/","id":"f7f81820-f920-467c-9a37-fc4a6ad518fe","name":"staging","description":"Staging deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.061960Z","modified_at":"2021-07-13T17:57:00.061995Z"}]}' - recorded_at: Tue, 13 Jul 2021 18:36:26 GMT + recorded_at: Wed, 14 Jul 2021 00:33:09 GMT - request: method: get uri: https://localhost:8000/api/v1/projects/ @@ -372,16 +374,16 @@ http_interactions: encoding: US-ASCII string: '' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 200 @@ -390,7 +392,7 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:27 GMT + - Wed, 14 Jul 2021 00:33:10 GMT Connection: - close Content-Type: @@ -408,32 +410,32 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=dTrnRP7DOiuMwDAfDAGhXvDmzGprvFKVi03oflBr7o5HZUCVisfb00zr35CnsuW4; - expires=Tue, 12 Jul 2022 18:36:27 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=g6zyvx3uauftkgf608myxu12cnqf9u05; expires=Tue, 27 Jul 2021 18:36:27 + - csrftoken=pxHLJDkt5nNzSVkcWTsvywgtFOowyi41guKimr4EAOz6KNqN32K1EuzjTGOM1JAm; + expires=Wed, 13 Jul 2022 00:33:10 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=h5j7wyg6ciyfrhatzax8py3pif8k6s0z; expires=Wed, 28 Jul 2021 00:33:10 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT + encoding: UTF-8 string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/d8a29c6e-63fa-4c83-96df-01fa74a38a1b/","id":"d8a29c6e-63fa-4c83-96df-01fa74a38a1b","name":"TestProject","description":"","created_at":"2021-07-13T18:36:20.700480Z","modified_at":"2021-07-13T18:36:20.700511Z"}]}' - recorded_at: Tue, 13 Jul 2021 18:36:27 GMT + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/0fe82ebf-0abf-4567-b681-38245fd86feb/","id":"0fe82ebf-0abf-4567-b681-38245fd86feb","name":"TestProject","description":"","created_at":"2021-07-14T00:33:03.674185Z","modified_at":"2021-07-14T00:33:03.674227Z"}]}' + recorded_at: Wed, 14 Jul 2021 00:33:10 GMT - request: method: get - uri: https://localhost:8000/api/v1/projects/d8a29c6e-63fa-4c83-96df-01fa74a38a1b/parameters/?environment=1c03b5c1-7040-49e4-be35-7594be262c11 + uri: https://localhost:8000/api/v1/projects/0fe82ebf-0abf-4567-b681-38245fd86feb/parameters/?environment=1c03b5c1-7040-49e4-be35-7594be262c11 body: encoding: US-ASCII string: '' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 200 @@ -442,7 +444,7 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:29 GMT + - Wed, 14 Jul 2021 00:33:12 GMT Connection: - close Content-Type: @@ -460,12 +462,12 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=E7fzIWPRRD8QDtxDUK7CW74sgQDipU1SjZIFRDTq91ekaxsop1aMpL0LDqXaxy8X; - expires=Tue, 12 Jul 2022 18:36:29 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=y225b245lba7i18v8vvqw9pn8piuixf5; expires=Tue, 27 Jul 2021 18:36:29 + - csrftoken=xXhR1QZSNPDdntqWkd9wqJHpAGoA54SWkkb7b9j3zrt7AP3w48Gm1XBwiwCRPXmz; + expires=Wed, 13 Jul 2022 00:33:12 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=rqqcpaibj7ceri2f49z9h4u07gaq3xsm; expires=Wed, 28 Jul 2021 00:33:12 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/d8a29c6e-63fa-4c83-96df-01fa74a38a1b/parameters/9a656f21-bfb1-4755-b993-973ae10c4f6d/","id":"9a656f21-bfb1-4755-b993-973ae10c4f6d","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null},"created_at":"2021-07-13T18:36:23.206590Z","modified_at":"2021-07-13T18:36:23.206633Z"},{"url":"https://localhost:8000/api/v1/projects/d8a29c6e-63fa-4c83-96df-01fa74a38a1b/parameters/77a55bcc-ef57-42ae-968e-ef633f967077/","id":"77a55bcc-ef57-42ae-968e-ef633f967077","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null},"created_at":"2021-07-13T18:36:24.841375Z","modified_at":"2021-07-13T18:36:24.841407Z"}]}' - recorded_at: Tue, 13 Jul 2021 18:36:29 GMT + encoding: UTF-8 + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/0fe82ebf-0abf-4567-b681-38245fd86feb/parameters/eb2b3c55-3767-4bad-85cf-2842decef52b/","id":"eb2b3c55-3767-4bad-85cf-2842decef52b","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null},"created_at":"2021-07-14T00:33:06.210102Z","modified_at":"2021-07-14T00:33:06.210134Z"},{"url":"https://localhost:8000/api/v1/projects/0fe82ebf-0abf-4567-b681-38245fd86feb/parameters/68faaadc-0083-4af2-a80d-a4c16bce113e/","id":"68faaadc-0083-4af2-a80d-a4c16bce113e","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null},"created_at":"2021-07-14T00:33:07.624207Z","modified_at":"2021-07-14T00:33:07.624253Z"}]}' + recorded_at: Wed, 14 Jul 2021 00:33:12 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/uses_environment_to_get_values.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/uses_environment_to_get_values.yml index 88fe361..d9f1903 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/uses_environment_to_get_values.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/uses_environment_to_get_values.yml @@ -7,16 +7,16 @@ http_interactions: encoding: US-ASCII string: '' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 200 @@ -25,7 +25,7 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:49 GMT + - Wed, 14 Jul 2021 00:33:32 GMT Connection: - close Content-Type: @@ -43,30 +43,32 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=ym6S6J9IggvZLx3tufxZlRKoCn8eqKGZSBniQWCCCz7YWjaOSShC49J91EUDpxeD; - expires=Tue, 12 Jul 2022 18:36:49 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=8wt64lzvzpzjz4xh3tbdq6qitcqzy33z; expires=Tue, 27 Jul 2021 18:36:49 + - csrftoken=k1ZpoOMYGVrKrZr2mVhe08DAwhf6DUE9NQsei98yahNYpt4wAcoDIYRNl9AAlZhL; + expires=Wed, 13 Jul 2022 00:33:32 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=2bsijm8scgs5439ywwjcdgdvju9h137l; expires=Wed, 28 Jul 2021 00:33:32 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT + encoding: UTF-8 string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/","id":"81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e","name":"TestProject","description":"","created_at":"2021-07-13T18:36:33.788226Z","modified_at":"2021-07-13T18:36:33.788264Z"}]}' - recorded_at: Tue, 13 Jul 2021 18:36:49 GMT + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/","id":"f76f1696-252c-4289-8fdc-e611579e4dba","name":"TestProject","description":"","created_at":"2021-07-14T00:33:16.808298Z","modified_at":"2021-07-14T00:33:16.808341Z"}]}' + recorded_at: Wed, 14 Jul 2021 00:33:32 GMT - request: method: delete - uri: https://localhost:8000/api/v1/projects/81d6cff0-dbf7-4c2f-bfd2-bad57d2b3a3e/ + uri: https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/ body: encoding: US-ASCII string: '' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Accept: + - "*/*" response: status: code: 204 @@ -75,7 +77,7 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:51 GMT + - Wed, 14 Jul 2021 00:33:34 GMT Connection: - close Vary: @@ -91,14 +93,14 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=fNHNmsI96JgzF4HCZCsk8wqjARRS3gQnG0Uf1v3yDj8UYctZcqxxi4f36gtuUGH0; - expires=Tue, 12 Jul 2022 18:36:51 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=sxlyerya8gp7mc6qp1ecax4usljji7vl; expires=Tue, 27 Jul 2021 18:36:51 + - csrftoken=3gYlHDn3sErf6EGpsChaWEAtkVErUgWZ5mjprCGQxoeCuVtVaCXg9oZi04xyoJ1R; + expires=Wed, 13 Jul 2022 00:33:34 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=x32j6jo3x7kwo9pj1bareu9knfk7f5wa; expires=Wed, 28 Jul 2021 00:33:34 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT + encoding: UTF-8 string: '' - recorded_at: Tue, 13 Jul 2021 18:36:51 GMT + recorded_at: Wed, 14 Jul 2021 00:33:34 GMT - request: method: post uri: https://localhost:8000/api/v1/projects/ @@ -106,16 +108,16 @@ http_interactions: encoding: UTF-8 string: '{"name":"TestProject"}' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 201 @@ -124,13 +126,13 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:53 GMT + - Wed, 14 Jul 2021 00:33:35 GMT Connection: - close Content-Type: - application/json Location: - - https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/ + - https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/ Vary: - Accept, Cookie, Origin Allow: @@ -144,14 +146,14 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=AhQL2tTFl1yZosGibyTZiKmXpN1BpW4seWi6gvp1Lx22Qp7C8q4j9YyEp0xqjxDg; - expires=Tue, 12 Jul 2022 18:36:53 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=v4ifipbywrtu14hbld8mh2lmgue0e9eq; expires=Tue, 27 Jul 2021 18:36:53 + - csrftoken=8QPXPiV6KY8NhNUe9fGP7DqJKfOPjFfqVZM5vVVRUJKhc5SYDLohuH907Q2R9PJ0; + expires=Wed, 13 Jul 2022 00:33:35 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=fefosfk6ssw43fv0uyxi4gzknkk9r9do; expires=Wed, 28 Jul 2021 00:33:35 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT - string: '{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/","id":"09757741-9659-4b43-bcbd-26317dfa2bff","name":"TestProject","description":"","created_at":"2021-07-13T18:36:53.178046Z","modified_at":"2021-07-13T18:36:53.178104Z"}' - recorded_at: Tue, 13 Jul 2021 18:36:53 GMT + encoding: UTF-8 + string: '{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/","id":"cfc4437a-d76f-4981-a9c4-06a212fc5933","name":"TestProject","description":"","created_at":"2021-07-14T00:33:35.954746Z","modified_at":"2021-07-14T00:33:35.954777Z"}' + recorded_at: Wed, 14 Jul 2021 00:33:35 GMT - request: method: get uri: https://localhost:8000/api/v1/projects/ @@ -159,16 +161,16 @@ http_interactions: encoding: US-ASCII string: '' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 200 @@ -177,7 +179,7 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:54 GMT + - Wed, 14 Jul 2021 00:33:37 GMT Connection: - close Content-Type: @@ -195,32 +197,32 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=CfzjDv6N3CIsyS4JLWRaMeV3Szx8evXf8Gq4QUDMJCXabBS43iMZiQCQxiDFMsUB; - expires=Tue, 12 Jul 2022 18:36:54 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=4797ioony5koik47v2xl89uon9rq18xm; expires=Tue, 27 Jul 2021 18:36:54 + - csrftoken=8Ukrj8NIfZkhL3xrNPqNFnLkaDZ6mfii3GuXjbXbKpYAWvRw4a84p3nWLqdqxAO2; + expires=Wed, 13 Jul 2022 00:33:37 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=mm37sg06wu3d22t3akicxs45cyrzsskw; expires=Wed, 28 Jul 2021 00:33:37 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT + encoding: UTF-8 string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/","id":"09757741-9659-4b43-bcbd-26317dfa2bff","name":"TestProject","description":"","created_at":"2021-07-13T18:36:53.178046Z","modified_at":"2021-07-13T18:36:53.178104Z"}]}' - recorded_at: Tue, 13 Jul 2021 18:36:54 GMT + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/","id":"cfc4437a-d76f-4981-a9c4-06a212fc5933","name":"TestProject","description":"","created_at":"2021-07-14T00:33:35.954746Z","modified_at":"2021-07-14T00:33:35.954777Z"}]}' + recorded_at: Wed, 14 Jul 2021 00:33:37 GMT - request: method: post - uri: https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/ + uri: https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ body: encoding: UTF-8 string: '{"name":"one"}' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 201 @@ -229,13 +231,13 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:56 GMT + - Wed, 14 Jul 2021 00:33:39 GMT Connection: - close Content-Type: - application/json Location: - - https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/27d9671b-8592-4be1-9e4c-5fa23ec8146e/ + - https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/006cd384-dbcc-44fa-9acc-469db44176d0/ Vary: - Accept, Cookie, Origin Allow: @@ -249,31 +251,31 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=UXD8LEIAIc3HKfIQIRELRR6uSopeD7wz8ee413O0O0lky8rQg7QYURonA0YI2SzV; - expires=Tue, 12 Jul 2022 18:36:56 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=447rmo20k1mmbscoildprcx2fb1xbzzf; expires=Tue, 27 Jul 2021 18:36:56 + - csrftoken=CYeD3rKHKKpK9tygFQwKWqBeRY01Vl17CRBz1dYsJclrV8eHSrWBmrrf9zdcmSH7; + expires=Wed, 13 Jul 2022 00:33:39 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=5k9guc629mejp96z2kl1mwsewtpgzvrk; expires=Wed, 28 Jul 2021 00:33:39 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT - string: '{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/27d9671b-8592-4be1-9e4c-5fa23ec8146e/","id":"27d9671b-8592-4be1-9e4c-5fa23ec8146e","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null,"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":null,"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/":null,"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/":null},"created_at":"2021-07-13T18:36:56.478449Z","modified_at":"2021-07-13T18:36:56.478488Z"}' - recorded_at: Tue, 13 Jul 2021 18:36:56 GMT + encoding: UTF-8 + string: '{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/006cd384-dbcc-44fa-9acc-469db44176d0/","id":"006cd384-dbcc-44fa-9acc-469db44176d0","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null,"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":null,"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/":null,"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/":null},"created_at":"2021-07-14T00:33:38.816864Z","modified_at":"2021-07-14T00:33:38.816984Z"}' + recorded_at: Wed, 14 Jul 2021 00:33:39 GMT - request: method: post - uri: https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/ + uri: https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ body: encoding: UTF-8 string: '{"name":"two"}' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 201 @@ -282,13 +284,13 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:58 GMT + - Wed, 14 Jul 2021 00:33:43 GMT Connection: - close Content-Type: - application/json Location: - - https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/be0393fd-6872-4627-9dc4-a05511d3113e/ + - https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe/ Vary: - Accept, Cookie, Origin Allow: @@ -302,14 +304,14 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=FxWqlHILe2FSfqecp4yGwVsCcSoqPYuHyf51I4F8tQL4zUvbvbVfzbwVzsxg2bok; - expires=Tue, 12 Jul 2022 18:36:58 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=xxgycpagv2w3h42vu9fgobx5vc1coie7; expires=Tue, 27 Jul 2021 18:36:58 + - csrftoken=bQ9AUeB71IF19UwkkUgt7Rd3GMhMvJ54nFYRlDjypR8XwScF6JLklgSjUmC8k1yT; + expires=Wed, 13 Jul 2022 00:33:43 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=2bmfucz9j43eg8am96vxjrnnbcxge4sb; expires=Wed, 28 Jul 2021 00:33:43 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT - string: '{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/be0393fd-6872-4627-9dc4-a05511d3113e/","id":"be0393fd-6872-4627-9dc4-a05511d3113e","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null,"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":null,"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/":null,"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/":null},"created_at":"2021-07-13T18:36:58.139999Z","modified_at":"2021-07-13T18:36:58.140034Z"}' - recorded_at: Tue, 13 Jul 2021 18:36:58 GMT + encoding: UTF-8 + string: '{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe/","id":"ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null,"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":null,"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/":null,"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/":null},"created_at":"2021-07-14T00:33:43.331042Z","modified_at":"2021-07-14T00:33:43.331084Z"}' + recorded_at: Wed, 14 Jul 2021 00:33:43 GMT - request: method: get uri: https://localhost:8000/api/v1/environments/ @@ -317,16 +319,16 @@ http_interactions: encoding: US-ASCII string: '' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 200 @@ -335,7 +337,7 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:59 GMT + - Wed, 14 Jul 2021 00:33:45 GMT Connection: - close Content-Type: @@ -353,35 +355,35 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=K2XaJ2kcIZz8jLqGySbjzatqm38CTNW3C1MCXOfJD1ReKHpoNvsmcoelKWm74DPd; - expires=Tue, 12 Jul 2022 18:36:59 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=ly9iey9olvb23u0npcl01yfypcifmfiz; expires=Tue, 27 Jul 2021 18:36:59 + - csrftoken=stDzq6D0t9z6LhHQRkldvzX4MPRYiHnWoMKbGxoKbEvvOflak20EeMIpkHH0r5ou; + expires=Wed, 13 Jul 2022 00:33:45 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=n7s26j3tiy0dgzlzkglngxmm2uyssiud; expires=Wed, 28 Jul 2021 00:33:45 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT + encoding: UTF-8 string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","id":"1c03b5c1-7040-49e4-be35-7594be262c11","name":"default","description":"Default environment, base for all environments.","parent":null,"created_at":"2021-07-13T17:57:00.029171Z","modified_at":"2021-07-13T17:57:00.029210Z"},{"url":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","id":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","name":"development","description":"Development deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.048313Z","modified_at":"2021-07-13T17:57:00.048347Z"},{"url":"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/","id":"1eadb281-baa9-4816-8f88-775d0a636f16","name":"production","description":"Production deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.072603Z","modified_at":"2021-07-13T17:57:00.072636Z"},{"url":"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/","id":"f7f81820-f920-467c-9a37-fc4a6ad518fe","name":"staging","description":"Staging deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.061960Z","modified_at":"2021-07-13T17:57:00.061995Z"}]}' - recorded_at: Tue, 13 Jul 2021 18:36:59 GMT + recorded_at: Wed, 14 Jul 2021 00:33:45 GMT - request: method: post - uri: https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/27d9671b-8592-4be1-9e4c-5fa23ec8146e/values/ + uri: https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/006cd384-dbcc-44fa-9acc-469db44176d0/values/ body: encoding: UTF-8 string: '{"environment":"1c03b5c1-7040-49e4-be35-7594be262c11","dynamic":false,"static_value":"defaultone"}' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 201 @@ -390,13 +392,13 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:37:00 GMT + - Wed, 14 Jul 2021 00:33:47 GMT Connection: - close Content-Type: - application/json Location: - - https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/27d9671b-8592-4be1-9e4c-5fa23ec8146e/values/3fcb51dd-c660-4750-a3a4-f104ea33d2f8/ + - https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/006cd384-dbcc-44fa-9acc-469db44176d0/values/97cffdc3-8f65-492f-9ad7-1bd43a4f5b85/ Vary: - Accept, Cookie, Origin Allow: @@ -410,31 +412,31 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=EnH75PmxS6IaSqlwCSjpjs4cM0NJSZeRJdjypl2ZcDqCmny2WPkYyWSqEzxlpjlX; - expires=Tue, 12 Jul 2022 18:37:00 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=7tindqvw8vky7851hjv9g9na47tyiehp; expires=Tue, 27 Jul 2021 18:37:00 + - csrftoken=jbaFHLKZgOQKrfaBIhWivCCOcCH02ImFJqaxjgXclEI5rZTyttr15xmkvSJ1sjgA; + expires=Wed, 13 Jul 2022 00:33:47 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=8r3clvn6yrtce2ahsm1ps8ucnrp8r57x; expires=Wed, 28 Jul 2021 00:33:47 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT - string: '{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/27d9671b-8592-4be1-9e4c-5fa23ec8146e/values/3fcb51dd-c660-4750-a3a4-f104ea33d2f8/","id":"3fcb51dd-c660-4750-a3a4-f104ea33d2f8","environment":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","parameter":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/27d9671b-8592-4be1-9e4c-5fa23ec8146e/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"defaultone","value":"defaultone","created_at":"2021-07-13T18:37:00.902797Z","modified_at":"2021-07-13T18:37:00.902831Z"}' - recorded_at: Tue, 13 Jul 2021 18:37:00 GMT + encoding: UTF-8 + string: '{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/006cd384-dbcc-44fa-9acc-469db44176d0/values/97cffdc3-8f65-492f-9ad7-1bd43a4f5b85/","id":"97cffdc3-8f65-492f-9ad7-1bd43a4f5b85","environment":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","parameter":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/006cd384-dbcc-44fa-9acc-469db44176d0/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"defaultone","value":"defaultone","created_at":"2021-07-14T00:33:47.170890Z","modified_at":"2021-07-14T00:33:47.170927Z"}' + recorded_at: Wed, 14 Jul 2021 00:33:47 GMT - request: method: post - uri: https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/27d9671b-8592-4be1-9e4c-5fa23ec8146e/values/ + uri: https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/006cd384-dbcc-44fa-9acc-469db44176d0/values/ body: encoding: UTF-8 string: '{"environment":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","dynamic":false,"static_value":"developmentone"}' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 201 @@ -443,13 +445,13 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:37:02 GMT + - Wed, 14 Jul 2021 00:33:48 GMT Connection: - close Content-Type: - application/json Location: - - https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/27d9671b-8592-4be1-9e4c-5fa23ec8146e/values/3b7c8e3b-af09-4e10-a31c-fce43955ebbe/ + - https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/006cd384-dbcc-44fa-9acc-469db44176d0/values/513e212f-592b-4fd1-ae05-6fed068172b0/ Vary: - Accept, Cookie, Origin Allow: @@ -463,31 +465,31 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=uyPzeCdhXN9WZdI4Pa8ccCVG4QGNEAWV2gXMu3DLK1IKzdyBEyAERlbdxWEVhHBz; - expires=Tue, 12 Jul 2022 18:37:02 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=27gsuuri8c5frkz7rc05g4s3id0zscqw; expires=Tue, 27 Jul 2021 18:37:02 + - csrftoken=et9LV2q5t44uPvHSZ89s8xjBMkgZQtX2pP9SatUjBPaePAUzO9lGO7UKTLd8rsOx; + expires=Wed, 13 Jul 2022 00:33:48 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=4vvwiyh0stmffdzvtmlckzct1h661cyx; expires=Wed, 28 Jul 2021 00:33:48 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT - string: '{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/27d9671b-8592-4be1-9e4c-5fa23ec8146e/values/3b7c8e3b-af09-4e10-a31c-fce43955ebbe/","id":"3b7c8e3b-af09-4e10-a31c-fce43955ebbe","environment":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","parameter":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/27d9671b-8592-4be1-9e4c-5fa23ec8146e/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"developmentone","value":"developmentone","created_at":"2021-07-13T18:37:02.678854Z","modified_at":"2021-07-13T18:37:02.678897Z"}' - recorded_at: Tue, 13 Jul 2021 18:37:02 GMT + encoding: UTF-8 + string: '{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/006cd384-dbcc-44fa-9acc-469db44176d0/values/513e212f-592b-4fd1-ae05-6fed068172b0/","id":"513e212f-592b-4fd1-ae05-6fed068172b0","environment":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","parameter":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/006cd384-dbcc-44fa-9acc-469db44176d0/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"developmentone","value":"developmentone","created_at":"2021-07-14T00:33:48.323820Z","modified_at":"2021-07-14T00:33:48.323855Z"}' + recorded_at: Wed, 14 Jul 2021 00:33:48 GMT - request: method: post - uri: https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/be0393fd-6872-4627-9dc4-a05511d3113e/values/ + uri: https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe/values/ body: encoding: UTF-8 string: '{"environment":"1c03b5c1-7040-49e4-be35-7594be262c11","dynamic":false,"static_value":"defaulttwo"}' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 201 @@ -496,13 +498,13 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:37:04 GMT + - Wed, 14 Jul 2021 00:33:49 GMT Connection: - close Content-Type: - application/json Location: - - https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/be0393fd-6872-4627-9dc4-a05511d3113e/values/31d8b68c-5d5d-4306-9e38-533ad6a5d3ba/ + - https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe/values/26e60318-221c-43d8-934f-ed53de34f1cd/ Vary: - Accept, Cookie, Origin Allow: @@ -516,31 +518,31 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=3wGs7qUd40he61s1LqzzmESkKygA10XgueAMetxrLto94uEZG4tH7v8dydfDXzDT; - expires=Tue, 12 Jul 2022 18:37:04 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=8nur40134hk5vxs1bvzpj8nnpmi6yft7; expires=Tue, 27 Jul 2021 18:37:04 + - csrftoken=kOoIto0hpMQRhujiROY9wmcVDreIdBzXNPzZxFCmcQGFAfGN4cGizMaCRDZWVAxz; + expires=Wed, 13 Jul 2022 00:33:49 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=6jcnmcf9mzitc7ssy776apjhnqtplyit; expires=Wed, 28 Jul 2021 00:33:49 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT - string: '{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/be0393fd-6872-4627-9dc4-a05511d3113e/values/31d8b68c-5d5d-4306-9e38-533ad6a5d3ba/","id":"31d8b68c-5d5d-4306-9e38-533ad6a5d3ba","environment":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","parameter":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/be0393fd-6872-4627-9dc4-a05511d3113e/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"defaulttwo","value":"defaulttwo","created_at":"2021-07-13T18:37:04.932523Z","modified_at":"2021-07-13T18:37:04.932547Z"}' - recorded_at: Tue, 13 Jul 2021 18:37:04 GMT + encoding: UTF-8 + string: '{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe/values/26e60318-221c-43d8-934f-ed53de34f1cd/","id":"26e60318-221c-43d8-934f-ed53de34f1cd","environment":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","parameter":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"defaulttwo","value":"defaulttwo","created_at":"2021-07-14T00:33:49.694778Z","modified_at":"2021-07-14T00:33:49.694823Z"}' + recorded_at: Wed, 14 Jul 2021 00:33:49 GMT - request: method: post - uri: https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/be0393fd-6872-4627-9dc4-a05511d3113e/values/ + uri: https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe/values/ body: encoding: UTF-8 string: '{"environment":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","dynamic":false,"static_value":"developmenttwo"}' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 201 @@ -549,13 +551,13 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:37:06 GMT + - Wed, 14 Jul 2021 00:33:50 GMT Connection: - close Content-Type: - application/json Location: - - https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/be0393fd-6872-4627-9dc4-a05511d3113e/values/45bf2352-f61a-4cda-a354-9409e0172516/ + - https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe/values/0c0c8ee6-107f-4545-9257-d8c0f3dd5f26/ Vary: - Accept, Cookie, Origin Allow: @@ -569,14 +571,14 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=KQxZjOqNkW5JsfGyqEswUnGyZ2jzKJKN9ESn2leSkpTW05xBn0UyO1Q3wZRao5l8; - expires=Tue, 12 Jul 2022 18:37:06 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=7lmfbfabth55gr801xbmxfoq84pnko4a; expires=Tue, 27 Jul 2021 18:37:06 + - csrftoken=fnxtDCYG6lkG5uP57sDrbYyvkPgABNclCdoj0Rh753HVsPDR0h67IegdqbGIko2z; + expires=Wed, 13 Jul 2022 00:33:50 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=b7afrd58v2iuw1vaq6sagln25j0m8mjv; expires=Wed, 28 Jul 2021 00:33:50 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT - string: '{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/be0393fd-6872-4627-9dc4-a05511d3113e/values/45bf2352-f61a-4cda-a354-9409e0172516/","id":"45bf2352-f61a-4cda-a354-9409e0172516","environment":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","parameter":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/be0393fd-6872-4627-9dc4-a05511d3113e/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"developmenttwo","value":"developmenttwo","created_at":"2021-07-13T18:37:06.475329Z","modified_at":"2021-07-13T18:37:06.475367Z"}' - recorded_at: Tue, 13 Jul 2021 18:37:06 GMT + encoding: UTF-8 + string: '{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe/values/0c0c8ee6-107f-4545-9257-d8c0f3dd5f26/","id":"0c0c8ee6-107f-4545-9257-d8c0f3dd5f26","environment":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","parameter":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"developmenttwo","value":"developmenttwo","created_at":"2021-07-14T00:33:50.950803Z","modified_at":"2021-07-14T00:33:50.950848Z"}' + recorded_at: Wed, 14 Jul 2021 00:33:50 GMT - request: method: get uri: https://localhost:8000/api/v1/projects/ @@ -584,16 +586,16 @@ http_interactions: encoding: US-ASCII string: '' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 200 @@ -602,7 +604,7 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:37:07 GMT + - Wed, 14 Jul 2021 00:33:52 GMT Connection: - close Content-Type: @@ -620,32 +622,32 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=eEgXuMxUjKdJRANaPENGhPE79zqprUTmd5Ribvfo51d8UGmWXYGXKJs2WEmjW8WC; - expires=Tue, 12 Jul 2022 18:37:07 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=nm848xk9fqvw56fihdowd2m6f2usvork; expires=Tue, 27 Jul 2021 18:37:07 + - csrftoken=9QL6spA1DpPsgIwKA5GF6VMZDSs39Z2ZCpzBvOGpzrUEEOtnIHEi4Jz9yaikYd6T; + expires=Wed, 13 Jul 2022 00:33:52 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=8x9jirw0xnkdhco07rcx0vgrjfvblfsp; expires=Wed, 28 Jul 2021 00:33:52 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT + encoding: UTF-8 string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/","id":"09757741-9659-4b43-bcbd-26317dfa2bff","name":"TestProject","description":"","created_at":"2021-07-13T18:36:53.178046Z","modified_at":"2021-07-13T18:36:53.178104Z"}]}' - recorded_at: Tue, 13 Jul 2021 18:37:07 GMT + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/","id":"cfc4437a-d76f-4981-a9c4-06a212fc5933","name":"TestProject","description":"","created_at":"2021-07-14T00:33:35.954746Z","modified_at":"2021-07-14T00:33:35.954777Z"}]}' + recorded_at: Wed, 14 Jul 2021 00:33:52 GMT - request: method: get - uri: https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/?environment=1c03b5c1-7040-49e4-be35-7594be262c11 + uri: https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/?environment=1c03b5c1-7040-49e4-be35-7594be262c11 body: encoding: US-ASCII string: '' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 200 @@ -654,7 +656,7 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:37:09 GMT + - Wed, 14 Jul 2021 00:33:53 GMT Connection: - close Content-Type: @@ -672,14 +674,14 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=7PRtSstnzMhHwfoJvQdNfWmuKZTSDlRYiJ3uCOibOKHXlUq5uBuO831ebaQ181Xz; - expires=Tue, 12 Jul 2022 18:37:09 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=989h9dmuzevbbfwu7j79yvxjhv8j0k50; expires=Tue, 27 Jul 2021 18:37:09 + - csrftoken=7Te7KxtJR2IlPCfXUlpY8RYkXwsAqzqmcIr4paANFalILbjixV6lTZFHGIlcSmON; + expires=Wed, 13 Jul 2022 00:33:53 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=pk4j18ku4bguneh1ram8j6ay9nu0g3u0; expires=Wed, 28 Jul 2021 00:33:53 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/27d9671b-8592-4be1-9e4c-5fa23ec8146e/","id":"27d9671b-8592-4be1-9e4c-5fa23ec8146e","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/27d9671b-8592-4be1-9e4c-5fa23ec8146e/values/3fcb51dd-c660-4750-a3a4-f104ea33d2f8/","id":"3fcb51dd-c660-4750-a3a4-f104ea33d2f8","environment":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","parameter":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/27d9671b-8592-4be1-9e4c-5fa23ec8146e/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"defaultone","value":"defaultone","created_at":"2021-07-13T18:37:00.902797Z","modified_at":"2021-07-13T18:37:00.902831Z"}},"created_at":"2021-07-13T18:36:56.478449Z","modified_at":"2021-07-13T18:36:56.478488Z"},{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/be0393fd-6872-4627-9dc4-a05511d3113e/","id":"be0393fd-6872-4627-9dc4-a05511d3113e","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/be0393fd-6872-4627-9dc4-a05511d3113e/values/31d8b68c-5d5d-4306-9e38-533ad6a5d3ba/","id":"31d8b68c-5d5d-4306-9e38-533ad6a5d3ba","environment":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","parameter":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/be0393fd-6872-4627-9dc4-a05511d3113e/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"defaulttwo","value":"defaulttwo","created_at":"2021-07-13T18:37:04.932523Z","modified_at":"2021-07-13T18:37:04.932547Z"}},"created_at":"2021-07-13T18:36:58.139999Z","modified_at":"2021-07-13T18:36:58.140034Z"}]}' - recorded_at: Tue, 13 Jul 2021 18:37:09 GMT + encoding: UTF-8 + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/006cd384-dbcc-44fa-9acc-469db44176d0/","id":"006cd384-dbcc-44fa-9acc-469db44176d0","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/006cd384-dbcc-44fa-9acc-469db44176d0/values/97cffdc3-8f65-492f-9ad7-1bd43a4f5b85/","id":"97cffdc3-8f65-492f-9ad7-1bd43a4f5b85","environment":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","parameter":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/006cd384-dbcc-44fa-9acc-469db44176d0/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"defaultone","value":"defaultone","created_at":"2021-07-14T00:33:47.170890Z","modified_at":"2021-07-14T00:33:47.170927Z"}},"created_at":"2021-07-14T00:33:38.816864Z","modified_at":"2021-07-14T00:33:38.816984Z"},{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe/","id":"ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe/values/26e60318-221c-43d8-934f-ed53de34f1cd/","id":"26e60318-221c-43d8-934f-ed53de34f1cd","environment":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","parameter":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"defaulttwo","value":"defaulttwo","created_at":"2021-07-14T00:33:49.694778Z","modified_at":"2021-07-14T00:33:49.694823Z"}},"created_at":"2021-07-14T00:33:43.331042Z","modified_at":"2021-07-14T00:33:43.331084Z"}]}' + recorded_at: Wed, 14 Jul 2021 00:33:53 GMT - request: method: get uri: https://localhost:8000/api/v1/projects/ @@ -687,16 +689,16 @@ http_interactions: encoding: US-ASCII string: '' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 200 @@ -705,7 +707,7 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:37:10 GMT + - Wed, 14 Jul 2021 00:33:54 GMT Connection: - close Content-Type: @@ -723,32 +725,32 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=VK8YozmzHi53jfHx2PO5TXJwy75BGcECQ4WkTZxZaYABlxXYcKP5hY0yjJrQ6R7W; - expires=Tue, 12 Jul 2022 18:37:10 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=heyamnhleiatfjabsvzh7qt09gzyxpmn; expires=Tue, 27 Jul 2021 18:37:10 + - csrftoken=QLzp2JeKVRqxY2RuierGPEBw9WpvzvjeInRJYJnqo4LRvyWi2gIn3LNNKyWRHl6F; + expires=Wed, 13 Jul 2022 00:33:54 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=5wy0fx4kl4pxipfwozeip1z883etsd9z; expires=Wed, 28 Jul 2021 00:33:54 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT + encoding: UTF-8 string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/","id":"09757741-9659-4b43-bcbd-26317dfa2bff","name":"TestProject","description":"","created_at":"2021-07-13T18:36:53.178046Z","modified_at":"2021-07-13T18:36:53.178104Z"}]}' - recorded_at: Tue, 13 Jul 2021 18:37:10 GMT + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/","id":"cfc4437a-d76f-4981-a9c4-06a212fc5933","name":"TestProject","description":"","created_at":"2021-07-14T00:33:35.954746Z","modified_at":"2021-07-14T00:33:35.954777Z"}]}' + recorded_at: Wed, 14 Jul 2021 00:33:54 GMT - request: method: get - uri: https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/?environment=30b123cd-288c-4fd8-b5cc-607086c8cb4f + uri: https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/?environment=30b123cd-288c-4fd8-b5cc-607086c8cb4f body: encoding: US-ASCII string: '' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 200 @@ -757,7 +759,7 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:37:12 GMT + - Wed, 14 Jul 2021 00:33:56 GMT Connection: - close Content-Type: @@ -775,12 +777,12 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=qHt3LqMMe1qKUbvIEUjjbVDOXkV9wrOpmfDuxWxWvpAciKjpyrmFVWAN8clhPe3l; - expires=Tue, 12 Jul 2022 18:37:12 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=ptzo5d6pj9aj3ti8sjhe0xfvva9ostqb; expires=Tue, 27 Jul 2021 18:37:12 + - csrftoken=pS2nDGxE8MZEcp2vPkYkRUVhHuVDy9CSzUSOWRvoxJ3bV6briQ6gbr4cPNckQ3uP; + expires=Wed, 13 Jul 2022 00:33:56 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=va82j4htmccbda6e21v86auiia4cg4za; expires=Wed, 28 Jul 2021 00:33:56 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/27d9671b-8592-4be1-9e4c-5fa23ec8146e/","id":"27d9671b-8592-4be1-9e4c-5fa23ec8146e","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/27d9671b-8592-4be1-9e4c-5fa23ec8146e/values/3b7c8e3b-af09-4e10-a31c-fce43955ebbe/","id":"3b7c8e3b-af09-4e10-a31c-fce43955ebbe","environment":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","parameter":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/27d9671b-8592-4be1-9e4c-5fa23ec8146e/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"developmentone","value":"developmentone","created_at":"2021-07-13T18:37:02.678854Z","modified_at":"2021-07-13T18:37:02.678897Z"}},"created_at":"2021-07-13T18:36:56.478449Z","modified_at":"2021-07-13T18:36:56.478488Z"},{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/be0393fd-6872-4627-9dc4-a05511d3113e/","id":"be0393fd-6872-4627-9dc4-a05511d3113e","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/be0393fd-6872-4627-9dc4-a05511d3113e/values/45bf2352-f61a-4cda-a354-9409e0172516/","id":"45bf2352-f61a-4cda-a354-9409e0172516","environment":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","parameter":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/parameters/be0393fd-6872-4627-9dc4-a05511d3113e/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"developmenttwo","value":"developmenttwo","created_at":"2021-07-13T18:37:06.475329Z","modified_at":"2021-07-13T18:37:06.475367Z"}},"created_at":"2021-07-13T18:36:58.139999Z","modified_at":"2021-07-13T18:36:58.140034Z"}]}' - recorded_at: Tue, 13 Jul 2021 18:37:12 GMT + encoding: UTF-8 + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/006cd384-dbcc-44fa-9acc-469db44176d0/","id":"006cd384-dbcc-44fa-9acc-469db44176d0","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/006cd384-dbcc-44fa-9acc-469db44176d0/values/513e212f-592b-4fd1-ae05-6fed068172b0/","id":"513e212f-592b-4fd1-ae05-6fed068172b0","environment":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","parameter":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/006cd384-dbcc-44fa-9acc-469db44176d0/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"developmentone","value":"developmentone","created_at":"2021-07-14T00:33:48.323820Z","modified_at":"2021-07-14T00:33:48.323855Z"}},"created_at":"2021-07-14T00:33:38.816864Z","modified_at":"2021-07-14T00:33:38.816984Z"},{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe/","id":"ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe/values/0c0c8ee6-107f-4545-9257-d8c0f3dd5f26/","id":"0c0c8ee6-107f-4545-9257-d8c0f3dd5f26","environment":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","parameter":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"developmenttwo","value":"developmenttwo","created_at":"2021-07-14T00:33:50.950803Z","modified_at":"2021-07-14T00:33:50.950848Z"}},"created_at":"2021-07-14T00:33:43.331042Z","modified_at":"2021-07-14T00:33:43.331084Z"}]}' + recorded_at: Wed, 14 Jul 2021 00:33:56 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_projects/doesn_t_memoize_projects_.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_projects/doesn_t_memoize_projects_.yml index 57fdfd8..c786db4 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_projects/doesn_t_memoize_projects_.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_projects/doesn_t_memoize_projects_.yml @@ -7,16 +7,16 @@ http_interactions: encoding: US-ASCII string: '' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 200 @@ -25,7 +25,7 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:11 GMT + - Wed, 14 Jul 2021 00:32:53 GMT Connection: - close Content-Type: @@ -43,15 +43,15 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=get1BpyAQEKfyhtUMV08KVA3224oPGPMOk7v2XM9y5UcX9XY4rgMdIx9xj53M7gI; - expires=Tue, 12 Jul 2022 18:36:11 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=pnjdegfsvusbdd91bple89skz2xa4hmn; expires=Tue, 27 Jul 2021 18:36:11 + - csrftoken=ch0Bl8Ex1lAKstIdz4GYyYcEmAoY9RaHu3f9fawUx2s2UW3a9XVYuniiyzbqReKa; + expires=Wed, 13 Jul 2022 00:32:53 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=14dlxj1wjqsb43t3goom8kxn0cu2as4n; expires=Wed, 28 Jul 2021 00:32:53 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT + encoding: UTF-8 string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/ac8ab123-6bd9-4d2c-8cf8-d58a8dcb7ac7/","id":"ac8ab123-6bd9-4d2c-8cf8-d58a8dcb7ac7","name":"TestProject","description":"","created_at":"2021-07-13T18:30:21.976094Z","modified_at":"2021-07-13T18:30:21.976134Z"}]}' - recorded_at: Tue, 13 Jul 2021 18:36:11 GMT + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/","id":"09757741-9659-4b43-bcbd-26317dfa2bff","name":"TestProject","description":"","created_at":"2021-07-13T18:36:53.178046Z","modified_at":"2021-07-13T18:36:53.178104Z"}]}' + recorded_at: Wed, 14 Jul 2021 00:32:53 GMT - request: method: get uri: https://localhost:8000/api/v1/projects/ @@ -59,16 +59,16 @@ http_interactions: encoding: US-ASCII string: '' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 200 @@ -77,7 +77,7 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:13 GMT + - Wed, 14 Jul 2021 00:32:55 GMT Connection: - close Content-Type: @@ -95,15 +95,15 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=wAB1IEmnkH0lACC31ydoSz7zhNL7mjaqtCyjeSy386pCKVJuTGN6ztWOaTsl1VGb; - expires=Tue, 12 Jul 2022 18:36:13 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=k4nzky3lzz3awk09fn18xeezzcxvm2l9; expires=Tue, 27 Jul 2021 18:36:13 + - csrftoken=CHig2DCFyFXKSRX9sBFaFMAGKTCmlGR9vnkiAn0hBuu2wtGssU1ktCT9tAZo9BFQ; + expires=Wed, 13 Jul 2022 00:32:55 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=k2w7iby6yjbk4cqd4tlyw815lpnqf28s; expires=Wed, 28 Jul 2021 00:32:55 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT + encoding: UTF-8 string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/ac8ab123-6bd9-4d2c-8cf8-d58a8dcb7ac7/","id":"ac8ab123-6bd9-4d2c-8cf8-d58a8dcb7ac7","name":"TestProject","description":"","created_at":"2021-07-13T18:30:21.976094Z","modified_at":"2021-07-13T18:30:21.976134Z"}]}' - recorded_at: Tue, 13 Jul 2021 18:36:13 GMT + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/","id":"09757741-9659-4b43-bcbd-26317dfa2bff","name":"TestProject","description":"","created_at":"2021-07-13T18:36:53.178046Z","modified_at":"2021-07-13T18:36:53.178104Z"}]}' + recorded_at: Wed, 14 Jul 2021 00:32:55 GMT - request: method: get uri: https://localhost:8000/api/v1/projects/ @@ -111,16 +111,16 @@ http_interactions: encoding: US-ASCII string: '' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 200 @@ -129,7 +129,7 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:14 GMT + - Wed, 14 Jul 2021 00:32:57 GMT Connection: - close Content-Type: @@ -147,15 +147,15 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=SFVgaj1mMguvoNsnDxmKZpcPUu7vBOtaiRCAgKuHYDzvmdSzSUEMhzpgZhwIkoqY; - expires=Tue, 12 Jul 2022 18:36:14 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=fw3ew5fuajxxrf7xbz7trlzrrasekcpf; expires=Tue, 27 Jul 2021 18:36:14 + - csrftoken=cMcKBCveIvd58Uve90TPNaw5ibGrGeidsBCg20xw8mnRabSZmUWGzwvM4bggZb5o; + expires=Wed, 13 Jul 2022 00:32:57 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=ik4qks5ghq9tfbrr3b0um8w6ykfjccqq; expires=Wed, 28 Jul 2021 00:32:57 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT + encoding: UTF-8 string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/ac8ab123-6bd9-4d2c-8cf8-d58a8dcb7ac7/","id":"ac8ab123-6bd9-4d2c-8cf8-d58a8dcb7ac7","name":"TestProject","description":"","created_at":"2021-07-13T18:30:21.976094Z","modified_at":"2021-07-13T18:30:21.976134Z"}]}' - recorded_at: Tue, 13 Jul 2021 18:36:14 GMT + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/","id":"09757741-9659-4b43-bcbd-26317dfa2bff","name":"TestProject","description":"","created_at":"2021-07-13T18:36:53.178046Z","modified_at":"2021-07-13T18:36:53.178104Z"}]}' + recorded_at: Wed, 14 Jul 2021 00:32:57 GMT - request: method: get uri: https://localhost:8000/api/v1/projects/ @@ -163,16 +163,16 @@ http_interactions: encoding: US-ASCII string: '' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 200 @@ -181,7 +181,7 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:16 GMT + - Wed, 14 Jul 2021 00:32:58 GMT Connection: - close Content-Type: @@ -199,13 +199,13 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=AsiF1I5BT36u4Bf6u9AtFds6ChzXpI51sQOdRR1CQW5ZYvnFyeD2McBKRSJisoui; - expires=Tue, 12 Jul 2022 18:36:16 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=ajwbc6d9sgxu8omzr7bo4gmhrs1j101z; expires=Tue, 27 Jul 2021 18:36:16 + - csrftoken=cCL4Vkkg9LMahqdnrNVbUDIx5lcBXpb9m3p8MVy7c91WIMZC8jNcXj3zehpYLgmO; + expires=Wed, 13 Jul 2022 00:32:58 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=ms9y746ckkv3077kdhhjo1zck4dh6119; expires=Wed, 28 Jul 2021 00:32:58 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT + encoding: UTF-8 string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/ac8ab123-6bd9-4d2c-8cf8-d58a8dcb7ac7/","id":"ac8ab123-6bd9-4d2c-8cf8-d58a8dcb7ac7","name":"TestProject","description":"","created_at":"2021-07-13T18:30:21.976094Z","modified_at":"2021-07-13T18:30:21.976134Z"}]}' - recorded_at: Tue, 13 Jul 2021 18:36:16 GMT + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/","id":"09757741-9659-4b43-bcbd-26317dfa2bff","name":"TestProject","description":"","created_at":"2021-07-13T18:36:53.178046Z","modified_at":"2021-07-13T18:36:53.178104Z"}]}' + recorded_at: Wed, 14 Jul 2021 00:32:58 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_projects/gets_projects.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_projects/gets_projects.yml index 1261704..cef41cb 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_projects/gets_projects.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_projects/gets_projects.yml @@ -7,16 +7,16 @@ http_interactions: encoding: US-ASCII string: '' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 200 @@ -25,7 +25,7 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:08 GMT + - Wed, 14 Jul 2021 00:32:49 GMT Connection: - close Content-Type: @@ -43,15 +43,15 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=3esoqg7LQZs1pfa9HZRCUePMVEvr5ldZr8pEhfL0fBfcFFTkkU0jlHj5TVP07FlO; - expires=Tue, 12 Jul 2022 18:36:08 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=l42mx2pnwe590b79w30adrb3iqnsclac; expires=Tue, 27 Jul 2021 18:36:08 + - csrftoken=r6PRgYh3hIfJouL5wObHJsSuQK1hp2gcrS5TW2eVpBXCAxgLJ6DT71TsZgnO0EnT; + expires=Wed, 13 Jul 2022 00:32:49 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=1wq9m7gp8nib4snz2ri7hvn426ld1932; expires=Wed, 28 Jul 2021 00:32:49 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT + encoding: UTF-8 string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/ac8ab123-6bd9-4d2c-8cf8-d58a8dcb7ac7/","id":"ac8ab123-6bd9-4d2c-8cf8-d58a8dcb7ac7","name":"TestProject","description":"","created_at":"2021-07-13T18:30:21.976094Z","modified_at":"2021-07-13T18:30:21.976134Z"}]}' - recorded_at: Tue, 13 Jul 2021 18:36:08 GMT + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/","id":"09757741-9659-4b43-bcbd-26317dfa2bff","name":"TestProject","description":"","created_at":"2021-07-13T18:36:53.178046Z","modified_at":"2021-07-13T18:36:53.178104Z"}]}' + recorded_at: Wed, 14 Jul 2021 00:32:49 GMT - request: method: get uri: https://localhost:8000/api/v1/projects/ @@ -59,16 +59,16 @@ http_interactions: encoding: US-ASCII string: '' headers: - User-Agent: - - kubetruth/0.6.0 Content-Type: - application/json + User-Agent: + - kubetruth/0.6.0 Accept: - application/json Authorization: - Api-Key - Expect: - - '' + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 response: status: code: 200 @@ -77,7 +77,7 @@ http_interactions: Server: - gunicorn Date: - - Tue, 13 Jul 2021 18:36:10 GMT + - Wed, 14 Jul 2021 00:32:51 GMT Connection: - close Content-Type: @@ -95,13 +95,13 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=AtpnemY6V3bi1P7qqkzcMre9a6ZM3GoMFsPiqnblKeXM5x6gexRA2wox5WBhUqKh; - expires=Tue, 12 Jul 2022 18:36:10 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=ikx2krk7jg373mr3dht692by84i5ul7w; expires=Tue, 27 Jul 2021 18:36:10 + - csrftoken=A6z1o0lLkWfN84u4pBdB4ifKy31WzMmwJCSJlYKsfaaZhY06QtVaCMuofF5HHkxc; + expires=Wed, 13 Jul 2022 00:32:51 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=ndzx70fuln5rofs3ofiw2y5yuhwtyfzm; expires=Wed, 28 Jul 2021 00:32:51 GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax body: - encoding: ASCII-8BIT + encoding: UTF-8 string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/ac8ab123-6bd9-4d2c-8cf8-d58a8dcb7ac7/","id":"ac8ab123-6bd9-4d2c-8cf8-d58a8dcb7ac7","name":"TestProject","description":"","created_at":"2021-07-13T18:30:21.976094Z","modified_at":"2021-07-13T18:30:21.976134Z"}]}' - recorded_at: Tue, 13 Jul 2021 18:36:10 GMT + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/","id":"09757741-9659-4b43-bcbd-26317dfa2bff","name":"TestProject","description":"","created_at":"2021-07-13T18:36:53.178046Z","modified_at":"2021-07-13T18:36:53.178104Z"}]}' + recorded_at: Wed, 14 Jul 2021 00:32:51 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/validate_async/does_api_requests_concurrently.yml b/spec/fixtures/vcr/Kubetruth_CtApi/validate_async/does_api_requests_concurrently.yml new file mode 100644 index 0000000..a6898cb --- /dev/null +++ b/spec/fixtures/vcr/Kubetruth_CtApi/validate_async/does_api_requests_concurrently.yml @@ -0,0 +1,107 @@ +--- +http_interactions: +- request: + method: get + uri: https://localhost:8000/api/v1/projects/ + body: + encoding: US-ASCII + string: '' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/0.6.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - gunicorn + Date: + - Wed, 14 Jul 2021 00:33:57 GMT + Connection: + - close + Content-Type: + - application/json + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '610' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=HECasuvLPw19qNPSunfnwr28ZHY6ziRB3eEmz0tydPlYe9hTfp5aIvcZwQplOT9M; + expires=Wed, 13 Jul 2022 00:33:57 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=oa82noplt4kh66vs1gqt6b5nwe6wsm0n; expires=Wed, 28 Jul 2021 00:33:57 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: UTF-8 + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/","id":"cfc4437a-d76f-4981-a9c4-06a212fc5933","name":"TestProject","description":"","created_at":"2021-07-14T00:33:35.954746Z","modified_at":"2021-07-14T00:33:35.954777Z"}]}' + recorded_at: Wed, 14 Jul 2021 00:33:57 GMT +- request: + method: get + uri: https://localhost:8000/api/v1/projects/ + body: + encoding: US-ASCII + string: '' + headers: + Content-Type: + - application/json + User-Agent: + - kubetruth/0.6.0 + Accept: + - application/json + Authorization: + - Api-Key + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: + status: + code: 200 + message: OK + headers: + Server: + - gunicorn + Date: + - Wed, 14 Jul 2021 00:33:59 GMT + Connection: + - close + Content-Type: + - application/json + Vary: + - Accept, Cookie, Origin + Allow: + - GET, POST, HEAD, OPTIONS + X-Frame-Options: + - DENY + Content-Length: + - '610' + X-Content-Type-Options: + - nosniff + Referrer-Policy: + - same-origin + Set-Cookie: + - csrftoken=QSuUWf4l8L8R42Nw3nCcSD9DLBBfk79PgW4pBGlq0uEQiwPKPBSZWZLK2fPCpXVk; + expires=Wed, 13 Jul 2022 00:33:59 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=v3k4gqac9dgdsbvc10tht0ooakb2ujcy; expires=Wed, 28 Jul 2021 00:33:59 + GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + body: + encoding: UTF-8 + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/","id":"cfc4437a-d76f-4981-a9c4-06a212fc5933","name":"TestProject","description":"","created_at":"2021-07-14T00:33:35.954746Z","modified_at":"2021-07-14T00:33:35.954777Z"}]}' + recorded_at: Wed, 14 Jul 2021 00:33:59 GMT +recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_KubeApi/validate_async/does_api_requests_concurrently.yml b/spec/fixtures/vcr/Kubetruth_KubeApi/validate_async/does_api_requests_concurrently.yml new file mode 100644 index 0000000..8061fc8 --- /dev/null +++ b/spec/fixtures/vcr/Kubetruth_KubeApi/validate_async/does_api_requests_concurrently.yml @@ -0,0 +1,197 @@ +--- +http_interactions: +- request: + method: get + uri: https://127.0.0.1:62419/apis/kubetruth.cloudtruth.com/v1 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - "*/*" + User-Agent: + - rest-client/2.1.0 (darwin20 x86_64) ruby/3.0.1p64 + Authorization: + - Bearer + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Host: + - 127.0.0.1:62419 + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, private + Content-Type: + - application/json + X-Kubernetes-Pf-Flowschema-Uid: + - 3ac022d1-2d3f-412d-baf1-6c7fc297eb46 + X-Kubernetes-Pf-Prioritylevel-Uid: + - 9b725da5-818a-4198-bd2b-f753027a9826 + Date: + - Wed, 14 Jul 2021 00:03:29 GMT + Content-Length: + - '346' + body: + encoding: UTF-8 + string: '{"kind":"APIResourceList","apiVersion":"v1","groupVersion":"kubetruth.cloudtruth.com/v1","resources":[{"name":"projectmappings","singularName":"projectmapping","namespaced":true,"kind":"ProjectMapping","verbs":["delete","deletecollection","get","list","patch","create","update","watch"],"shortNames":["pm"],"storageVersionHash":"UqtD9M7id/A="}]} + + ' + recorded_at: Wed, 14 Jul 2021 00:03:29 GMT +- request: + method: get + uri: https://127.0.0.1:62419/apis/kubetruth.cloudtruth.com/v1 + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - "*/*" + User-Agent: + - rest-client/2.1.0 (darwin20 x86_64) ruby/3.0.1p64 + Authorization: + - Bearer + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Host: + - 127.0.0.1:62419 + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, private + Content-Type: + - application/json + X-Kubernetes-Pf-Flowschema-Uid: + - 3ac022d1-2d3f-412d-baf1-6c7fc297eb46 + X-Kubernetes-Pf-Prioritylevel-Uid: + - 9b725da5-818a-4198-bd2b-f753027a9826 + Date: + - Wed, 14 Jul 2021 00:03:29 GMT + Content-Length: + - '346' + body: + encoding: UTF-8 + string: '{"kind":"APIResourceList","apiVersion":"v1","groupVersion":"kubetruth.cloudtruth.com/v1","resources":[{"name":"projectmappings","singularName":"projectmapping","namespaced":true,"kind":"ProjectMapping","verbs":["delete","deletecollection","get","list","patch","create","update","watch"],"shortNames":["pm"],"storageVersionHash":"UqtD9M7id/A="}]} + + ' + recorded_at: Wed, 14 Jul 2021 00:03:29 GMT +- request: + method: get + uri: https://127.0.0.1:62419/apis/kubetruth.cloudtruth.com/v1/projectmappings + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - "*/*" + User-Agent: + - rest-client/2.1.0 (darwin20 x86_64) ruby/3.0.1p64 + Authorization: + - Bearer + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Host: + - 127.0.0.1:62419 + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, private + Content-Type: + - application/json + X-Kubernetes-Pf-Flowschema-Uid: + - 3ac022d1-2d3f-412d-baf1-6c7fc297eb46 + X-Kubernetes-Pf-Prioritylevel-Uid: + - 9b725da5-818a-4198-bd2b-f753027a9826 + Date: + - Wed, 14 Jul 2021 00:03:29 GMT + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '{"apiVersion":"kubetruth.cloudtruth.com/v1","items":[{"apiVersion":"kubetruth.cloudtruth.com/v1","kind":"ProjectMapping","metadata":{"annotations":{"meta.helm.sh/release-name":"kubetruth-test-app","meta.helm.sh/release-namespace":"kubetruth-test-ns"},"creationTimestamp":"2021-07-14T00:03:28Z","generation":1,"labels":{"app.kubernetes.io/instance":"kubetruth-test-app","app.kubernetes.io/managed-by":"Helm","app.kubernetes.io/name":"kubetruth","app.kubernetes.io/version":"0.6.0","helm.sh/chart":"kubetruth-0.6.0"},"managedFields":[{"apiVersion":"kubetruth.cloudtruth.com/v1","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:meta.helm.sh/release-name":{},"f:meta.helm.sh/release-namespace":{}},"f:labels":{".":{},"f:app.kubernetes.io/instance":{},"f:app.kubernetes.io/managed-by":{},"f:app.kubernetes.io/name":{},"f:app.kubernetes.io/version":{},"f:helm.sh/chart":{}}},"f:spec":{".":{},"f:context":{".":{},"f:resource_name":{},"f:resource_namespace":{},"f:skip_secrets":{}},"f:environment":{},"f:included_projects":{},"f:key_selector":{},"f:project_selector":{},"f:resource_templates":{".":{},"f:configmap":{},"f:secret":{}},"f:scope":{},"f:skip":{}}},"manager":"Go-http-client","operation":"Update","time":"2021-07-14T00:03:28Z"}],"name":"kubetruth-test-app-root","namespace":"kubetruth-test-ns","resourceVersion":"4553","uid":"bdc93dfa-9d01-4204-b6d1-d86237c18bbf"},"spec":{"context":{"resource_name":"{{ + project | dns_safe }}","resource_namespace":"{{ mapping_namespace }}","skip_secrets":false},"environment":"default","included_projects":[],"key_selector":"","project_selector":"","resource_templates":{"configmap":"{%- + if parameters.size \u003e 0 %}\napiVersion: v1\nkind: ConfigMap\nmetadata:\n name: + \"{{ context.resource_name }}\"\n namespace: \"{{ context.resource_namespace + }}\"\n labels:\n version: \"{{ parameters | sort | to_json | sha256 | + slice: 0, 7 }}\"\n annotations:\n kubetruth/project_heirarchy: |\n {{ + project_heirarchy | to_yaml | indent: 6 | lstrip }}\n kubtruth/parameter_origins: + |\n {{ parameter_origins | to_yaml | indent: 6 | lstrip }}\ndata:\n {%- + for parameter in parameters %}\n {{ parameter[0] | key_safe | stringify }}: + {{ parameter[1] | stringify }}\n {%- endfor %}\n{%- endif %}\n","secret":"{%- + unless context.skip_secrets or secrets.size == 0 %}\napiVersion: v1\nkind: + Secret\nmetadata:\n name: \"{{ context.resource_name }}\"\n namespace: \"{{ + context.resource_namespace }}\"\n labels:\n version: \"{{ secrets | sort + | to_json | sha256 | slice: 0, 7 }}\"\n annotations:\n kubetruth/project_heirarchy: + |\n {{ project_heirarchy | to_yaml | indent: 6 | lstrip }}\n kubtruth/parameter_origins: + |\n {{ secret_origins | to_yaml | indent: 6 | lstrip }}\ndata:\n {%- + for secret in secrets %}\n {{ secret[0] | key_safe | stringify }}: {{ secret[1] + | encode64 | stringify }}\n {%- endfor %}\n{%- endunless %}\n"},"scope":"root","skip":false}}],"kind":"ProjectMappingList","metadata":{"continue":"","resourceVersion":"4565"}} + + ' + recorded_at: Wed, 14 Jul 2021 00:03:29 GMT +- request: + method: get + uri: https://127.0.0.1:62419/apis/kubetruth.cloudtruth.com/v1/projectmappings + body: + encoding: US-ASCII + string: '' + headers: + Accept: + - "*/*" + User-Agent: + - rest-client/2.1.0 (darwin20 x86_64) ruby/3.0.1p64 + Authorization: + - Bearer + Accept-Encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + Host: + - 127.0.0.1:62419 + response: + status: + code: 200 + message: OK + headers: + Cache-Control: + - no-cache, private + Content-Type: + - application/json + X-Kubernetes-Pf-Flowschema-Uid: + - 3ac022d1-2d3f-412d-baf1-6c7fc297eb46 + X-Kubernetes-Pf-Prioritylevel-Uid: + - 9b725da5-818a-4198-bd2b-f753027a9826 + Date: + - Wed, 14 Jul 2021 00:03:29 GMT + Transfer-Encoding: + - chunked + body: + encoding: UTF-8 + string: '{"apiVersion":"kubetruth.cloudtruth.com/v1","items":[{"apiVersion":"kubetruth.cloudtruth.com/v1","kind":"ProjectMapping","metadata":{"annotations":{"meta.helm.sh/release-name":"kubetruth-test-app","meta.helm.sh/release-namespace":"kubetruth-test-ns"},"creationTimestamp":"2021-07-14T00:03:28Z","generation":1,"labels":{"app.kubernetes.io/instance":"kubetruth-test-app","app.kubernetes.io/managed-by":"Helm","app.kubernetes.io/name":"kubetruth","app.kubernetes.io/version":"0.6.0","helm.sh/chart":"kubetruth-0.6.0"},"managedFields":[{"apiVersion":"kubetruth.cloudtruth.com/v1","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:meta.helm.sh/release-name":{},"f:meta.helm.sh/release-namespace":{}},"f:labels":{".":{},"f:app.kubernetes.io/instance":{},"f:app.kubernetes.io/managed-by":{},"f:app.kubernetes.io/name":{},"f:app.kubernetes.io/version":{},"f:helm.sh/chart":{}}},"f:spec":{".":{},"f:context":{".":{},"f:resource_name":{},"f:resource_namespace":{},"f:skip_secrets":{}},"f:environment":{},"f:included_projects":{},"f:key_selector":{},"f:project_selector":{},"f:resource_templates":{".":{},"f:configmap":{},"f:secret":{}},"f:scope":{},"f:skip":{}}},"manager":"Go-http-client","operation":"Update","time":"2021-07-14T00:03:28Z"}],"name":"kubetruth-test-app-root","namespace":"kubetruth-test-ns","resourceVersion":"4553","uid":"bdc93dfa-9d01-4204-b6d1-d86237c18bbf"},"spec":{"context":{"resource_name":"{{ + project | dns_safe }}","resource_namespace":"{{ mapping_namespace }}","skip_secrets":false},"environment":"default","included_projects":[],"key_selector":"","project_selector":"","resource_templates":{"configmap":"{%- + if parameters.size \u003e 0 %}\napiVersion: v1\nkind: ConfigMap\nmetadata:\n name: + \"{{ context.resource_name }}\"\n namespace: \"{{ context.resource_namespace + }}\"\n labels:\n version: \"{{ parameters | sort | to_json | sha256 | + slice: 0, 7 }}\"\n annotations:\n kubetruth/project_heirarchy: |\n {{ + project_heirarchy | to_yaml | indent: 6 | lstrip }}\n kubtruth/parameter_origins: + |\n {{ parameter_origins | to_yaml | indent: 6 | lstrip }}\ndata:\n {%- + for parameter in parameters %}\n {{ parameter[0] | key_safe | stringify }}: + {{ parameter[1] | stringify }}\n {%- endfor %}\n{%- endif %}\n","secret":"{%- + unless context.skip_secrets or secrets.size == 0 %}\napiVersion: v1\nkind: + Secret\nmetadata:\n name: \"{{ context.resource_name }}\"\n namespace: \"{{ + context.resource_namespace }}\"\n labels:\n version: \"{{ secrets | sort + | to_json | sha256 | slice: 0, 7 }}\"\n annotations:\n kubetruth/project_heirarchy: + |\n {{ project_heirarchy | to_yaml | indent: 6 | lstrip }}\n kubtruth/parameter_origins: + |\n {{ secret_origins | to_yaml | indent: 6 | lstrip }}\ndata:\n {%- + for secret in secrets %}\n {{ secret[0] | key_safe | stringify }}: {{ secret[1] + | encode64 | stringify }}\n {%- endfor %}\n{%- endunless %}\n"},"scope":"root","skip":false}}],"kind":"ProjectMappingList","metadata":{"continue":"","resourceVersion":"4565"}} + + ' + recorded_at: Wed, 14 Jul 2021 00:03:29 GMT +recorded_with: VCR 6.0.0 diff --git a/spec/kubetruth/ctapi_spec.rb b/spec/kubetruth/ctapi_spec.rb index fd29d8f..820f9fd 100644 --- a/spec/kubetruth/ctapi_spec.rb +++ b/spec/kubetruth/ctapi_spec.rb @@ -1,18 +1,22 @@ require 'rspec' +require 'async' require 'kubetruth/ctapi' module Kubetruth - describe CtApi, :vcr do + describe CtApi, :vcr => { + # uncomment (or delete vcr yml file) to force record of new fixtures + # :record => :all + } do let(:ctapi) { # Spin up a local dev server and create a user with an api key to use # here, or use cloudtruth actual - key = 'QINuBCMG.5p9I9xZgyirtlYHZ5E3G3j0tCZW34EE6' || ENV['CLOUDTRUTH_API_KEY'] + key = ENV['CLOUDTRUTH_API_KEY'] url = ENV['CLOUDTRUTH_API_URL'] || "https://localhost:8000" instance = ::Kubetruth::CtApi.new(api_key: key, api_url: url) instance.client.config.debugging = false # ssl debug logging is messy, so only turn this on as desired - instance.client.config.verify_ssl = false + instance.client.config.ssl_verify = false instance } @@ -127,6 +131,49 @@ module Kubetruth end + describe "validate async" do + + it "does api requests concurrently" do + start_times = {} + end_times = {} + start_times[:total] = Time.now.to_f + + Async(annotation: "top") do + + Async(annotation: "first") do + start_times[:first] = Time.now.to_f + ctapi.projects # non-memoized + end_times[:first] = Time.now.to_f + end + + Async(annotation: "second") do + start_times[:second] = Time.now.to_f + ctapi.projects # non-memoized + end_times[:second] = Time.now.to_f + end + + end + + end_times[:total] = Time.now.to_f + elapsed_times = Hash[end_times.collect {|k, v| [k, v - start_times[k]]}] + + logger.debug { "Start times: #{start_times.inspect}" } + logger.debug { "End times: #{end_times.inspect}" } + logger.debug { "Elapsed times: #{elapsed_times.inspect}" } + + # When VCR plays back requests, it doesn't use concurrent IO like live + # requests do, so this assertion will fail. As a result we only do the + # check when someone has cleared the cassette and is re-running against + # an actual http api + if VCR.current_cassette.originally_recorded_at.nil? || VCR.current_cassette.record_mode == :all + expect(elapsed_times[:total]).to be < (elapsed_times[:first] + elapsed_times[:second]) + end + + end + + end + + end end diff --git a/spec/kubetruth/kubeapi_spec.rb b/spec/kubetruth/kubeapi_spec.rb index 501e349..47fe767 100644 --- a/spec/kubetruth/kubeapi_spec.rb +++ b/spec/kubetruth/kubeapi_spec.rb @@ -1,4 +1,5 @@ require 'rspec' +require 'async' require 'kubetruth/kubeapi' require 'kubetruth/config' @@ -395,5 +396,53 @@ def apiserver; "https://127.0.0.1"; end end + describe "validate async" do + + it "does api requests concurrently" do + kapi = kubeapi # rspec let block has a mutex that intermittently causes problems when using async + start_times = {} + end_times = {} + start_times[:total] = Time.now.to_f + + + Async(annotation: "top") do + + Async(annotation: "first") do + start_times[:first] = Time.now.to_f + kapi.get_project_mappings # non-memoized + end_times[:first] = Time.now.to_f + end + + Async(annotation: "second") do + begin + start_times[:second] = Time.now.to_f + kapi.get_project_mappings # non-memoized + end_times[:second] = Time.now.to_f + rescue => e + puts e + puts e.backtrace + end + end + + end + + end_times[:total] = Time.now.to_f + elapsed_times = Hash[end_times.collect {|k, v| [k, v - start_times[k]]}] + + logger.debug { "Start times: #{start_times.inspect}" } + logger.debug { "End times: #{end_times.inspect}" } + logger.debug { "Elapsed times: #{elapsed_times.inspect}" } + + # When VCR plays back requests, it doesn't use concurrent IO like live + # requests do, so this assertion will fail. As a result we only do the + # check when someone has cleared the cassette and is re-running against + # an actual http api + if VCR.current_cassette.originally_recorded_at.nil? || VCR.current_cassette.record_mode == :all + expect(elapsed_times[:total]).to be < (elapsed_times[:first] + elapsed_times[:second]) + end + end + + end + end end diff --git a/spec/kubetruth/project_collection_spec.rb b/spec/kubetruth/project_collection_spec.rb index 9e39f97..efcdd5f 100644 --- a/spec/kubetruth/project_collection_spec.rb +++ b/spec/kubetruth/project_collection_spec.rb @@ -8,8 +8,8 @@ module Kubetruth let(:collection) { described_class.new } before(:each) do - @ctapi = double() - allow(collection).to receive(:ctapi).and_return(@ctapi) + @ctapi = double(Kubetruth::CtApi) + allow(Kubetruth::CtApi).to receive(:instance).and_return(@ctapi) end describe "#names" do From 85610367efe4ab4cdf5034b176f6ef4ffe87eda7 Mon Sep 17 00:00:00 2001 From: Matt Conway Date: Wed, 14 Jul 2021 11:19:15 -0400 Subject: [PATCH 05/17] allow setting ct api url at install time --- helm/kubetruth/templates/deployment.yaml | 4 ++++ helm/kubetruth/values.yaml | 1 + 2 files changed, 5 insertions(+) diff --git a/helm/kubetruth/templates/deployment.yaml b/helm/kubetruth/templates/deployment.yaml index 7d1f4c4..7c1ec23 100644 --- a/helm/kubetruth/templates/deployment.yaml +++ b/helm/kubetruth/templates/deployment.yaml @@ -40,6 +40,10 @@ spec: name: {{ include "kubetruth.fullname" . }} args: - app + {{- if .Values.appSettings.apiUrl }} + - --api-url + - "{{ .Values.appSettings.apiUrl }}" + {{- end }} {{- if .Values.appSettings.pollingInterval }} - --polling-interval - "{{ .Values.appSettings.pollingInterval }}" diff --git a/helm/kubetruth/values.yaml b/helm/kubetruth/values.yaml index 69169be..e297cbb 100644 --- a/helm/kubetruth/values.yaml +++ b/helm/kubetruth/values.yaml @@ -68,6 +68,7 @@ affinity: {} appSettings: apiKey: + apiUrl: pollingInterval: debug: false From 60dd50a03c87370cde0c336bd9432d05154328f9 Mon Sep 17 00:00:00 2001 From: Matt Conway Date: Wed, 14 Jul 2021 11:29:17 -0400 Subject: [PATCH 06/17] allow overriding of image name when building docker image --- Rakefile | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/Rakefile b/Rakefile index 3cf7c3e..ccc795a 100644 --- a/Rakefile +++ b/Rakefile @@ -10,9 +10,10 @@ CLIENT_DIR = "client" require 'rake/clean' CLEAN << TMP_DIR << CLIENT_DIR -def get_var(name, env_name: name.to_s.upcase, yml_name: name.to_s.downcase.to_sym, prompt: true, required: true) +def get_var(name, env_name: name.to_s.upcase, yml_name: name.to_s.downcase.to_sym, default: nil, prompt: true, required: true) value = ENV[env_name] value ||= APP[yml_name] + value ||= default if value.nil? && $stdin.tty? && prompt print "Enter '#{name}': " @@ -81,14 +82,16 @@ end task :helm_package => [:helm_index] task :build_development => [:client] do - sh "docker build --target development -t #{APP[:name]}-development ." + image_name = get_var(:image_name, default: "#{APP[:name]}-development", prompt: false, required: false) + sh "docker build --target development -t #{image_name} ." end task :test => [:build_development] do + image_name = get_var(:image_name, default: "#{APP[:name]}-development", prompt: false, required: false) if ENV['CI'] && ENV['CODECOV_TOKEN'] - sh "set -e && ci_env=$(curl -s https://codecov.io/env | bash) && docker run -e CI -e CODECOV_TOKEN ${ci_env} #{APP[:name]}-development test" + sh "set -e && ci_env=$(curl -s https://codecov.io/env | bash) && docker run -e CI -e CODECOV_TOKEN ${ci_env} #{image_name} test" else - sh "docker run -e CI -e CODECOV_TOKEN #{APP[:name]}-development test" + sh "docker run -e CI -e CODECOV_TOKEN #{image_name} test" end end @@ -99,7 +102,8 @@ task :rspec do end task :build_release => [:client] do - sh "docker build --target release -t #{APP[:name]} ." + image_name = get_var(:image_name, default: "#{APP[:name]}", prompt: false, required: false) + sh "docker build --target release -t #{image_name} ." end task :docker_push do From 5cf863998d2f41f7597a89c4a88180c92e3b825b Mon Sep 17 00:00:00 2001 From: Matt Conway Date: Wed, 14 Jul 2021 11:29:36 -0400 Subject: [PATCH 07/17] use logger for async exceptions --- lib/kubetruth/etl.rb | 21 ++++++++++++++++----- spec/kubetruth/etl_spec.rb | 11 +++++++++++ spec/kubetruth/kubeapi_spec.rb | 30 ++++++++++++------------------ 3 files changed, 39 insertions(+), 23 deletions(-) diff --git a/lib/kubetruth/etl.rb b/lib/kubetruth/etl.rb index 06a5e82..40bfbb5 100644 --- a/lib/kubetruth/etl.rb +++ b/lib/kubetruth/etl.rb @@ -76,13 +76,24 @@ def with_polling(interval, &block) end end + def async(*args, **kwargs) + Async(*args, **kwargs) do |task| + begin + yield + rescue => e + logger.log_exception(e, "Failure in async task: #{task.annotation}") + task.stop + end + end + end + def load_config configs = [] mappings_by_ns = kubeapi.get_project_mappings primary_mappings = mappings_by_ns.delete(kubeapi.namespace) raise Error.new("A default set of mappings is required in the namespace kubetruth is installed in (#{kubeapi.namespace})") unless primary_mappings - Async(annotation: "Primary Config: #{kubeapi.namespace}") do + async(annotation: "Primary Config: #{kubeapi.namespace}") do primary_config = Kubetruth::Config.new(primary_mappings.values) logger.info {"Processing primary mappings for namespace '#{kubeapi.namespace}'"} configs << primary_config @@ -90,7 +101,7 @@ def load_config end mappings_by_ns.each do |namespace, ns_mappings| - Async(annotation: "Secondary Config: #{namespace}") do + async(annotation: "Secondary Config: #{namespace}") do secondary_mappings = primary_mappings.deep_merge(ns_mappings) secondary_config = Kubetruth::Config.new(secondary_mappings.values) logger.info {"Processing secondary mappings for namespace '#{namespace}'"} @@ -103,7 +114,7 @@ def load_config end def apply - Async(annotation: "ETL Event Loop") do + async(annotation: "ETL Event Loop") do logger.warn("Performing dry-run") if @dry_run load_config do |namespace, config| @@ -136,7 +147,7 @@ def apply next end - Async(annotation: "Project: #{project.name}") do + async(annotation: "Project: #{project.name}") do # constructing the hash will cause any overrides to happen in the right # order (includer wins over last included over first included) @@ -172,7 +183,7 @@ def apply parsed_ymls = YAML.safe_load_stream(resource_yml, template_id) logger.debug {"Skipping empty template"} if parsed_ymls.empty? parsed_ymls.each do |parsed_yml| - Async(annotation: "Apply Template: #{template_id}") do + async(annotation: "Apply Template: #{template_id}") do kube_apply(parsed_yml) end end diff --git a/spec/kubetruth/etl_spec.rb b/spec/kubetruth/etl_spec.rb index 32c51f8..23ac031 100644 --- a/spec/kubetruth/etl_spec.rb +++ b/spec/kubetruth/etl_spec.rb @@ -517,5 +517,16 @@ class ForceExit < Exception; end end + describe "verify async behavior" do + + it "logs exceptions" do + etl.async(annotation: "badtask") do + raise "task fail" + end + expect(Logging.contents).to match(/ERROR ETL \[exception=RuntimeError \] Failure in async task: badtask/) + end + + end + end end diff --git a/spec/kubetruth/kubeapi_spec.rb b/spec/kubetruth/kubeapi_spec.rb index 47fe767..9ab0e83 100644 --- a/spec/kubetruth/kubeapi_spec.rb +++ b/spec/kubetruth/kubeapi_spec.rb @@ -404,28 +404,22 @@ def apiserver; "https://127.0.0.1"; end end_times = {} start_times[:total] = Time.now.to_f + Async(annotation: "top") do - Async(annotation: "top") do - - Async(annotation: "first") do - start_times[:first] = Time.now.to_f - kapi.get_project_mappings # non-memoized - end_times[:first] = Time.now.to_f - end - - Async(annotation: "second") do - begin - start_times[:second] = Time.now.to_f - kapi.get_project_mappings # non-memoized - end_times[:second] = Time.now.to_f - rescue => e - puts e - puts e.backtrace - end - end + Async(annotation: "first") do + start_times[:first] = Time.now.to_f + kapi.get_project_mappings # non-memoized + end_times[:first] = Time.now.to_f + end + Async(annotation: "second") do + start_times[:second] = Time.now.to_f + kapi.get_project_mappings # non-memoized + end_times[:second] = Time.now.to_f end + end + end_times[:total] = Time.now.to_f elapsed_times = Hash[end_times.collect {|k, v| [k, v - start_times[k]]}] From 0b53d644982ea2daffac613451c1c1c2b8c175d1 Mon Sep 17 00:00:00 2001 From: Matt Conway Date: Wed, 14 Jul 2021 11:49:21 -0400 Subject: [PATCH 08/17] yield task in async helper --- lib/kubetruth/etl.rb | 2 +- spec/kubetruth/etl_spec.rb | 9 ++++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/lib/kubetruth/etl.rb b/lib/kubetruth/etl.rb index 40bfbb5..e70fba5 100644 --- a/lib/kubetruth/etl.rb +++ b/lib/kubetruth/etl.rb @@ -79,7 +79,7 @@ def with_polling(interval, &block) def async(*args, **kwargs) Async(*args, **kwargs) do |task| begin - yield + yield task rescue => e logger.log_exception(e, "Failure in async task: #{task.annotation}") task.stop diff --git a/spec/kubetruth/etl_spec.rb b/spec/kubetruth/etl_spec.rb index 23ac031..59960b5 100644 --- a/spec/kubetruth/etl_spec.rb +++ b/spec/kubetruth/etl_spec.rb @@ -520,10 +520,17 @@ class ForceExit < Exception; end describe "verify async behavior" do it "logs exceptions" do - etl.async(annotation: "badtask") do + task = etl.async(annotation: "badtask") do raise "task fail" end expect(Logging.contents).to match(/ERROR ETL \[exception=RuntimeError \] Failure in async task: badtask/) + expect(task.status).to eq(:stopped) + end + + it "yields task" do + etl.async(annotation: "mytask") do |task| + expect(task.annotation).to eq("mytask") + end end end From b76eb5897f357de85de34693d0bda47159ee60e5 Mon Sep 17 00:00:00 2001 From: Matt Conway Date: Thu, 15 Jul 2021 12:31:58 -0400 Subject: [PATCH 09/17] latest api schema --- openapi.yml | 131 ++++++++++++++++++++++++++++++++++------------------ 1 file changed, 86 insertions(+), 45 deletions(-) diff --git a/openapi.yml b/openapi.yml index a983eca..e4810c5 100644 --- a/openapi.yml +++ b/openapi.yml @@ -162,11 +162,20 @@ paths: schema: type: string enum: - - access - create - delete - update description: The action that was taken. + - in: query + name: earliest + schema: + type: string + format: date-time + - in: query + name: latest + schema: + type: string + format: date-time - in: query name: object_id schema: @@ -181,12 +190,6 @@ paths: description: A page number within the paginated result set. schema: type: integer - - in: query - name: timestamp - schema: - type: string - format: date-time - - in: query name: user_id schema: @@ -628,6 +631,7 @@ paths: security: - JWTAuth: [] - ApiKeyAuth: [] + - {} responses: '200': content: @@ -681,10 +685,10 @@ paths: - The user must first install the CloudTruth GitHub Application in \ntheir\ \ GitHub organization and obtain the `installation_id` of the \napplication\ \ in order to create the integration.\n\n### Initiating the GitHub Application\ - \ Installation ###\n\n- Go to `https://github.com/apps/cloudtruth-local/installations/new?state=`\n\ - - On successful installation the browser will return to \n`https://app.localhost/app_setup/github`\ - \ \nand provide the `installation_id` in the URI.\n- POST to this api to verify\ - \ and establish the integration." + \ Installation ###\n\n- Go to `https://github.com/apps/GITHUB_APP_NAME/installations/new?state=`\n\ + - On successful installation the browser will return to \n`https://APP_URL/app_setup/github`\ + \ (configured in ctops/bin/github*) \nand provide the `installation_id` in\ + \ the URI.\n- POST to this api to verify and establish the integration." summary: Establishes a GitHub Integration. tags: - integrations @@ -3656,21 +3660,26 @@ components: values: type: object additionalProperties: - $ref: '#/components/schemas/Value' - readOnly: true - description: "\n Environments inherit from a single parent to\ - \ form a tree, as a result\n a single parameter may have different\ - \ values present for each environment.\n When a value is not\ - \ explicitly set in an environment, the parent environment\n \ - \ is consulted to see if it has a value defined, and so on.\n\n \ - \ The dictionary of values has an environment url as the key, and\ - \ the optional\n Value record that it resolves to. If the\ - \ Value.environment matches the key,\n then it is an explicit\ - \ value set for that environment. If they differ, the\n value\ - \ was obtained from a parent environment (directly or indirectly). If\ - \ the\n value is None then no value has ever been set in any\ - \ environment for this\n parameter.\n\n key: Environment\ - \ url\n value: optional Value record\n " + allOf: + - $ref: '#/components/schemas/Value' + nullable: true + readOnly: true + description: "\n Each parameter has an effective value in every\ + \ environment based on\n environment inheritance and which\ + \ environments have had a value set.\n\n Environments inherit\ + \ from a single parent to form a tree, as a result\n a single\ + \ parameter may have different values present for each environment.\n\ + \ When a value is not explicitly set in an environment, the\ + \ parent environment\n is consulted to see if it has a value\ + \ defined, and so on.\n\n The dictionary of values has an environment\ + \ url as the key, and the optional\n Value record that it resolves\ + \ to. If the Value.environment matches the key,\n then it\ + \ is an explicit value set for that environment. If they differ, the\n\ + \ value was obtained from a parent environment (directly or\ + \ indirectly). If the\n value is None then no value has ever\ + \ been set in any environment for this\n parameter.\n\n \ + \ key: Environment url\n value: optional Value record\n\ + \ " created_at: type: string format: date-time @@ -3993,21 +4002,26 @@ components: values: type: object additionalProperties: - $ref: '#/components/schemas/Value' - readOnly: true - description: "\n Environments inherit from a single parent to\ - \ form a tree, as a result\n a single parameter may have different\ - \ values present for each environment.\n When a value is not\ - \ explicitly set in an environment, the parent environment\n \ - \ is consulted to see if it has a value defined, and so on.\n\n \ - \ The dictionary of values has an environment url as the key, and\ - \ the optional\n Value record that it resolves to. If the\ - \ Value.environment matches the key,\n then it is an explicit\ - \ value set for that environment. If they differ, the\n value\ - \ was obtained from a parent environment (directly or indirectly). If\ - \ the\n value is None then no value has ever been set in any\ - \ environment for this\n parameter.\n\n key: Environment\ - \ url\n value: optional Value record\n " + allOf: + - $ref: '#/components/schemas/Value' + nullable: true + readOnly: true + description: "\n Each parameter has an effective value in every\ + \ environment based on\n environment inheritance and which\ + \ environments have had a value set.\n\n Environments inherit\ + \ from a single parent to form a tree, as a result\n a single\ + \ parameter may have different values present for each environment.\n\ + \ When a value is not explicitly set in an environment, the\ + \ parent environment\n is consulted to see if it has a value\ + \ defined, and so on.\n\n The dictionary of values has an environment\ + \ url as the key, and the optional\n Value record that it resolves\ + \ to. If the Value.environment matches the key,\n then it\ + \ is an explicit value set for that environment. If they differ, the\n\ + \ value was obtained from a parent environment (directly or\ + \ indirectly). If the\n value is None then no value has ever\ + \ been set in any environment for this\n parameter.\n\n \ + \ key: Environment url\n value: optional Value record\n\ + \ " created_at: type: string format: date-time @@ -4071,6 +4085,11 @@ components: type: string format: date-time readOnly: true + last_used_at: + type: string + format: date-time + readOnly: true + description: The most recent date and time the service account was used. PatchedTemplate: type: object description: A parameter template in a given project, optionally instantiated @@ -4105,6 +4124,10 @@ components: type: string format: uri readOnly: true + has_secret: + type: boolean + readOnly: true + description: If True, this template contains secrets. created_at: type: string format: date-time @@ -4267,9 +4290,15 @@ components: type: string format: date-time readOnly: true + last_used_at: + type: string + format: date-time + readOnly: true + description: The most recent date and time the service account was used. required: - created_at - id + - last_used_at - modified_at - url - user @@ -4312,6 +4341,11 @@ components: type: string format: date-time readOnly: true + last_used_at: + type: string + format: date-time + readOnly: true + description: The most recent date and time the service account was used. apikey: type: string readOnly: true @@ -4320,6 +4354,7 @@ components: - apikey - created_at - id + - last_used_at - modified_at - url - user @@ -4357,6 +4392,10 @@ components: type: string format: uri readOnly: true + has_secret: + type: boolean + readOnly: true + description: If True, this template contains secrets. created_at: type: string format: date-time @@ -4367,6 +4406,7 @@ components: readOnly: true required: - created_at + - has_secret - id - modified_at - name @@ -4564,10 +4604,11 @@ components: name: Authorization type: apiKey description: "\nUse your CloudTruth API Key to authenticate to the API. You\ - \ can get\nan API Key by creating a Service Account in the UI. During setup\ - \ of the Service\nAccount you will generate a long-lived API key intended\ - \ for use by automation\nand API clients.\n\nIf you are just trying to use\ - \ the API in a normal workflow, this is likely the\nauthentication mechanism\ + \ can get\nan API Key by creating a Service Account. During setup of the\ + \ Service\nAccount you will generate a long-lived API key intended for use\ + \ by automation\nand API clients. Access through the service account will\ + \ be audited separately\nfrom any other user.\n\nIf you are just trying to\ + \ use the API in a normal workflow, this is likely the\nauthentication mechanism\ \ you want to use.\n\nTo use the API Key, place your API Key in the Authorization\ \ header as 'Api-Key APIKEY', where\nAPIKEY is your CloudTruth API Key. For\ \ example:\n\n Authorization: Api-Key fskur.ghlsiudhrg84so938r5u\n \ From 3b4fe5568f341516b24b84223cfcaa1ed5d4d094 Mon Sep 17 00:00:00 2001 From: Matt Conway Date: Thu, 15 Jul 2021 12:32:24 -0400 Subject: [PATCH 10/17] convenience tasks --- README.md | 17 ++++++++++++++++- Rakefile | 54 +++++++++++++++++++++++++++++++++++++++++++++++------- 2 files changed, 63 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 338a74d..6c25f66 100644 --- a/README.md +++ b/README.md @@ -349,13 +349,28 @@ interactive prompt that will allow you to experiment. To install and run via helm in a local cluster: ``` +mkdir local +cat > local/values.yml <<-EOF +image: + repository: kubetruth + pullPolicy: Never + tag: latest +appSettings: + debug: true + apiKey: +EOF + +rake install + +# OR + # If using minikube, ensure that docker builds the image into the minikube container # with the command: # eval $(minikube docker-env) # docker build --release development -t kubetruth . && helm install \ --set image.repository=kubetruth --set image.pullPolicy=Never --set image.tag=latest \ - --set appSettings.debug=true --set appSettings.apiKey=$CLOUDTRUTH_API_KEY --set appSettings.environment=development \ + --set appSettings.debug=true --set appSettings.apiKey=$CLOUDTRUTH_API_KEY \ kubetruth ./helm/kubetruth/ ``` diff --git a/Rakefile b/Rakefile index ccc795a..e640190 100644 --- a/Rakefile +++ b/Rakefile @@ -82,16 +82,15 @@ end task :helm_package => [:helm_index] task :build_development => [:client] do - image_name = get_var(:image_name, default: "#{APP[:name]}-development", prompt: false, required: false) - sh "docker build --target development -t #{image_name} ." + image_name = get_var(:image_name, default: "#{APP[:name]}", prompt: false, required: false) + sh "docker build --target development -t #{image_name}:latest -t #{image_name}:development ." end task :test => [:build_development] do - image_name = get_var(:image_name, default: "#{APP[:name]}-development", prompt: false, required: false) if ENV['CI'] && ENV['CODECOV_TOKEN'] - sh "set -e && ci_env=$(curl -s https://codecov.io/env | bash) && docker run -e CI -e CODECOV_TOKEN ${ci_env} #{image_name} test" + sh "set -e && ci_env=$(curl -s https://codecov.io/env | bash) && docker run -e CI -e CODECOV_TOKEN ${ci_env} #{APP[:name]} test" else - sh "docker run -e CI -e CODECOV_TOKEN #{image_name} test" + sh "docker run -e CI -e CODECOV_TOKEN #{APP[:name]} test" end end @@ -103,7 +102,7 @@ end task :build_release => [:client] do image_name = get_var(:image_name, default: "#{APP[:name]}", prompt: false, required: false) - sh "docker build --target release -t #{image_name} ." + sh "docker build --target release -t #{image_name}:latest -t #{image_name}:release ." end task :docker_push do @@ -227,11 +226,18 @@ task :console do end file "#{CLIENT_DIR}/Gemfile" => "openapi.yml" do + + if ENV['MINIKUBE_ACTIVE_DOCKERD'] + puts "Cannot generate the rest client in the minikube docker environment" + puts "Run in a shell without 'eval $(minikube docker-env)'" + exit 1 + end + rm_rf "client" + # may need --user #{Process.uid}:#{Process.gid} for some Hosts sh *%W[ docker run --rm -v #{Dir.pwd}:/data - --user #{Process.uid}:#{Process.gid} openapitools/openapi-generator-cli generate -i /data/openapi.yml -g ruby @@ -242,3 +248,37 @@ file "#{CLIENT_DIR}/Gemfile" => "openapi.yml" do end task :client => "#{CLIENT_DIR}/Gemfile" + +task :install => :client do + build_type = get_var(:build_type, prompt: false, required: false, default: "development") + namespace = get_var(:namespace, prompt: false, required: false) + values_file = get_var(:values_file, prompt: false, required: false, default: "local/values.yaml") + + minikube_env = Hash[`minikube docker-env --shell bash`.scan(/([^ ]*)="(.*)"/)] + orig_env = ENV.to_hash + minikube_env.each {|k, v| ENV[k] = v } + begin + Rake::Task["build_#{build_type}"].invoke + + ENV['IMAGE_NAME'] = "kubetruth" + Rake::Task["build_#{build_type}"].invoke + ensure + (minikube_env.keys - orig_env.keys).each {|k| ENV.delete(k) } + (minikube_env.keys & orig_env.keys).each {|k, v| ENV[k] = orig_env[k] } + end + + cmd = "helm install" + cmd << " --create-namespace --namespace #{namespace}" if namespace + cmd << " --values #{values_file}" if File.exist?(values_file) + cmd << " kubetruth helm/kubetruth/" + sh cmd +end + +task :clean_install do + namespace = get_var(:namespace, prompt: false, required: false) + cmd = "helm delete" + cmd << " --namespace #{namespace}" if namespace + cmd << " kubetruth" + sh cmd + sh "kubectl delete customresourcedefinition projectmappings.kubetruth.cloudtruth.com" +end From 00988665721de1a191ac80c3cf8aa508c7ec6c9e Mon Sep 17 00:00:00 2001 From: Matt Conway Date: Thu, 15 Jul 2021 15:08:52 -0400 Subject: [PATCH 11/17] check for minikube for rake install --- README.md | 1 + Rakefile | 10 ++++++---- spec/kubetruth/kubeapi_spec.rb | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 6c25f66..7a3762b 100644 --- a/README.md +++ b/README.md @@ -360,6 +360,7 @@ appSettings: apiKey: EOF +# requires minikube to be installed and running rake install # OR diff --git a/Rakefile b/Rakefile index e640190..7645333 100644 --- a/Rakefile +++ b/Rakefile @@ -249,19 +249,21 @@ end task :client => "#{CLIENT_DIR}/Gemfile" -task :install => :client do +task :install do build_type = get_var(:build_type, prompt: false, required: false, default: "development") namespace = get_var(:namespace, prompt: false, required: false) values_file = get_var(:values_file, prompt: false, required: false, default: "local/values.yaml") + system("minikube version", [:out, :err] => "/dev/null") || fail("dev dependency not installed - minikube") + system("minikube status", [:out, :err] => "/dev/null") || fail("dev dependency not running - minikube") + + Rake::Task["client"].invoke + minikube_env = Hash[`minikube docker-env --shell bash`.scan(/([^ ]*)="(.*)"/)] orig_env = ENV.to_hash minikube_env.each {|k, v| ENV[k] = v } begin Rake::Task["build_#{build_type}"].invoke - - ENV['IMAGE_NAME'] = "kubetruth" - Rake::Task["build_#{build_type}"].invoke ensure (minikube_env.keys - orig_env.keys).each {|k| ENV.delete(k) } (minikube_env.keys & orig_env.keys).each {|k, v| ENV[k] = orig_env[k] } diff --git a/spec/kubetruth/kubeapi_spec.rb b/spec/kubetruth/kubeapi_spec.rb index 9ab0e83..8363788 100644 --- a/spec/kubetruth/kubeapi_spec.rb +++ b/spec/kubetruth/kubeapi_spec.rb @@ -21,7 +21,7 @@ def check_deps @deps_checked ||= begin system("helm version >/dev/null 2>&1") || fail("test dependency not installed - helm ") system("minikube version >/dev/null 2>&1") || fail("test dependency not installed - minikube") - system("minikube status >/dev/null 2>&1") || fail("test dependency nor running - minikube") + system("minikube status >/dev/null 2>&1") || fail("test dependency not running - minikube") true end end From 63a54bc3dabd09ccb643f8722341509107f32a59 Mon Sep 17 00:00:00 2001 From: Matt Conway Date: Tue, 20 Jul 2021 16:41:09 -0400 Subject: [PATCH 12/17] Use correct default API host --- lib/kubetruth/cli.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/kubetruth/cli.rb b/lib/kubetruth/cli.rb index 829d8d6..a917132 100755 --- a/lib/kubetruth/cli.rb +++ b/lib/kubetruth/cli.rb @@ -20,7 +20,7 @@ class CLI < CLIBase option "--api-url", 'APIURL', "The cloudtruth api endpoint", environment_variable: 'CLOUDTRUTH_API_URL', - default: "https://api.cloudtruth.com" + default: "https://api.cloudtruth.io" option "--kube-namespace", 'NAMESPACE', "The kubernetes namespace. Defaults to runtime namespace when run in kube" From 3ad434b375236bcada2f0e4008405c805f737cbb Mon Sep 17 00:00:00 2001 From: Matt Conway Date: Wed, 21 Jul 2021 11:03:11 -0400 Subject: [PATCH 13/17] run console through docker --- Rakefile | 18 ++++++++++++------ entrypoint.sh | 2 +- 2 files changed, 13 insertions(+), 7 deletions(-) diff --git a/Rakefile b/Rakefile index 7645333..3e090c3 100644 --- a/Rakefile +++ b/Rakefile @@ -1,7 +1,7 @@ require 'yaml' require 'open-uri' -APP = YAML.load(File.read(".app.yml"), filename: ".app.yml", symbolize_names: true) +APP = YAML.load(File.read(".app.yml"), symbolize_names: true) TMP_DIR = "tmp" HELMV2_DIR = "#{TMP_DIR}/helmv2" HELM_PKG_DIR = "#{TMP_DIR}/packaged-chart" @@ -218,11 +218,17 @@ task :changelog do end task :console do - $LOAD_PATH.unshift File.expand_path("lib", __dir__) - require "bundler/setup" - require APP[:name] - require "pry" - Pry.start + local = get_var(:local, prompt: false, required: false, default: false) + if local + $LOAD_PATH.unshift File.expand_path("lib", __dir__) + require "bundler/setup" + require APP[:name] + require "pry" + Pry.start + else + Rake::Task["build_development"].invoke + sh "docker run -it kubetruth:development console" + end end file "#{CLIENT_DIR}/Gemfile" => "openapi.yml" do diff --git a/entrypoint.sh b/entrypoint.sh index 296a532..853855c 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -14,7 +14,7 @@ case $action in console) echo "Starting console" - exec rake console + LOCAL=true exec rake console ;; test) From 4c5ac74b3161612db7a1a4b787d8daa00b2a1def Mon Sep 17 00:00:00 2001 From: Matt Conway Date: Thu, 22 Jul 2021 09:06:21 -0400 Subject: [PATCH 14/17] fix NPE - values are nil if unset --- lib/kubetruth/ctapi.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/kubetruth/ctapi.rb b/lib/kubetruth/ctapi.rb index bbd417c..282bbcc 100644 --- a/lib/kubetruth/ctapi.rb +++ b/lib/kubetruth/ctapi.rb @@ -109,7 +109,7 @@ def parameters(project:, environment: "default") cleaned&.[](:results)&.each do |param| if param[:secret] param[:values].each do |k, v| - v[:value] = "" + v[:value] = "" unless v.nil? end end end From 079657e9ac9a030bd03a592ef182c270abef0f81 Mon Sep 17 00:00:00 2001 From: Matt Conway Date: Thu, 22 Jul 2021 09:16:53 -0400 Subject: [PATCH 15/17] latest api schema --- openapi.yml | 44 +-- .../_environment_id/gets_id.yml | 22 +- .../raises_if_environment_doesn_t_exist.yml | 44 +-- .../retries_if_environment_doesn_t_exist.yml | 44 +-- .../_environments/gets_environments.yml | 22 +- .../_environments/memoizes_environments.yml | 22 +- .../doesn_t_expose_secret_in_debug_log.yml | 190 ++++++------- .../_parameters/gets_parameters.yml | 189 +++++-------- .../uses_environment_to_get_values.yml | 264 +++++++++--------- .../_projects/doesn_t_memoize_projects_.yml | 72 ++--- .../_projects/gets_projects.yml | 36 +-- .../does_api_requests_concurrently.yml | 32 +-- 12 files changed, 456 insertions(+), 525 deletions(-) diff --git a/openapi.yml b/openapi.yml index e4810c5..48d90c2 100644 --- a/openapi.yml +++ b/openapi.yml @@ -415,7 +415,9 @@ paths: - ApiKeyAuth: [] responses: '204': - description: No response body + description: Environment destroyed. + '409': + description: The environment has children and cannot be removed. /api/v1/integrations/aws/: get: operationId: integrations_aws_list @@ -639,8 +641,6 @@ paths: schema: $ref: '#/components/schemas/PaginatedIntegrationExplorerList' description: The content at the FQN. - '204': - description: No content found at FQN. '400': description: Invalid FQN requested. '403': @@ -2190,29 +2190,8 @@ paths: - JWTAuth: [] - ApiKeyAuth: [] responses: - '200': - content: - application/json: - schema: - $ref: '#/components/schemas/Parameter' - description: '' - '400': - description: While checking pre-conditions, a dynamic value was encountered - that could not be resolved. - '404': - description: While checking pre-conditions, a dynamic value was encountered - that could not be resolved. - '422': - description: 'A pre-condition to modifying the `secret` setting of the parameter - failed, for example setting `secret: false` and having a dynamic value - that resolves to a value that is a secret. In this case it would be unsafe - to allow the `secret` setting to change.' - '415': - description: While checking pre-conditions, a dynamic value was encountered - that has an invalid content type. - '507': - description: While checking pre-conditions, a dynamic value was encountered - that was too large to process. + '204': + description: No response body /api/v1/projects/{project_pk}/template-preview/: post: operationId: projects_template_preview_create @@ -2996,8 +2975,8 @@ components: nullable: true description: Environments can inherit from a single parent environment which provides values for parameters when specific environments do not have - a value set. Every organization has one default environment that is required - to have a value for every parameter in every project. + a value set. Every organization has one default environment that cannot + be removed. created_at: type: string format: date-time @@ -3030,8 +3009,8 @@ components: nullable: true description: Environments can inherit from a single parent environment which provides values for parameters when specific environments do not have - a value set. Every organization has one default environment that is required - to have a value for every parameter in every project. + a value set. Every organization has one default environment that cannot + be removed. required: - name GitHubIntegration: @@ -3131,6 +3110,7 @@ components: nullable: true content_size: type: integer + nullable: true content_keys: type: array items: @@ -3836,8 +3816,8 @@ components: nullable: true description: Environments can inherit from a single parent environment which provides values for parameters when specific environments do not have - a value set. Every organization has one default environment that is required - to have a value for every parameter in every project. + a value set. Every organization has one default environment that cannot + be removed. created_at: type: string format: date-time diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/gets_id.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/gets_id.yml index 353489e..597f352 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/gets_id.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/gets_id.yml @@ -25,7 +25,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:32:41 GMT + - Thu, 22 Jul 2021 14:02:20 GMT Connection: - close Content-Type: @@ -43,16 +43,16 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=5IY9krbffcfdVVP9k9AozzRZTW6dROxvJ8TYT2DV0TkWP43lFDtZvYKXfe2QnSiC; - expires=Wed, 13 Jul 2022 00:32:41 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=9ggv1rv94bg91qrrqtwn3gnmz4xcwleb; expires=Wed, 28 Jul 2021 00:32:41 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=4RycwWi4P9kF6osJnc5NIzK8yo8O96h9XZnr823NNgv9RD3QWVojUq6XN4jzBCkb; + expires=Thu, 21 Jul 2022 14:02:20 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=xc7f3ylzqr283j4tbx1ia5nnbhkuwv5x; expires=Thu, 05 Aug 2021 14:02:20 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","id":"1c03b5c1-7040-49e4-be35-7594be262c11","name":"default","description":"Default - environment, base for all environments.","parent":null,"created_at":"2021-07-13T17:57:00.029171Z","modified_at":"2021-07-13T17:57:00.029210Z"},{"url":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","id":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","name":"development","description":"Development - deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.048313Z","modified_at":"2021-07-13T17:57:00.048347Z"},{"url":"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/","id":"1eadb281-baa9-4816-8f88-775d0a636f16","name":"production","description":"Production - deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.072603Z","modified_at":"2021-07-13T17:57:00.072636Z"},{"url":"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/","id":"f7f81820-f920-467c-9a37-fc4a6ad518fe","name":"staging","description":"Staging - deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.061960Z","modified_at":"2021-07-13T17:57:00.061995Z"}]}' - recorded_at: Wed, 14 Jul 2021 00:32:41 GMT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","id":"8720a7b8-c8be-4c17-9eb9-2e37c5b876fc","name":"default","description":"Default + environment, base for all environments.","parent":null,"created_at":"2021-07-22T14:01:17.889236Z","modified_at":"2021-07-22T14:01:17.889291Z"},{"url":"https://localhost:8000/api/v1/environments/c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c/","id":"c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c","name":"development","description":"Development + deployment environment","parent":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","created_at":"2021-07-22T14:01:17.913891Z","modified_at":"2021-07-22T14:01:17.913964Z"},{"url":"https://localhost:8000/api/v1/environments/8332d031-f59d-4e79-9ba8-927487555d7c/","id":"8332d031-f59d-4e79-9ba8-927487555d7c","name":"production","description":"Production + deployment environment","parent":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","created_at":"2021-07-22T14:01:17.957566Z","modified_at":"2021-07-22T14:01:17.957710Z"},{"url":"https://localhost:8000/api/v1/environments/60cc35ce-af46-464e-8d87-41de2a3f20ff/","id":"60cc35ce-af46-464e-8d87-41de2a3f20ff","name":"staging","description":"Staging + deployment environment","parent":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","created_at":"2021-07-22T14:01:17.934364Z","modified_at":"2021-07-22T14:01:17.934409Z"}]}' + recorded_at: Thu, 22 Jul 2021 14:02:20 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/raises_if_environment_doesn_t_exist.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/raises_if_environment_doesn_t_exist.yml index bd286c7..b076108 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/raises_if_environment_doesn_t_exist.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/raises_if_environment_doesn_t_exist.yml @@ -25,7 +25,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:32:42 GMT + - Thu, 22 Jul 2021 14:02:21 GMT Connection: - close Content-Type: @@ -43,18 +43,18 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=zzjuDV8Rlx9U2HoPsHXLeDY0xfW1tBPBwv4pfm9JR5cTLfBWsBeq2RmrH4p2mbK8; - expires=Wed, 13 Jul 2022 00:32:42 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=hqbas9yuhvf9s8ax9ocvnm0m3air9m1b; expires=Wed, 28 Jul 2021 00:32:42 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=lLhPa9nICO00LsTG4Qx3k7bAzMixDCOpwUV7WXlZzEl0NyBUhMYqxAfDWFGA5FH0; + expires=Thu, 21 Jul 2022 14:02:21 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=02se9thehmth78osfqxzc5n0es8rat1a; expires=Thu, 05 Aug 2021 14:02:21 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","id":"1c03b5c1-7040-49e4-be35-7594be262c11","name":"default","description":"Default - environment, base for all environments.","parent":null,"created_at":"2021-07-13T17:57:00.029171Z","modified_at":"2021-07-13T17:57:00.029210Z"},{"url":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","id":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","name":"development","description":"Development - deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.048313Z","modified_at":"2021-07-13T17:57:00.048347Z"},{"url":"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/","id":"1eadb281-baa9-4816-8f88-775d0a636f16","name":"production","description":"Production - deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.072603Z","modified_at":"2021-07-13T17:57:00.072636Z"},{"url":"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/","id":"f7f81820-f920-467c-9a37-fc4a6ad518fe","name":"staging","description":"Staging - deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.061960Z","modified_at":"2021-07-13T17:57:00.061995Z"}]}' - recorded_at: Wed, 14 Jul 2021 00:32:42 GMT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","id":"8720a7b8-c8be-4c17-9eb9-2e37c5b876fc","name":"default","description":"Default + environment, base for all environments.","parent":null,"created_at":"2021-07-22T14:01:17.889236Z","modified_at":"2021-07-22T14:01:17.889291Z"},{"url":"https://localhost:8000/api/v1/environments/c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c/","id":"c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c","name":"development","description":"Development + deployment environment","parent":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","created_at":"2021-07-22T14:01:17.913891Z","modified_at":"2021-07-22T14:01:17.913964Z"},{"url":"https://localhost:8000/api/v1/environments/8332d031-f59d-4e79-9ba8-927487555d7c/","id":"8332d031-f59d-4e79-9ba8-927487555d7c","name":"production","description":"Production + deployment environment","parent":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","created_at":"2021-07-22T14:01:17.957566Z","modified_at":"2021-07-22T14:01:17.957710Z"},{"url":"https://localhost:8000/api/v1/environments/60cc35ce-af46-464e-8d87-41de2a3f20ff/","id":"60cc35ce-af46-464e-8d87-41de2a3f20ff","name":"staging","description":"Staging + deployment environment","parent":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","created_at":"2021-07-22T14:01:17.934364Z","modified_at":"2021-07-22T14:01:17.934409Z"}]}' + recorded_at: Thu, 22 Jul 2021 14:02:21 GMT - request: method: get uri: https://localhost:8000/api/v1/environments/ @@ -80,7 +80,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:32:44 GMT + - Thu, 22 Jul 2021 14:02:22 GMT Connection: - close Content-Type: @@ -98,16 +98,16 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=WBXSoUIYffq4xoP4CSbgu2SfuWUlSUFlkpu0dTbFG9kqUFv2OLmnOfsJTQGuiGBW; - expires=Wed, 13 Jul 2022 00:32:44 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=eq1u3dvb5s1h2nwnknbsf2s8key6izsd; expires=Wed, 28 Jul 2021 00:32:44 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=J7LYfNOAMqJQ4DYm72QCEjnpqxxrEcSsMJX4dc0B6olBVHPLPvM15aRUiiKMHv7H; + expires=Thu, 21 Jul 2022 14:02:22 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=hpdooru07i3ejnbms8rbzidk4el9tk6i; expires=Thu, 05 Aug 2021 14:02:22 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","id":"1c03b5c1-7040-49e4-be35-7594be262c11","name":"default","description":"Default - environment, base for all environments.","parent":null,"created_at":"2021-07-13T17:57:00.029171Z","modified_at":"2021-07-13T17:57:00.029210Z"},{"url":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","id":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","name":"development","description":"Development - deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.048313Z","modified_at":"2021-07-13T17:57:00.048347Z"},{"url":"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/","id":"1eadb281-baa9-4816-8f88-775d0a636f16","name":"production","description":"Production - deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.072603Z","modified_at":"2021-07-13T17:57:00.072636Z"},{"url":"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/","id":"f7f81820-f920-467c-9a37-fc4a6ad518fe","name":"staging","description":"Staging - deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.061960Z","modified_at":"2021-07-13T17:57:00.061995Z"}]}' - recorded_at: Wed, 14 Jul 2021 00:32:44 GMT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","id":"8720a7b8-c8be-4c17-9eb9-2e37c5b876fc","name":"default","description":"Default + environment, base for all environments.","parent":null,"created_at":"2021-07-22T14:01:17.889236Z","modified_at":"2021-07-22T14:01:17.889291Z"},{"url":"https://localhost:8000/api/v1/environments/c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c/","id":"c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c","name":"development","description":"Development + deployment environment","parent":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","created_at":"2021-07-22T14:01:17.913891Z","modified_at":"2021-07-22T14:01:17.913964Z"},{"url":"https://localhost:8000/api/v1/environments/8332d031-f59d-4e79-9ba8-927487555d7c/","id":"8332d031-f59d-4e79-9ba8-927487555d7c","name":"production","description":"Production + deployment environment","parent":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","created_at":"2021-07-22T14:01:17.957566Z","modified_at":"2021-07-22T14:01:17.957710Z"},{"url":"https://localhost:8000/api/v1/environments/60cc35ce-af46-464e-8d87-41de2a3f20ff/","id":"60cc35ce-af46-464e-8d87-41de2a3f20ff","name":"staging","description":"Staging + deployment environment","parent":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","created_at":"2021-07-22T14:01:17.934364Z","modified_at":"2021-07-22T14:01:17.934409Z"}]}' + recorded_at: Thu, 22 Jul 2021 14:02:22 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/retries_if_environment_doesn_t_exist.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/retries_if_environment_doesn_t_exist.yml index c6ae9d7..b056ccd 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/retries_if_environment_doesn_t_exist.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_environment_id/retries_if_environment_doesn_t_exist.yml @@ -25,7 +25,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:32:46 GMT + - Thu, 22 Jul 2021 14:02:23 GMT Connection: - close Content-Type: @@ -43,18 +43,18 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=RoTJ5HXnwVR1trGrX7of1Al7CL2MGZv3EqlP0bYquvNTh8cMI02vv64PT1BjmMXp; - expires=Wed, 13 Jul 2022 00:32:46 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=ht15sue1467jo4z0d4ss2yvh467gyac1; expires=Wed, 28 Jul 2021 00:32:46 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=olUME6O85vgTbdSSxDcTWpCv9mdDbtRgsfjkeS8xtbqocLiy5SWPtz7aVB0If0Hy; + expires=Thu, 21 Jul 2022 14:02:23 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=3gt7apt6rl7xi8kezauazrnxrqgchfyl; expires=Thu, 05 Aug 2021 14:02:23 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","id":"1c03b5c1-7040-49e4-be35-7594be262c11","name":"default","description":"Default - environment, base for all environments.","parent":null,"created_at":"2021-07-13T17:57:00.029171Z","modified_at":"2021-07-13T17:57:00.029210Z"},{"url":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","id":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","name":"development","description":"Development - deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.048313Z","modified_at":"2021-07-13T17:57:00.048347Z"},{"url":"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/","id":"1eadb281-baa9-4816-8f88-775d0a636f16","name":"production","description":"Production - deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.072603Z","modified_at":"2021-07-13T17:57:00.072636Z"},{"url":"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/","id":"f7f81820-f920-467c-9a37-fc4a6ad518fe","name":"staging","description":"Staging - deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.061960Z","modified_at":"2021-07-13T17:57:00.061995Z"}]}' - recorded_at: Wed, 14 Jul 2021 00:32:46 GMT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","id":"8720a7b8-c8be-4c17-9eb9-2e37c5b876fc","name":"default","description":"Default + environment, base for all environments.","parent":null,"created_at":"2021-07-22T14:01:17.889236Z","modified_at":"2021-07-22T14:01:17.889291Z"},{"url":"https://localhost:8000/api/v1/environments/c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c/","id":"c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c","name":"development","description":"Development + deployment environment","parent":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","created_at":"2021-07-22T14:01:17.913891Z","modified_at":"2021-07-22T14:01:17.913964Z"},{"url":"https://localhost:8000/api/v1/environments/8332d031-f59d-4e79-9ba8-927487555d7c/","id":"8332d031-f59d-4e79-9ba8-927487555d7c","name":"production","description":"Production + deployment environment","parent":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","created_at":"2021-07-22T14:01:17.957566Z","modified_at":"2021-07-22T14:01:17.957710Z"},{"url":"https://localhost:8000/api/v1/environments/60cc35ce-af46-464e-8d87-41de2a3f20ff/","id":"60cc35ce-af46-464e-8d87-41de2a3f20ff","name":"staging","description":"Staging + deployment environment","parent":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","created_at":"2021-07-22T14:01:17.934364Z","modified_at":"2021-07-22T14:01:17.934409Z"}]}' + recorded_at: Thu, 22 Jul 2021 14:02:23 GMT - request: method: get uri: https://localhost:8000/api/v1/environments/ @@ -80,7 +80,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:32:47 GMT + - Thu, 22 Jul 2021 14:02:24 GMT Connection: - close Content-Type: @@ -98,16 +98,16 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=qMEQnOBFnzXAcmIFEuygBhe99UwR7GJeOxoNTvh2sCVe4Wt58teo4Zvi4YKmQU5L; - expires=Wed, 13 Jul 2022 00:32:47 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=b596hncedlysdnjeghsfubb7ew39c3ny; expires=Wed, 28 Jul 2021 00:32:47 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=4SdYm3uZdtgbDFQG4pNbHBX7EL1CHFbQatekQ1ErmgBxcspSZx11bKrMmjcyighC; + expires=Thu, 21 Jul 2022 14:02:24 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=dda9ke77u3k28ry2xcehqf0sgne6knz0; expires=Thu, 05 Aug 2021 14:02:24 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","id":"1c03b5c1-7040-49e4-be35-7594be262c11","name":"default","description":"Default - environment, base for all environments.","parent":null,"created_at":"2021-07-13T17:57:00.029171Z","modified_at":"2021-07-13T17:57:00.029210Z"},{"url":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","id":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","name":"development","description":"Development - deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.048313Z","modified_at":"2021-07-13T17:57:00.048347Z"},{"url":"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/","id":"1eadb281-baa9-4816-8f88-775d0a636f16","name":"production","description":"Production - deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.072603Z","modified_at":"2021-07-13T17:57:00.072636Z"},{"url":"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/","id":"f7f81820-f920-467c-9a37-fc4a6ad518fe","name":"staging","description":"Staging - deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.061960Z","modified_at":"2021-07-13T17:57:00.061995Z"}]}' - recorded_at: Wed, 14 Jul 2021 00:32:47 GMT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","id":"8720a7b8-c8be-4c17-9eb9-2e37c5b876fc","name":"default","description":"Default + environment, base for all environments.","parent":null,"created_at":"2021-07-22T14:01:17.889236Z","modified_at":"2021-07-22T14:01:17.889291Z"},{"url":"https://localhost:8000/api/v1/environments/c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c/","id":"c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c","name":"development","description":"Development + deployment environment","parent":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","created_at":"2021-07-22T14:01:17.913891Z","modified_at":"2021-07-22T14:01:17.913964Z"},{"url":"https://localhost:8000/api/v1/environments/8332d031-f59d-4e79-9ba8-927487555d7c/","id":"8332d031-f59d-4e79-9ba8-927487555d7c","name":"production","description":"Production + deployment environment","parent":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","created_at":"2021-07-22T14:01:17.957566Z","modified_at":"2021-07-22T14:01:17.957710Z"},{"url":"https://localhost:8000/api/v1/environments/60cc35ce-af46-464e-8d87-41de2a3f20ff/","id":"60cc35ce-af46-464e-8d87-41de2a3f20ff","name":"staging","description":"Staging + deployment environment","parent":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","created_at":"2021-07-22T14:01:17.934364Z","modified_at":"2021-07-22T14:01:17.934409Z"}]}' + recorded_at: Thu, 22 Jul 2021 14:02:24 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_environments/gets_environments.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_environments/gets_environments.yml index 8d273b7..9362e1d 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_environments/gets_environments.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_environments/gets_environments.yml @@ -25,7 +25,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:32:38 GMT + - Thu, 22 Jul 2021 14:02:18 GMT Connection: - close Content-Type: @@ -43,16 +43,16 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=RaaqZRhaNnoLgHTygPYHhUhomVwpmoDaBJxJNH5ThLBRpp8t732f86ScTCuZi0Fs; - expires=Wed, 13 Jul 2022 00:32:38 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=xiucukgdg9nbnoh1hsf8jtjhbwvs3z88; expires=Wed, 28 Jul 2021 00:32:38 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=fXNQJaQsqlLsQ6kPforSyprCghU93YW6kZVSYbEY9Y3sERCLQuSTgi0PO8q2rokg; + expires=Thu, 21 Jul 2022 14:02:18 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=cr9yof77dnsnz5lmzsey6xv4e7jots07; expires=Thu, 05 Aug 2021 14:02:18 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","id":"1c03b5c1-7040-49e4-be35-7594be262c11","name":"default","description":"Default - environment, base for all environments.","parent":null,"created_at":"2021-07-13T17:57:00.029171Z","modified_at":"2021-07-13T17:57:00.029210Z"},{"url":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","id":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","name":"development","description":"Development - deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.048313Z","modified_at":"2021-07-13T17:57:00.048347Z"},{"url":"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/","id":"1eadb281-baa9-4816-8f88-775d0a636f16","name":"production","description":"Production - deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.072603Z","modified_at":"2021-07-13T17:57:00.072636Z"},{"url":"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/","id":"f7f81820-f920-467c-9a37-fc4a6ad518fe","name":"staging","description":"Staging - deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.061960Z","modified_at":"2021-07-13T17:57:00.061995Z"}]}' - recorded_at: Wed, 14 Jul 2021 00:32:38 GMT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","id":"8720a7b8-c8be-4c17-9eb9-2e37c5b876fc","name":"default","description":"Default + environment, base for all environments.","parent":null,"created_at":"2021-07-22T14:01:17.889236Z","modified_at":"2021-07-22T14:01:17.889291Z"},{"url":"https://localhost:8000/api/v1/environments/c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c/","id":"c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c","name":"development","description":"Development + deployment environment","parent":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","created_at":"2021-07-22T14:01:17.913891Z","modified_at":"2021-07-22T14:01:17.913964Z"},{"url":"https://localhost:8000/api/v1/environments/8332d031-f59d-4e79-9ba8-927487555d7c/","id":"8332d031-f59d-4e79-9ba8-927487555d7c","name":"production","description":"Production + deployment environment","parent":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","created_at":"2021-07-22T14:01:17.957566Z","modified_at":"2021-07-22T14:01:17.957710Z"},{"url":"https://localhost:8000/api/v1/environments/60cc35ce-af46-464e-8d87-41de2a3f20ff/","id":"60cc35ce-af46-464e-8d87-41de2a3f20ff","name":"staging","description":"Staging + deployment environment","parent":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","created_at":"2021-07-22T14:01:17.934364Z","modified_at":"2021-07-22T14:01:17.934409Z"}]}' + recorded_at: Thu, 22 Jul 2021 14:02:18 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_environments/memoizes_environments.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_environments/memoizes_environments.yml index d10b91f..17cc63b 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_environments/memoizes_environments.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_environments/memoizes_environments.yml @@ -25,7 +25,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:32:40 GMT + - Thu, 22 Jul 2021 14:02:20 GMT Connection: - close Content-Type: @@ -43,16 +43,16 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=TG4yCY85AgPEgnK0fyMY4mzLQLlYC6XsOZkgiNtiJK7V1FobTNtDp9iUG7SfjvF8; - expires=Wed, 13 Jul 2022 00:32:40 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=1ttsonnv649hkiuo4jo6jgpcjdvud7k1; expires=Wed, 28 Jul 2021 00:32:40 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=beHC0GCTrGXr3OEt9neBfOdjaKxIganw93KlocGc3XXXaa7DaTqv1YCO9mnzpxDm; + expires=Thu, 21 Jul 2022 14:02:19 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=y1ifpyca0rwtkcc3yubsjzars21e8yut; expires=Thu, 05 Aug 2021 14:02:19 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","id":"1c03b5c1-7040-49e4-be35-7594be262c11","name":"default","description":"Default - environment, base for all environments.","parent":null,"created_at":"2021-07-13T17:57:00.029171Z","modified_at":"2021-07-13T17:57:00.029210Z"},{"url":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","id":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","name":"development","description":"Development - deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.048313Z","modified_at":"2021-07-13T17:57:00.048347Z"},{"url":"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/","id":"1eadb281-baa9-4816-8f88-775d0a636f16","name":"production","description":"Production - deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.072603Z","modified_at":"2021-07-13T17:57:00.072636Z"},{"url":"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/","id":"f7f81820-f920-467c-9a37-fc4a6ad518fe","name":"staging","description":"Staging - deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.061960Z","modified_at":"2021-07-13T17:57:00.061995Z"}]}' - recorded_at: Wed, 14 Jul 2021 00:32:40 GMT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","id":"8720a7b8-c8be-4c17-9eb9-2e37c5b876fc","name":"default","description":"Default + environment, base for all environments.","parent":null,"created_at":"2021-07-22T14:01:17.889236Z","modified_at":"2021-07-22T14:01:17.889291Z"},{"url":"https://localhost:8000/api/v1/environments/c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c/","id":"c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c","name":"development","description":"Development + deployment environment","parent":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","created_at":"2021-07-22T14:01:17.913891Z","modified_at":"2021-07-22T14:01:17.913964Z"},{"url":"https://localhost:8000/api/v1/environments/8332d031-f59d-4e79-9ba8-927487555d7c/","id":"8332d031-f59d-4e79-9ba8-927487555d7c","name":"production","description":"Production + deployment environment","parent":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","created_at":"2021-07-22T14:01:17.957566Z","modified_at":"2021-07-22T14:01:17.957710Z"},{"url":"https://localhost:8000/api/v1/environments/60cc35ce-af46-464e-8d87-41de2a3f20ff/","id":"60cc35ce-af46-464e-8d87-41de2a3f20ff","name":"staging","description":"Staging + deployment environment","parent":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","created_at":"2021-07-22T14:01:17.934364Z","modified_at":"2021-07-22T14:01:17.934409Z"}]}' + recorded_at: Thu, 22 Jul 2021 14:02:19 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/doesn_t_expose_secret_in_debug_log.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/doesn_t_expose_secret_in_debug_log.yml index 7b1d572..aaa19e5 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/doesn_t_expose_secret_in_debug_log.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/doesn_t_expose_secret_in_debug_log.yml @@ -25,7 +25,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:13 GMT + - Thu, 22 Jul 2021 14:02:38 GMT Connection: - close Content-Type: @@ -43,18 +43,18 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=YA6mGGNl4DSdIg4fYHrUwLEbzV0fKU5Ba3xPA9RSnH6OIwCqqXr6wi29T27AHC9s; - expires=Wed, 13 Jul 2022 00:33:13 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=2qa2t8yib0aqtes4m29vh3syffpdt0q1; expires=Wed, 28 Jul 2021 00:33:13 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=Ver6LSaTZ3AxpPZj1gF8p3NcoVeaTMroB440aOaD0SyHqV9zhNSmY8VHAbbRC828; + expires=Thu, 21 Jul 2022 14:02:38 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=ot5f0k9ogmb5wbp42aeg5fsg4vjyji66; expires=Thu, 05 Aug 2021 14:02:38 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/0fe82ebf-0abf-4567-b681-38245fd86feb/","id":"0fe82ebf-0abf-4567-b681-38245fd86feb","name":"TestProject","description":"","created_at":"2021-07-14T00:33:03.674185Z","modified_at":"2021-07-14T00:33:03.674227Z"}]}' - recorded_at: Wed, 14 Jul 2021 00:33:13 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/f771a465-728a-4459-8738-ee633aafdb90/","id":"f771a465-728a-4459-8738-ee633aafdb90","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-22T14:01:17.862316Z","modified_at":"2021-07-22T14:01:17.862382Z"},{"url":"https://localhost:8000/api/v1/projects/80e19fbb-bc9a-4869-89c3-444fab355d49/","id":"80e19fbb-bc9a-4869-89c3-444fab355d49","name":"TestProject","description":"","created_at":"2021-07-22T14:02:32.365991Z","modified_at":"2021-07-22T14:02:32.366028Z"}]}' + recorded_at: Thu, 22 Jul 2021 14:02:38 GMT - request: method: delete - uri: https://localhost:8000/api/v1/projects/0fe82ebf-0abf-4567-b681-38245fd86feb/ + uri: https://localhost:8000/api/v1/projects/80e19fbb-bc9a-4869-89c3-444fab355d49/ body: encoding: US-ASCII string: '' @@ -77,7 +77,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:15 GMT + - Thu, 22 Jul 2021 14:02:40 GMT Connection: - close Vary: @@ -93,14 +93,14 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=D3zYcz4XJHf1Bo17GabKwsYWVOtdZigIXXnBOwgJjhx19DkYXbmy7Hpr4FolkIz5; - expires=Wed, 13 Jul 2022 00:33:15 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=2kz1o9cl3q0iihytjxc7zcfequ2mgxmk; expires=Wed, 28 Jul 2021 00:33:15 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=L9Zl0njgJLUA6MRu098X4hLICzVJvztqGEwhDroSMl4ZWJGIoNie1O26r7Puj1l1; + expires=Thu, 21 Jul 2022 14:02:40 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=64518inhan5z4t7u8bkgcti4c7psejlq; expires=Thu, 05 Aug 2021 14:02:40 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 string: '' - recorded_at: Wed, 14 Jul 2021 00:33:15 GMT + recorded_at: Thu, 22 Jul 2021 14:02:40 GMT - request: method: post uri: https://localhost:8000/api/v1/projects/ @@ -126,13 +126,13 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:16 GMT + - Thu, 22 Jul 2021 14:02:40 GMT Connection: - close Content-Type: - application/json Location: - - https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/ + - https://localhost:8000/api/v1/projects/3401da03-3bbb-47d4-a6bc-8be59fa8de5b/ Vary: - Accept, Cookie, Origin Allow: @@ -146,14 +146,14 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=9CXZu29csfP7qRNY9mYRA4Bi7f2XFQKn29X6wzt4CnGwDpRk5iqUNuX0P6ERYCcH; - expires=Wed, 13 Jul 2022 00:33:16 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=mf0nwhw8ebyupofhqsxemymyjo33cnjw; expires=Wed, 28 Jul 2021 00:33:16 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=dM6WwZLil4NY1TRGlXKiwHu9RaCGgOKPjbOj2GKmziiMtgsIMRcC7oOg0JeZR1Xl; + expires=Thu, 21 Jul 2022 14:02:40 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=6kb6xhouuapgzplvttc1idgjtggc8k78; expires=Thu, 05 Aug 2021 14:02:40 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"url":"https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/","id":"f76f1696-252c-4289-8fdc-e611579e4dba","name":"TestProject","description":"","created_at":"2021-07-14T00:33:16.808298Z","modified_at":"2021-07-14T00:33:16.808341Z"}' - recorded_at: Wed, 14 Jul 2021 00:33:16 GMT + string: '{"url":"https://localhost:8000/api/v1/projects/3401da03-3bbb-47d4-a6bc-8be59fa8de5b/","id":"3401da03-3bbb-47d4-a6bc-8be59fa8de5b","name":"TestProject","description":"","created_at":"2021-07-22T14:02:40.974824Z","modified_at":"2021-07-22T14:02:40.974862Z"}' + recorded_at: Thu, 22 Jul 2021 14:02:40 GMT - request: method: get uri: https://localhost:8000/api/v1/projects/ @@ -179,7 +179,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:18 GMT + - Thu, 22 Jul 2021 14:02:41 GMT Connection: - close Content-Type: @@ -197,18 +197,18 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=bt5w2SA96MhkgbktIRPIEUFXtu08EKaUHvY261ui7qT8i7AJx9zCH7beSTBZTwJa; - expires=Wed, 13 Jul 2022 00:33:18 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=grb9kg607156cql7des1olamcqp1maic; expires=Wed, 28 Jul 2021 00:33:18 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=qsomykNXAdbnYl07g6XJIiaU3w2MmtUQ1jcP8epCgOuIon0w2xEOrpetVw5XLIWX; + expires=Thu, 21 Jul 2022 14:02:41 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=26xhdfohq4z3yqqsoqvflgg0u9dz43hh; expires=Thu, 05 Aug 2021 14:02:41 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/","id":"f76f1696-252c-4289-8fdc-e611579e4dba","name":"TestProject","description":"","created_at":"2021-07-14T00:33:16.808298Z","modified_at":"2021-07-14T00:33:16.808341Z"}]}' - recorded_at: Wed, 14 Jul 2021 00:33:18 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/f771a465-728a-4459-8738-ee633aafdb90/","id":"f771a465-728a-4459-8738-ee633aafdb90","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-22T14:01:17.862316Z","modified_at":"2021-07-22T14:01:17.862382Z"},{"url":"https://localhost:8000/api/v1/projects/3401da03-3bbb-47d4-a6bc-8be59fa8de5b/","id":"3401da03-3bbb-47d4-a6bc-8be59fa8de5b","name":"TestProject","description":"","created_at":"2021-07-22T14:02:40.974824Z","modified_at":"2021-07-22T14:02:40.974862Z"}]}' + recorded_at: Thu, 22 Jul 2021 14:02:41 GMT - request: method: post - uri: https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/ + uri: https://localhost:8000/api/v1/projects/3401da03-3bbb-47d4-a6bc-8be59fa8de5b/parameters/ body: encoding: UTF-8 string: '{"name":"one"}' @@ -231,13 +231,13 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:19 GMT + - Thu, 22 Jul 2021 14:02:42 GMT Connection: - close Content-Type: - application/json Location: - - https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/33eb5177-80ee-470c-a73e-baacc27e9e55/ + - https://localhost:8000/api/v1/projects/3401da03-3bbb-47d4-a6bc-8be59fa8de5b/parameters/122e9df2-a735-4e3d-be1e-1d71043d2365/ Vary: - Accept, Cookie, Origin Allow: @@ -251,17 +251,17 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=ANZIMOyg09lAcglcxL6aQjqb3xVPArRRjiWIjpherlAosMDBcLZCBX1r4QzIP0IS; - expires=Wed, 13 Jul 2022 00:33:19 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=gptpwx0uiqqdwtgm35z84a8tu4d4poe1; expires=Wed, 28 Jul 2021 00:33:19 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=xLxA61yuu8dZlv7N0n46FkduDCXnkco7FcUikE5thoHdb5II8x7YBcPydyjdJik2; + expires=Thu, 21 Jul 2022 14:02:42 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=p41qcvosr2gta4lnqhofbbhft6jqoho5; expires=Thu, 05 Aug 2021 14:02:42 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"url":"https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/33eb5177-80ee-470c-a73e-baacc27e9e55/","id":"33eb5177-80ee-470c-a73e-baacc27e9e55","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null,"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":null,"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/":null,"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/":null},"created_at":"2021-07-14T00:33:19.533724Z","modified_at":"2021-07-14T00:33:19.533760Z"}' - recorded_at: Wed, 14 Jul 2021 00:33:19 GMT + string: '{"url":"https://localhost:8000/api/v1/projects/3401da03-3bbb-47d4-a6bc-8be59fa8de5b/parameters/122e9df2-a735-4e3d-be1e-1d71043d2365/","id":"122e9df2-a735-4e3d-be1e-1d71043d2365","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/":null,"https://localhost:8000/api/v1/environments/c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c/":null,"https://localhost:8000/api/v1/environments/8332d031-f59d-4e79-9ba8-927487555d7c/":null,"https://localhost:8000/api/v1/environments/60cc35ce-af46-464e-8d87-41de2a3f20ff/":null},"created_at":"2021-07-22T14:02:42.712501Z","modified_at":"2021-07-22T14:02:42.712536Z"}' + recorded_at: Thu, 22 Jul 2021 14:02:42 GMT - request: method: post - uri: https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/ + uri: https://localhost:8000/api/v1/projects/3401da03-3bbb-47d4-a6bc-8be59fa8de5b/parameters/ body: encoding: UTF-8 string: '{"name":"two"}' @@ -284,13 +284,13 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:21 GMT + - Thu, 22 Jul 2021 14:02:43 GMT Connection: - close Content-Type: - application/json Location: - - https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/fe279bbd-b038-452c-8cdd-c152c44376ae/ + - https://localhost:8000/api/v1/projects/3401da03-3bbb-47d4-a6bc-8be59fa8de5b/parameters/ebfec411-ec4e-491a-9739-a01c2fbf2b7a/ Vary: - Accept, Cookie, Origin Allow: @@ -304,17 +304,17 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=HAWPFLGH2S5CJ8org5iHggqc4PDqzSOyG3xRHA7gguIKXHcG2oEh9brimxTcNPtd; - expires=Wed, 13 Jul 2022 00:33:21 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=egv58hh0wzziz4pnlk4x07crclu6v5eq; expires=Wed, 28 Jul 2021 00:33:21 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=QqLQYhi505hEc4R7wmhFFEeScneDElYjbxqlz0e27LcucaGq19wMd7SBBC7HYjk8; + expires=Thu, 21 Jul 2022 14:02:43 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=hlfzxsboba2l5lo6amitxrdb0y915mqi; expires=Thu, 05 Aug 2021 14:02:43 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"url":"https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/fe279bbd-b038-452c-8cdd-c152c44376ae/","id":"fe279bbd-b038-452c-8cdd-c152c44376ae","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null,"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":null,"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/":null,"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/":null},"created_at":"2021-07-14T00:33:21.122355Z","modified_at":"2021-07-14T00:33:21.122397Z"}' - recorded_at: Wed, 14 Jul 2021 00:33:21 GMT + string: '{"url":"https://localhost:8000/api/v1/projects/3401da03-3bbb-47d4-a6bc-8be59fa8de5b/parameters/ebfec411-ec4e-491a-9739-a01c2fbf2b7a/","id":"ebfec411-ec4e-491a-9739-a01c2fbf2b7a","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/":null,"https://localhost:8000/api/v1/environments/c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c/":null,"https://localhost:8000/api/v1/environments/8332d031-f59d-4e79-9ba8-927487555d7c/":null,"https://localhost:8000/api/v1/environments/60cc35ce-af46-464e-8d87-41de2a3f20ff/":null},"created_at":"2021-07-22T14:02:43.755781Z","modified_at":"2021-07-22T14:02:43.755817Z"}' + recorded_at: Thu, 22 Jul 2021 14:02:43 GMT - request: method: post - uri: https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/ + uri: https://localhost:8000/api/v1/projects/3401da03-3bbb-47d4-a6bc-8be59fa8de5b/parameters/ body: encoding: UTF-8 string: '{"name":"three","secret":true}' @@ -337,13 +337,13 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:22 GMT + - Thu, 22 Jul 2021 14:02:44 GMT Connection: - close Content-Type: - application/json Location: - - https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/0dc81dde-f8f4-4b55-bbed-420f6b2aee8e/ + - https://localhost:8000/api/v1/projects/3401da03-3bbb-47d4-a6bc-8be59fa8de5b/parameters/26ab3352-0375-494b-9647-ecc9f41896f9/ Vary: - Accept, Cookie, Origin Allow: @@ -357,14 +357,14 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=8PXgOkvoUfQaLFQeu4HacIaPet1g0QRCbdaxvQqn4sCEiUDJIWsU7mRzrpSAC1Jm; - expires=Wed, 13 Jul 2022 00:33:22 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=qvcxxu1nsy6sz66iux39ycp5tcrarv69; expires=Wed, 28 Jul 2021 00:33:22 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=QenvfxrvaaiurIiVN1xipAmNAWjm4n70TpaSXGIktsurXa3Z18JQW2C5M564rUo2; + expires=Thu, 21 Jul 2022 14:02:44 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=cc0zfkleo6ovyy34qt5r0ghav5006sl6; expires=Thu, 05 Aug 2021 14:02:44 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"url":"https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/0dc81dde-f8f4-4b55-bbed-420f6b2aee8e/","id":"0dc81dde-f8f4-4b55-bbed-420f6b2aee8e","name":"three","description":"","secret":true,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null,"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":null,"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/":null,"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/":null},"created_at":"2021-07-14T00:33:22.580147Z","modified_at":"2021-07-14T00:33:22.580185Z"}' - recorded_at: Wed, 14 Jul 2021 00:33:22 GMT + string: '{"url":"https://localhost:8000/api/v1/projects/3401da03-3bbb-47d4-a6bc-8be59fa8de5b/parameters/26ab3352-0375-494b-9647-ecc9f41896f9/","id":"26ab3352-0375-494b-9647-ecc9f41896f9","name":"three","description":"","secret":true,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/":null,"https://localhost:8000/api/v1/environments/c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c/":null,"https://localhost:8000/api/v1/environments/8332d031-f59d-4e79-9ba8-927487555d7c/":null,"https://localhost:8000/api/v1/environments/60cc35ce-af46-464e-8d87-41de2a3f20ff/":null},"created_at":"2021-07-22T14:02:44.695699Z","modified_at":"2021-07-22T14:02:44.695735Z"}' + recorded_at: Thu, 22 Jul 2021 14:02:44 GMT - request: method: get uri: https://localhost:8000/api/v1/environments/ @@ -390,7 +390,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:24 GMT + - Thu, 22 Jul 2021 14:02:45 GMT Connection: - close Content-Type: @@ -408,24 +408,24 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=xYcQRKtZXWDyoAEjyiFLZHQ8T7qZelE1Bs4KGi9ZKzFUEMUG3LnVNhRPyWYgGvNy; - expires=Wed, 13 Jul 2022 00:33:24 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=3wes2klh5adqnhfabe4laqy30t5f3d4s; expires=Wed, 28 Jul 2021 00:33:24 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=o7C8hlAOUn2u4Ap1tUyxxVuhDgGjTThq2o4WTAw9vnfwiCZK4ZBWPRIqUSScW5G4; + expires=Thu, 21 Jul 2022 14:02:45 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=voahx1beejsavpoytdafrzwjx62itx55; expires=Thu, 05 Aug 2021 14:02:45 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","id":"1c03b5c1-7040-49e4-be35-7594be262c11","name":"default","description":"Default - environment, base for all environments.","parent":null,"created_at":"2021-07-13T17:57:00.029171Z","modified_at":"2021-07-13T17:57:00.029210Z"},{"url":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","id":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","name":"development","description":"Development - deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.048313Z","modified_at":"2021-07-13T17:57:00.048347Z"},{"url":"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/","id":"1eadb281-baa9-4816-8f88-775d0a636f16","name":"production","description":"Production - deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.072603Z","modified_at":"2021-07-13T17:57:00.072636Z"},{"url":"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/","id":"f7f81820-f920-467c-9a37-fc4a6ad518fe","name":"staging","description":"Staging - deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.061960Z","modified_at":"2021-07-13T17:57:00.061995Z"}]}' - recorded_at: Wed, 14 Jul 2021 00:33:24 GMT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","id":"8720a7b8-c8be-4c17-9eb9-2e37c5b876fc","name":"default","description":"Default + environment, base for all environments.","parent":null,"created_at":"2021-07-22T14:01:17.889236Z","modified_at":"2021-07-22T14:01:17.889291Z"},{"url":"https://localhost:8000/api/v1/environments/c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c/","id":"c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c","name":"development","description":"Development + deployment environment","parent":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","created_at":"2021-07-22T14:01:17.913891Z","modified_at":"2021-07-22T14:01:17.913964Z"},{"url":"https://localhost:8000/api/v1/environments/8332d031-f59d-4e79-9ba8-927487555d7c/","id":"8332d031-f59d-4e79-9ba8-927487555d7c","name":"production","description":"Production + deployment environment","parent":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","created_at":"2021-07-22T14:01:17.957566Z","modified_at":"2021-07-22T14:01:17.957710Z"},{"url":"https://localhost:8000/api/v1/environments/60cc35ce-af46-464e-8d87-41de2a3f20ff/","id":"60cc35ce-af46-464e-8d87-41de2a3f20ff","name":"staging","description":"Staging + deployment environment","parent":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","created_at":"2021-07-22T14:01:17.934364Z","modified_at":"2021-07-22T14:01:17.934409Z"}]}' + recorded_at: Thu, 22 Jul 2021 14:02:45 GMT - request: method: post - uri: https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/0dc81dde-f8f4-4b55-bbed-420f6b2aee8e/values/ + uri: https://localhost:8000/api/v1/projects/3401da03-3bbb-47d4-a6bc-8be59fa8de5b/parameters/26ab3352-0375-494b-9647-ecc9f41896f9/values/ body: encoding: UTF-8 - string: '{"environment":"1c03b5c1-7040-49e4-be35-7594be262c11","dynamic":false,"static_value":"defaultthree"}' + string: '{"environment":"8720a7b8-c8be-4c17-9eb9-2e37c5b876fc","dynamic":false,"static_value":"defaultthree"}' headers: Content-Type: - application/json @@ -445,13 +445,13 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:27 GMT + - Thu, 22 Jul 2021 14:02:48 GMT Connection: - close Content-Type: - application/json Location: - - https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/0dc81dde-f8f4-4b55-bbed-420f6b2aee8e/values/f23e37a0-3253-4e9f-8720-1314e2a487f4/ + - https://localhost:8000/api/v1/projects/3401da03-3bbb-47d4-a6bc-8be59fa8de5b/parameters/26ab3352-0375-494b-9647-ecc9f41896f9/values/fe6cb5e1-e537-4cea-9375-01fb6670005c/ Vary: - Accept, Cookie, Origin Allow: @@ -465,14 +465,14 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=ldckygywBUZ8YEWg2wntyPPOAY0R01kJcDQ1Hcys1RYjDQNyrGlCaDiFAW2nP4vv; - expires=Wed, 13 Jul 2022 00:33:27 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=ge7y0pktvwmvfbrdlwq6i96j69sc7fs4; expires=Wed, 28 Jul 2021 00:33:27 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=8LblL2YBrs62tX3uakgsJI5an5KPL9BrkFCeylmzC5F1f50MUI9TMmiyt692rAxK; + expires=Thu, 21 Jul 2022 14:02:48 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=1ijml7vxrkx4zt44hsrw6evvpx26jqbu; expires=Thu, 05 Aug 2021 14:02:48 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"url":"https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/0dc81dde-f8f4-4b55-bbed-420f6b2aee8e/values/f23e37a0-3253-4e9f-8720-1314e2a487f4/","id":"f23e37a0-3253-4e9f-8720-1314e2a487f4","environment":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","parameter":"https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/0dc81dde-f8f4-4b55-bbed-420f6b2aee8e/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":null,"value":"defaultthree","created_at":"2021-07-14T00:33:25.951074Z","modified_at":"2021-07-14T00:33:25.951107Z"}' - recorded_at: Wed, 14 Jul 2021 00:33:27 GMT + string: '{"url":"https://localhost:8000/api/v1/projects/3401da03-3bbb-47d4-a6bc-8be59fa8de5b/parameters/26ab3352-0375-494b-9647-ecc9f41896f9/values/fe6cb5e1-e537-4cea-9375-01fb6670005c/","id":"fe6cb5e1-e537-4cea-9375-01fb6670005c","environment":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","parameter":"https://localhost:8000/api/v1/projects/3401da03-3bbb-47d4-a6bc-8be59fa8de5b/parameters/26ab3352-0375-494b-9647-ecc9f41896f9/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":null,"value":"defaultthree","created_at":"2021-07-22T14:02:46.764759Z","modified_at":"2021-07-22T14:02:46.764800Z"}' + recorded_at: Thu, 22 Jul 2021 14:02:48 GMT - request: method: get uri: https://localhost:8000/api/v1/projects/ @@ -498,7 +498,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:29 GMT + - Thu, 22 Jul 2021 14:02:49 GMT Connection: - close Content-Type: @@ -516,18 +516,18 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=q7I1uyofDXT1ukqcsdOEtIn7t6ma1Hj7qBtJbpbI3EbkL3BSgpfNAobz7hDYvTnn; - expires=Wed, 13 Jul 2022 00:33:29 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=ogxtswbfzoetov4vabvjya6hc8o3gg4a; expires=Wed, 28 Jul 2021 00:33:29 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=jihIREs24WlqSVJ8iqhKsiEROBuOL9szJG9IW392cwOYutrhEyY3pxyOSbP4FdX2; + expires=Thu, 21 Jul 2022 14:02:49 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=zp8q0piogsr0msij71jjtmh4w69tlghd; expires=Thu, 05 Aug 2021 14:02:49 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/","id":"f76f1696-252c-4289-8fdc-e611579e4dba","name":"TestProject","description":"","created_at":"2021-07-14T00:33:16.808298Z","modified_at":"2021-07-14T00:33:16.808341Z"}]}' - recorded_at: Wed, 14 Jul 2021 00:33:29 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/f771a465-728a-4459-8738-ee633aafdb90/","id":"f771a465-728a-4459-8738-ee633aafdb90","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-22T14:01:17.862316Z","modified_at":"2021-07-22T14:01:17.862382Z"},{"url":"https://localhost:8000/api/v1/projects/3401da03-3bbb-47d4-a6bc-8be59fa8de5b/","id":"3401da03-3bbb-47d4-a6bc-8be59fa8de5b","name":"TestProject","description":"","created_at":"2021-07-22T14:02:40.974824Z","modified_at":"2021-07-22T14:02:40.974862Z"}]}' + recorded_at: Thu, 22 Jul 2021 14:02:49 GMT - request: method: get - uri: https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/?environment=1c03b5c1-7040-49e4-be35-7594be262c11 + uri: https://localhost:8000/api/v1/projects/3401da03-3bbb-47d4-a6bc-8be59fa8de5b/parameters/?environment=8720a7b8-c8be-4c17-9eb9-2e37c5b876fc body: encoding: US-ASCII string: '' @@ -550,7 +550,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:31 GMT + - Thu, 22 Jul 2021 14:02:50 GMT Connection: - close Content-Type: @@ -568,12 +568,12 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=NyravMOaKSoqdVhuzPKWlGGaXmjaNj7qCM5Fd8Pfnb9RPkP7Z8zaTHWkVW7VrCAB; - expires=Wed, 13 Jul 2022 00:33:31 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=xinkt3nf61dpfx3cf5bu0uc22u8022ps; expires=Wed, 28 Jul 2021 00:33:31 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=l4tM1RzYwdiQzFUJAIwIv6JztPvMq3zlWz0M3GrcQwvWaNSFvFuCPaQvnmHwdBCY; + expires=Thu, 21 Jul 2022 14:02:50 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=olhm2ne279s3gyz12pg8842cwixujs5d; expires=Thu, 05 Aug 2021 14:02:50 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"count":3,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/33eb5177-80ee-470c-a73e-baacc27e9e55/","id":"33eb5177-80ee-470c-a73e-baacc27e9e55","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null},"created_at":"2021-07-14T00:33:19.533724Z","modified_at":"2021-07-14T00:33:19.533760Z"},{"url":"https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/0dc81dde-f8f4-4b55-bbed-420f6b2aee8e/","id":"0dc81dde-f8f4-4b55-bbed-420f6b2aee8e","name":"three","description":"","secret":true,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":{"url":"https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/0dc81dde-f8f4-4b55-bbed-420f6b2aee8e/values/f23e37a0-3253-4e9f-8720-1314e2a487f4/","id":"f23e37a0-3253-4e9f-8720-1314e2a487f4","environment":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","parameter":"https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/0dc81dde-f8f4-4b55-bbed-420f6b2aee8e/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":null,"value":"defaultthree","created_at":"2021-07-14T00:33:25.951074Z","modified_at":"2021-07-14T00:33:25.951107Z"}},"created_at":"2021-07-14T00:33:22.580147Z","modified_at":"2021-07-14T00:33:22.580185Z"},{"url":"https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/parameters/fe279bbd-b038-452c-8cdd-c152c44376ae/","id":"fe279bbd-b038-452c-8cdd-c152c44376ae","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null},"created_at":"2021-07-14T00:33:21.122355Z","modified_at":"2021-07-14T00:33:21.122397Z"}]}' - recorded_at: Wed, 14 Jul 2021 00:33:31 GMT + string: '{"count":3,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/3401da03-3bbb-47d4-a6bc-8be59fa8de5b/parameters/122e9df2-a735-4e3d-be1e-1d71043d2365/","id":"122e9df2-a735-4e3d-be1e-1d71043d2365","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/":null},"created_at":"2021-07-22T14:02:42.712501Z","modified_at":"2021-07-22T14:02:42.712536Z"},{"url":"https://localhost:8000/api/v1/projects/3401da03-3bbb-47d4-a6bc-8be59fa8de5b/parameters/26ab3352-0375-494b-9647-ecc9f41896f9/","id":"26ab3352-0375-494b-9647-ecc9f41896f9","name":"three","description":"","secret":true,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/":{"url":"https://localhost:8000/api/v1/projects/3401da03-3bbb-47d4-a6bc-8be59fa8de5b/parameters/26ab3352-0375-494b-9647-ecc9f41896f9/values/fe6cb5e1-e537-4cea-9375-01fb6670005c/","id":"fe6cb5e1-e537-4cea-9375-01fb6670005c","environment":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","parameter":"https://localhost:8000/api/v1/projects/3401da03-3bbb-47d4-a6bc-8be59fa8de5b/parameters/26ab3352-0375-494b-9647-ecc9f41896f9/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":null,"value":"defaultthree","created_at":"2021-07-22T14:02:46.764759Z","modified_at":"2021-07-22T14:02:46.764800Z"}},"created_at":"2021-07-22T14:02:44.695699Z","modified_at":"2021-07-22T14:02:46.751993Z"},{"url":"https://localhost:8000/api/v1/projects/3401da03-3bbb-47d4-a6bc-8be59fa8de5b/parameters/ebfec411-ec4e-491a-9739-a01c2fbf2b7a/","id":"ebfec411-ec4e-491a-9739-a01c2fbf2b7a","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/":null},"created_at":"2021-07-22T14:02:43.755781Z","modified_at":"2021-07-22T14:02:43.755817Z"}]}' + recorded_at: Thu, 22 Jul 2021 14:02:50 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/gets_parameters.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/gets_parameters.yml index a1de3fb..d547ffb 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/gets_parameters.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/gets_parameters.yml @@ -25,7 +25,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:32:59 GMT + - Thu, 22 Jul 2021 14:02:31 GMT Connection: - close Content-Type: @@ -37,70 +37,21 @@ http_interactions: X-Frame-Options: - DENY Content-Length: - - '610' + - '354' X-Content-Type-Options: - nosniff Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=4I7l2TlIJSjnWyUSi5P78LBMDQOw4mGet8bXedAi7kmIxe66UaMTv36zH9k142XU; - expires=Wed, 13 Jul 2022 00:32:59 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=ja2tspx7zhmyjurhbsv3h4o2tppvhtdu; expires=Wed, 28 Jul 2021 00:32:59 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=w0bxcbvBmo1hFMI5ug3ERMSEEbcqkNHodqEc4iA6DtjkMmak1ybfhQpn97Fpj1sK; + expires=Thu, 21 Jul 2022 14:02:31 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=uklnvmdu190dehwfm8ifsihgea9026q1; expires=Thu, 05 Aug 2021 14:02:31 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/","id":"09757741-9659-4b43-bcbd-26317dfa2bff","name":"TestProject","description":"","created_at":"2021-07-13T18:36:53.178046Z","modified_at":"2021-07-13T18:36:53.178104Z"}]}' - recorded_at: Wed, 14 Jul 2021 00:32:59 GMT -- request: - method: delete - uri: https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/ - body: - encoding: US-ASCII - string: '' - headers: - Content-Type: - - application/json - User-Agent: - - kubetruth/0.6.0 - Authorization: - - Api-Key - Accept-Encoding: - - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 - Accept: - - "*/*" - response: - status: - code: 204 - message: No Content - headers: - Server: - - gunicorn - Date: - - Wed, 14 Jul 2021 00:33:02 GMT - Connection: - - close - Vary: - - Accept, Cookie, Origin - Allow: - - GET, PUT, PATCH, DELETE, HEAD, OPTIONS - X-Frame-Options: - - DENY - Content-Length: - - '0' - X-Content-Type-Options: - - nosniff - Referrer-Policy: - - same-origin - Set-Cookie: - - csrftoken=gg0yztXB7fDXnJyfSTqS393okOapPSf0lD02sQmJxIyfel0k5WV9SIl5qRYThQ6E; - expires=Wed, 13 Jul 2022 00:33:02 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=nqwuaqq5d28fw3evify8xhvr6zrau7ah; expires=Wed, 28 Jul 2021 00:33:02 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax - body: - encoding: UTF-8 - string: '' - recorded_at: Wed, 14 Jul 2021 00:33:02 GMT + string: '{"count":1,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/f771a465-728a-4459-8738-ee633aafdb90/","id":"f771a465-728a-4459-8738-ee633aafdb90","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-22T14:01:17.862316Z","modified_at":"2021-07-22T14:01:17.862382Z"}]}' + recorded_at: Thu, 22 Jul 2021 14:02:31 GMT - request: method: post uri: https://localhost:8000/api/v1/projects/ @@ -126,13 +77,13 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:03 GMT + - Thu, 22 Jul 2021 14:02:32 GMT Connection: - close Content-Type: - application/json Location: - - https://localhost:8000/api/v1/projects/0fe82ebf-0abf-4567-b681-38245fd86feb/ + - https://localhost:8000/api/v1/projects/80e19fbb-bc9a-4869-89c3-444fab355d49/ Vary: - Accept, Cookie, Origin Allow: @@ -146,14 +97,14 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=3hkQOmb9CvQpuYezW9UFJthvRMXMDRHw6JRQIIvwQdo9HxXyyvJgaijvWlcg1orf; - expires=Wed, 13 Jul 2022 00:33:03 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=thhmqx0pk2zcf8m7nb6yn5qmi55k0xoa; expires=Wed, 28 Jul 2021 00:33:03 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=WYxbnbxUntoHVqxbptGRKMf5NWEo8M2MGKMDikWpoiO3rd9OhR95vneN4EXfIZZQ; + expires=Thu, 21 Jul 2022 14:02:32 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=7x98b8upkyixvpdautaiwrat97t06k2u; expires=Thu, 05 Aug 2021 14:02:32 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"url":"https://localhost:8000/api/v1/projects/0fe82ebf-0abf-4567-b681-38245fd86feb/","id":"0fe82ebf-0abf-4567-b681-38245fd86feb","name":"TestProject","description":"","created_at":"2021-07-14T00:33:03.674185Z","modified_at":"2021-07-14T00:33:03.674227Z"}' - recorded_at: Wed, 14 Jul 2021 00:33:03 GMT + string: '{"url":"https://localhost:8000/api/v1/projects/80e19fbb-bc9a-4869-89c3-444fab355d49/","id":"80e19fbb-bc9a-4869-89c3-444fab355d49","name":"TestProject","description":"","created_at":"2021-07-22T14:02:32.365991Z","modified_at":"2021-07-22T14:02:32.366028Z"}' + recorded_at: Thu, 22 Jul 2021 14:02:32 GMT - request: method: get uri: https://localhost:8000/api/v1/projects/ @@ -179,7 +130,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:05 GMT + - Thu, 22 Jul 2021 14:02:33 GMT Connection: - close Content-Type: @@ -197,18 +148,18 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=lONzOElmPe2821tvYiRPtrKZYXoSkOxRbo7Dyoop8uUqVwD2U8ENIhNSJGiwGhSe; - expires=Wed, 13 Jul 2022 00:33:05 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=yd3fov5xixdzklxgyfqwj8pz19vpg453; expires=Wed, 28 Jul 2021 00:33:05 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=ZsghyrNZxfapnM3Cn4pHNe8cPc6y9KhZMcLHPd8TeiQLIljFI9E0PtAfXhuEoYVZ; + expires=Thu, 21 Jul 2022 14:02:33 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=xphji1x46n88aid1kf1novdbb5tohn5o; expires=Thu, 05 Aug 2021 14:02:33 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/0fe82ebf-0abf-4567-b681-38245fd86feb/","id":"0fe82ebf-0abf-4567-b681-38245fd86feb","name":"TestProject","description":"","created_at":"2021-07-14T00:33:03.674185Z","modified_at":"2021-07-14T00:33:03.674227Z"}]}' - recorded_at: Wed, 14 Jul 2021 00:33:05 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/f771a465-728a-4459-8738-ee633aafdb90/","id":"f771a465-728a-4459-8738-ee633aafdb90","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-22T14:01:17.862316Z","modified_at":"2021-07-22T14:01:17.862382Z"},{"url":"https://localhost:8000/api/v1/projects/80e19fbb-bc9a-4869-89c3-444fab355d49/","id":"80e19fbb-bc9a-4869-89c3-444fab355d49","name":"TestProject","description":"","created_at":"2021-07-22T14:02:32.365991Z","modified_at":"2021-07-22T14:02:32.366028Z"}]}' + recorded_at: Thu, 22 Jul 2021 14:02:33 GMT - request: method: post - uri: https://localhost:8000/api/v1/projects/0fe82ebf-0abf-4567-b681-38245fd86feb/parameters/ + uri: https://localhost:8000/api/v1/projects/80e19fbb-bc9a-4869-89c3-444fab355d49/parameters/ body: encoding: UTF-8 string: '{"name":"one"}' @@ -231,13 +182,13 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:06 GMT + - Thu, 22 Jul 2021 14:02:34 GMT Connection: - close Content-Type: - application/json Location: - - https://localhost:8000/api/v1/projects/0fe82ebf-0abf-4567-b681-38245fd86feb/parameters/eb2b3c55-3767-4bad-85cf-2842decef52b/ + - https://localhost:8000/api/v1/projects/80e19fbb-bc9a-4869-89c3-444fab355d49/parameters/cac0d5cd-b6b2-40fa-9ef7-2a657681f500/ Vary: - Accept, Cookie, Origin Allow: @@ -251,17 +202,17 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=zl7LsVq8AhPIwackda43WhxWJ4GekEeRvPEgrKKKqZOAksn8V8NcrlCe64ScmfVD; - expires=Wed, 13 Jul 2022 00:33:06 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=vjp5vbjbz2v8junyzbtyl7mfkavgy1s0; expires=Wed, 28 Jul 2021 00:33:06 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=gtgtcF9dAA0NTEuCZDRUa0AuZYZlhoEJUAGwQGJYeZLaJj2GjvaT2A6a0TaXBpJ8; + expires=Thu, 21 Jul 2022 14:02:34 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=tu63l2ywuc32h63xt25jjals5j300ze7; expires=Thu, 05 Aug 2021 14:02:34 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"url":"https://localhost:8000/api/v1/projects/0fe82ebf-0abf-4567-b681-38245fd86feb/parameters/eb2b3c55-3767-4bad-85cf-2842decef52b/","id":"eb2b3c55-3767-4bad-85cf-2842decef52b","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null,"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":null,"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/":null,"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/":null},"created_at":"2021-07-14T00:33:06.210102Z","modified_at":"2021-07-14T00:33:06.210134Z"}' - recorded_at: Wed, 14 Jul 2021 00:33:06 GMT + string: '{"url":"https://localhost:8000/api/v1/projects/80e19fbb-bc9a-4869-89c3-444fab355d49/parameters/cac0d5cd-b6b2-40fa-9ef7-2a657681f500/","id":"cac0d5cd-b6b2-40fa-9ef7-2a657681f500","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/":null,"https://localhost:8000/api/v1/environments/c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c/":null,"https://localhost:8000/api/v1/environments/8332d031-f59d-4e79-9ba8-927487555d7c/":null,"https://localhost:8000/api/v1/environments/60cc35ce-af46-464e-8d87-41de2a3f20ff/":null},"created_at":"2021-07-22T14:02:33.959035Z","modified_at":"2021-07-22T14:02:33.959074Z"}' + recorded_at: Thu, 22 Jul 2021 14:02:34 GMT - request: method: post - uri: https://localhost:8000/api/v1/projects/0fe82ebf-0abf-4567-b681-38245fd86feb/parameters/ + uri: https://localhost:8000/api/v1/projects/80e19fbb-bc9a-4869-89c3-444fab355d49/parameters/ body: encoding: UTF-8 string: '{"name":"two"}' @@ -284,13 +235,13 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:07 GMT + - Thu, 22 Jul 2021 14:02:35 GMT Connection: - close Content-Type: - application/json Location: - - https://localhost:8000/api/v1/projects/0fe82ebf-0abf-4567-b681-38245fd86feb/parameters/68faaadc-0083-4af2-a80d-a4c16bce113e/ + - https://localhost:8000/api/v1/projects/80e19fbb-bc9a-4869-89c3-444fab355d49/parameters/507f4885-4554-409e-a9d5-65992394fb78/ Vary: - Accept, Cookie, Origin Allow: @@ -304,14 +255,14 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=A0T2zJZSAbuF205R37GuYrUe8xW7dwpAIfIHMXJDHiBSlZOQ4Z2MXsu4r5rbNKtf; - expires=Wed, 13 Jul 2022 00:33:07 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=mhtb814oy5vx4m1sh49mkq4tvb6sy6hu; expires=Wed, 28 Jul 2021 00:33:07 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=giDu7xAENBJ34oqfl0iWaJZwNFnt7MPhycRUjzPOx5rZd44ARWRD68SzBySjHS2S; + expires=Thu, 21 Jul 2022 14:02:35 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=skfwhv338y8jsy4lkr6gz3m2qrd0ll5k; expires=Thu, 05 Aug 2021 14:02:35 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"url":"https://localhost:8000/api/v1/projects/0fe82ebf-0abf-4567-b681-38245fd86feb/parameters/68faaadc-0083-4af2-a80d-a4c16bce113e/","id":"68faaadc-0083-4af2-a80d-a4c16bce113e","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null,"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":null,"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/":null,"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/":null},"created_at":"2021-07-14T00:33:07.624207Z","modified_at":"2021-07-14T00:33:07.624253Z"}' - recorded_at: Wed, 14 Jul 2021 00:33:07 GMT + string: '{"url":"https://localhost:8000/api/v1/projects/80e19fbb-bc9a-4869-89c3-444fab355d49/parameters/507f4885-4554-409e-a9d5-65992394fb78/","id":"507f4885-4554-409e-a9d5-65992394fb78","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/":null,"https://localhost:8000/api/v1/environments/c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c/":null,"https://localhost:8000/api/v1/environments/8332d031-f59d-4e79-9ba8-927487555d7c/":null,"https://localhost:8000/api/v1/environments/60cc35ce-af46-464e-8d87-41de2a3f20ff/":null},"created_at":"2021-07-22T14:02:35.003902Z","modified_at":"2021-07-22T14:02:35.003944Z"}' + recorded_at: Thu, 22 Jul 2021 14:02:35 GMT - request: method: get uri: https://localhost:8000/api/v1/environments/ @@ -337,7 +288,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:09 GMT + - Thu, 22 Jul 2021 14:02:36 GMT Connection: - close Content-Type: @@ -355,18 +306,18 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=w6n4dsvc6oTVGlwwuzl0ceacwvOaGHpH5pue6iZkzjb9tCacd8CWSgeTEqmbdM81; - expires=Wed, 13 Jul 2022 00:33:09 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=lsthq95qmv7xf0y8jd9hma7d1ypmdpj5; expires=Wed, 28 Jul 2021 00:33:09 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=CdZ8Vej6K6gdxugmkRsr91XnjljPFSZRNHcTN78apfG1i0VYP0bNvWtbzYdy6OVL; + expires=Thu, 21 Jul 2022 14:02:36 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=5fz5g334qrhms2fwac9xs5ephz86co6q; expires=Thu, 05 Aug 2021 14:02:36 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","id":"1c03b5c1-7040-49e4-be35-7594be262c11","name":"default","description":"Default - environment, base for all environments.","parent":null,"created_at":"2021-07-13T17:57:00.029171Z","modified_at":"2021-07-13T17:57:00.029210Z"},{"url":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","id":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","name":"development","description":"Development - deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.048313Z","modified_at":"2021-07-13T17:57:00.048347Z"},{"url":"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/","id":"1eadb281-baa9-4816-8f88-775d0a636f16","name":"production","description":"Production - deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.072603Z","modified_at":"2021-07-13T17:57:00.072636Z"},{"url":"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/","id":"f7f81820-f920-467c-9a37-fc4a6ad518fe","name":"staging","description":"Staging - deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.061960Z","modified_at":"2021-07-13T17:57:00.061995Z"}]}' - recorded_at: Wed, 14 Jul 2021 00:33:09 GMT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","id":"8720a7b8-c8be-4c17-9eb9-2e37c5b876fc","name":"default","description":"Default + environment, base for all environments.","parent":null,"created_at":"2021-07-22T14:01:17.889236Z","modified_at":"2021-07-22T14:01:17.889291Z"},{"url":"https://localhost:8000/api/v1/environments/c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c/","id":"c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c","name":"development","description":"Development + deployment environment","parent":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","created_at":"2021-07-22T14:01:17.913891Z","modified_at":"2021-07-22T14:01:17.913964Z"},{"url":"https://localhost:8000/api/v1/environments/8332d031-f59d-4e79-9ba8-927487555d7c/","id":"8332d031-f59d-4e79-9ba8-927487555d7c","name":"production","description":"Production + deployment environment","parent":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","created_at":"2021-07-22T14:01:17.957566Z","modified_at":"2021-07-22T14:01:17.957710Z"},{"url":"https://localhost:8000/api/v1/environments/60cc35ce-af46-464e-8d87-41de2a3f20ff/","id":"60cc35ce-af46-464e-8d87-41de2a3f20ff","name":"staging","description":"Staging + deployment environment","parent":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","created_at":"2021-07-22T14:01:17.934364Z","modified_at":"2021-07-22T14:01:17.934409Z"}]}' + recorded_at: Thu, 22 Jul 2021 14:02:36 GMT - request: method: get uri: https://localhost:8000/api/v1/projects/ @@ -392,7 +343,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:10 GMT + - Thu, 22 Jul 2021 14:02:37 GMT Connection: - close Content-Type: @@ -410,18 +361,18 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=pxHLJDkt5nNzSVkcWTsvywgtFOowyi41guKimr4EAOz6KNqN32K1EuzjTGOM1JAm; - expires=Wed, 13 Jul 2022 00:33:10 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=h5j7wyg6ciyfrhatzax8py3pif8k6s0z; expires=Wed, 28 Jul 2021 00:33:10 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=pjG7xv346MFoCWMp2Il8mNW8hvorVMAcrOgA6k2Zf6cl0AZ1woqqULRVHTYgxxWX; + expires=Thu, 21 Jul 2022 14:02:37 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=t8l6n9wp6ikbmkibxgtin6d601kxt7ph; expires=Thu, 05 Aug 2021 14:02:37 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/0fe82ebf-0abf-4567-b681-38245fd86feb/","id":"0fe82ebf-0abf-4567-b681-38245fd86feb","name":"TestProject","description":"","created_at":"2021-07-14T00:33:03.674185Z","modified_at":"2021-07-14T00:33:03.674227Z"}]}' - recorded_at: Wed, 14 Jul 2021 00:33:10 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/f771a465-728a-4459-8738-ee633aafdb90/","id":"f771a465-728a-4459-8738-ee633aafdb90","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-22T14:01:17.862316Z","modified_at":"2021-07-22T14:01:17.862382Z"},{"url":"https://localhost:8000/api/v1/projects/80e19fbb-bc9a-4869-89c3-444fab355d49/","id":"80e19fbb-bc9a-4869-89c3-444fab355d49","name":"TestProject","description":"","created_at":"2021-07-22T14:02:32.365991Z","modified_at":"2021-07-22T14:02:32.366028Z"}]}' + recorded_at: Thu, 22 Jul 2021 14:02:37 GMT - request: method: get - uri: https://localhost:8000/api/v1/projects/0fe82ebf-0abf-4567-b681-38245fd86feb/parameters/?environment=1c03b5c1-7040-49e4-be35-7594be262c11 + uri: https://localhost:8000/api/v1/projects/80e19fbb-bc9a-4869-89c3-444fab355d49/parameters/?environment=8720a7b8-c8be-4c17-9eb9-2e37c5b876fc body: encoding: US-ASCII string: '' @@ -444,7 +395,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:12 GMT + - Thu, 22 Jul 2021 14:02:37 GMT Connection: - close Content-Type: @@ -462,12 +413,12 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=xXhR1QZSNPDdntqWkd9wqJHpAGoA54SWkkb7b9j3zrt7AP3w48Gm1XBwiwCRPXmz; - expires=Wed, 13 Jul 2022 00:33:12 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=rqqcpaibj7ceri2f49z9h4u07gaq3xsm; expires=Wed, 28 Jul 2021 00:33:12 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=2CY0BZ3PXpA499ICVxjb08PFpgBh4yQ8HKgNR7eetsv9plBqn7WuA4tHTb4mUP4U; + expires=Thu, 21 Jul 2022 14:02:37 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=5fox5oq2vel2xlr5zlmnigjvw8jjnrvv; expires=Thu, 05 Aug 2021 14:02:37 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/0fe82ebf-0abf-4567-b681-38245fd86feb/parameters/eb2b3c55-3767-4bad-85cf-2842decef52b/","id":"eb2b3c55-3767-4bad-85cf-2842decef52b","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null},"created_at":"2021-07-14T00:33:06.210102Z","modified_at":"2021-07-14T00:33:06.210134Z"},{"url":"https://localhost:8000/api/v1/projects/0fe82ebf-0abf-4567-b681-38245fd86feb/parameters/68faaadc-0083-4af2-a80d-a4c16bce113e/","id":"68faaadc-0083-4af2-a80d-a4c16bce113e","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null},"created_at":"2021-07-14T00:33:07.624207Z","modified_at":"2021-07-14T00:33:07.624253Z"}]}' - recorded_at: Wed, 14 Jul 2021 00:33:12 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/80e19fbb-bc9a-4869-89c3-444fab355d49/parameters/cac0d5cd-b6b2-40fa-9ef7-2a657681f500/","id":"cac0d5cd-b6b2-40fa-9ef7-2a657681f500","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/":null},"created_at":"2021-07-22T14:02:33.959035Z","modified_at":"2021-07-22T14:02:33.959074Z"},{"url":"https://localhost:8000/api/v1/projects/80e19fbb-bc9a-4869-89c3-444fab355d49/parameters/507f4885-4554-409e-a9d5-65992394fb78/","id":"507f4885-4554-409e-a9d5-65992394fb78","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/":null},"created_at":"2021-07-22T14:02:35.003902Z","modified_at":"2021-07-22T14:02:35.003944Z"}]}' + recorded_at: Thu, 22 Jul 2021 14:02:37 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/uses_environment_to_get_values.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/uses_environment_to_get_values.yml index d9f1903..6cfaff8 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/uses_environment_to_get_values.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_parameters/uses_environment_to_get_values.yml @@ -25,7 +25,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:32 GMT + - Thu, 22 Jul 2021 14:02:51 GMT Connection: - close Content-Type: @@ -43,18 +43,18 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=k1ZpoOMYGVrKrZr2mVhe08DAwhf6DUE9NQsei98yahNYpt4wAcoDIYRNl9AAlZhL; - expires=Wed, 13 Jul 2022 00:33:32 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=2bsijm8scgs5439ywwjcdgdvju9h137l; expires=Wed, 28 Jul 2021 00:33:32 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=F2ZO8zcXyn6zy45OczSabn8hKBcQmpUmFOSBkxNH5QqAIlW8KmH080AhxshhH03h; + expires=Thu, 21 Jul 2022 14:02:51 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=g3swn1zcfcz080gz0vnjg71e0oylkwju; expires=Thu, 05 Aug 2021 14:02:51 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/","id":"f76f1696-252c-4289-8fdc-e611579e4dba","name":"TestProject","description":"","created_at":"2021-07-14T00:33:16.808298Z","modified_at":"2021-07-14T00:33:16.808341Z"}]}' - recorded_at: Wed, 14 Jul 2021 00:33:32 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/f771a465-728a-4459-8738-ee633aafdb90/","id":"f771a465-728a-4459-8738-ee633aafdb90","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-22T14:01:17.862316Z","modified_at":"2021-07-22T14:01:17.862382Z"},{"url":"https://localhost:8000/api/v1/projects/3401da03-3bbb-47d4-a6bc-8be59fa8de5b/","id":"3401da03-3bbb-47d4-a6bc-8be59fa8de5b","name":"TestProject","description":"","created_at":"2021-07-22T14:02:40.974824Z","modified_at":"2021-07-22T14:02:40.974862Z"}]}' + recorded_at: Thu, 22 Jul 2021 14:02:51 GMT - request: method: delete - uri: https://localhost:8000/api/v1/projects/f76f1696-252c-4289-8fdc-e611579e4dba/ + uri: https://localhost:8000/api/v1/projects/3401da03-3bbb-47d4-a6bc-8be59fa8de5b/ body: encoding: US-ASCII string: '' @@ -77,7 +77,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:34 GMT + - Thu, 22 Jul 2021 14:02:53 GMT Connection: - close Vary: @@ -93,14 +93,14 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=3gYlHDn3sErf6EGpsChaWEAtkVErUgWZ5mjprCGQxoeCuVtVaCXg9oZi04xyoJ1R; - expires=Wed, 13 Jul 2022 00:33:34 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=x32j6jo3x7kwo9pj1bareu9knfk7f5wa; expires=Wed, 28 Jul 2021 00:33:34 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=7wzdlMiEVNKgoqlWYEwY1C2JhSCDwjxBh3v5gU4MlhoSltpnVkLfX7zZMQ4irLdV; + expires=Thu, 21 Jul 2022 14:02:53 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=02nyiervt6c8p0rsj2oen0cxcrlp7cro; expires=Thu, 05 Aug 2021 14:02:53 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 string: '' - recorded_at: Wed, 14 Jul 2021 00:33:34 GMT + recorded_at: Thu, 22 Jul 2021 14:02:53 GMT - request: method: post uri: https://localhost:8000/api/v1/projects/ @@ -126,13 +126,13 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:35 GMT + - Thu, 22 Jul 2021 14:02:54 GMT Connection: - close Content-Type: - application/json Location: - - https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/ + - https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/ Vary: - Accept, Cookie, Origin Allow: @@ -146,14 +146,14 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=8QPXPiV6KY8NhNUe9fGP7DqJKfOPjFfqVZM5vVVRUJKhc5SYDLohuH907Q2R9PJ0; - expires=Wed, 13 Jul 2022 00:33:35 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=fefosfk6ssw43fv0uyxi4gzknkk9r9do; expires=Wed, 28 Jul 2021 00:33:35 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=DQQGGsNxpbGqiGtE5iwbylGOr1vJNhbVASLQ1Ke0xMZDlsRdilhy4uyeCJ7GSrBQ; + expires=Thu, 21 Jul 2022 14:02:54 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=u6lzfks0amabw5v5x6ar5ajhkxiq166t; expires=Thu, 05 Aug 2021 14:02:54 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/","id":"cfc4437a-d76f-4981-a9c4-06a212fc5933","name":"TestProject","description":"","created_at":"2021-07-14T00:33:35.954746Z","modified_at":"2021-07-14T00:33:35.954777Z"}' - recorded_at: Wed, 14 Jul 2021 00:33:35 GMT + string: '{"url":"https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/","id":"e3e7e278-acfd-4530-89db-61393e173caa","name":"TestProject","description":"","created_at":"2021-07-22T14:02:54.081137Z","modified_at":"2021-07-22T14:02:54.081168Z"}' + recorded_at: Thu, 22 Jul 2021 14:02:54 GMT - request: method: get uri: https://localhost:8000/api/v1/projects/ @@ -179,7 +179,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:37 GMT + - Thu, 22 Jul 2021 14:02:55 GMT Connection: - close Content-Type: @@ -197,18 +197,18 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=8Ukrj8NIfZkhL3xrNPqNFnLkaDZ6mfii3GuXjbXbKpYAWvRw4a84p3nWLqdqxAO2; - expires=Wed, 13 Jul 2022 00:33:37 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=mm37sg06wu3d22t3akicxs45cyrzsskw; expires=Wed, 28 Jul 2021 00:33:37 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=IuFGjpzDltMerHC4jMNnYyoN93gKFKxpc6Iq9fqFZV0qy484Ajcye7sOn3LUhQqL; + expires=Thu, 21 Jul 2022 14:02:55 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=159bdg5b8pu9a84vzji37tve3hd64edt; expires=Thu, 05 Aug 2021 14:02:55 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/","id":"cfc4437a-d76f-4981-a9c4-06a212fc5933","name":"TestProject","description":"","created_at":"2021-07-14T00:33:35.954746Z","modified_at":"2021-07-14T00:33:35.954777Z"}]}' - recorded_at: Wed, 14 Jul 2021 00:33:37 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/f771a465-728a-4459-8738-ee633aafdb90/","id":"f771a465-728a-4459-8738-ee633aafdb90","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-22T14:01:17.862316Z","modified_at":"2021-07-22T14:01:17.862382Z"},{"url":"https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/","id":"e3e7e278-acfd-4530-89db-61393e173caa","name":"TestProject","description":"","created_at":"2021-07-22T14:02:54.081137Z","modified_at":"2021-07-22T14:02:54.081168Z"}]}' + recorded_at: Thu, 22 Jul 2021 14:02:55 GMT - request: method: post - uri: https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ + uri: https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/ body: encoding: UTF-8 string: '{"name":"one"}' @@ -231,13 +231,13 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:39 GMT + - Thu, 22 Jul 2021 14:02:56 GMT Connection: - close Content-Type: - application/json Location: - - https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/006cd384-dbcc-44fa-9acc-469db44176d0/ + - https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/51074ae1-be9f-42a7-b114-be44f3abdbe1/ Vary: - Accept, Cookie, Origin Allow: @@ -251,17 +251,17 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=CYeD3rKHKKpK9tygFQwKWqBeRY01Vl17CRBz1dYsJclrV8eHSrWBmrrf9zdcmSH7; - expires=Wed, 13 Jul 2022 00:33:39 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=5k9guc629mejp96z2kl1mwsewtpgzvrk; expires=Wed, 28 Jul 2021 00:33:39 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=7FJJEGN4MJoHLDhxL5jM0bPBBh1b0m5orkJEMfTAo2PJGLXAHRSfussQsF2F3xyJ; + expires=Thu, 21 Jul 2022 14:02:56 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=yvqv85w5qwzugby6afs5bc2et07s8ba9; expires=Thu, 05 Aug 2021 14:02:56 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/006cd384-dbcc-44fa-9acc-469db44176d0/","id":"006cd384-dbcc-44fa-9acc-469db44176d0","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null,"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":null,"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/":null,"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/":null},"created_at":"2021-07-14T00:33:38.816864Z","modified_at":"2021-07-14T00:33:38.816984Z"}' - recorded_at: Wed, 14 Jul 2021 00:33:39 GMT + string: '{"url":"https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/51074ae1-be9f-42a7-b114-be44f3abdbe1/","id":"51074ae1-be9f-42a7-b114-be44f3abdbe1","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/":null,"https://localhost:8000/api/v1/environments/c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c/":null,"https://localhost:8000/api/v1/environments/8332d031-f59d-4e79-9ba8-927487555d7c/":null,"https://localhost:8000/api/v1/environments/60cc35ce-af46-464e-8d87-41de2a3f20ff/":null},"created_at":"2021-07-22T14:02:55.928770Z","modified_at":"2021-07-22T14:02:55.928863Z"}' + recorded_at: Thu, 22 Jul 2021 14:02:56 GMT - request: method: post - uri: https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ + uri: https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/ body: encoding: UTF-8 string: '{"name":"two"}' @@ -284,13 +284,13 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:43 GMT + - Thu, 22 Jul 2021 14:02:57 GMT Connection: - close Content-Type: - application/json Location: - - https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe/ + - https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/bfbd5cb9-fb8c-4f68-aba9-fa61efe0dfea/ Vary: - Accept, Cookie, Origin Allow: @@ -304,14 +304,14 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=bQ9AUeB71IF19UwkkUgt7Rd3GMhMvJ54nFYRlDjypR8XwScF6JLklgSjUmC8k1yT; - expires=Wed, 13 Jul 2022 00:33:43 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=2bmfucz9j43eg8am96vxjrnnbcxge4sb; expires=Wed, 28 Jul 2021 00:33:43 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=v3h2L5R1KvDfWUCU1czE7jMmO445eQNw6xaEQvEwfqCsOBEfGBD3JuRhNize89iq; + expires=Thu, 21 Jul 2022 14:02:57 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=xcq8s9acq9qmmcdg9lck0h2vj7pawcww; expires=Thu, 05 Aug 2021 14:02:57 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe/","id":"ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":null,"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":null,"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/":null,"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/":null},"created_at":"2021-07-14T00:33:43.331042Z","modified_at":"2021-07-14T00:33:43.331084Z"}' - recorded_at: Wed, 14 Jul 2021 00:33:43 GMT + string: '{"url":"https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/bfbd5cb9-fb8c-4f68-aba9-fa61efe0dfea/","id":"bfbd5cb9-fb8c-4f68-aba9-fa61efe0dfea","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/":null,"https://localhost:8000/api/v1/environments/c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c/":null,"https://localhost:8000/api/v1/environments/8332d031-f59d-4e79-9ba8-927487555d7c/":null,"https://localhost:8000/api/v1/environments/60cc35ce-af46-464e-8d87-41de2a3f20ff/":null},"created_at":"2021-07-22T14:02:56.909374Z","modified_at":"2021-07-22T14:02:56.909409Z"}' + recorded_at: Thu, 22 Jul 2021 14:02:57 GMT - request: method: get uri: https://localhost:8000/api/v1/environments/ @@ -337,7 +337,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:45 GMT + - Thu, 22 Jul 2021 14:02:58 GMT Connection: - close Content-Type: @@ -355,24 +355,24 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=stDzq6D0t9z6LhHQRkldvzX4MPRYiHnWoMKbGxoKbEvvOflak20EeMIpkHH0r5ou; - expires=Wed, 13 Jul 2022 00:33:45 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=n7s26j3tiy0dgzlzkglngxmm2uyssiud; expires=Wed, 28 Jul 2021 00:33:45 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=jk2MlZ9ncBKvj2jfc6UDvwdY0pzkmSl16tdycRqYXyKJc9Y3taWZWWKeBXutLnYE; + expires=Thu, 21 Jul 2022 14:02:58 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=iyzrln4hnn8i5r788a2xs3sg72afwsu6; expires=Thu, 05 Aug 2021 14:02:58 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","id":"1c03b5c1-7040-49e4-be35-7594be262c11","name":"default","description":"Default - environment, base for all environments.","parent":null,"created_at":"2021-07-13T17:57:00.029171Z","modified_at":"2021-07-13T17:57:00.029210Z"},{"url":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","id":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","name":"development","description":"Development - deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.048313Z","modified_at":"2021-07-13T17:57:00.048347Z"},{"url":"https://localhost:8000/api/v1/environments/1eadb281-baa9-4816-8f88-775d0a636f16/","id":"1eadb281-baa9-4816-8f88-775d0a636f16","name":"production","description":"Production - deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.072603Z","modified_at":"2021-07-13T17:57:00.072636Z"},{"url":"https://localhost:8000/api/v1/environments/f7f81820-f920-467c-9a37-fc4a6ad518fe/","id":"f7f81820-f920-467c-9a37-fc4a6ad518fe","name":"staging","description":"Staging - deployment environment","parent":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","created_at":"2021-07-13T17:57:00.061960Z","modified_at":"2021-07-13T17:57:00.061995Z"}]}' - recorded_at: Wed, 14 Jul 2021 00:33:45 GMT + string: '{"count":4,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","id":"8720a7b8-c8be-4c17-9eb9-2e37c5b876fc","name":"default","description":"Default + environment, base for all environments.","parent":null,"created_at":"2021-07-22T14:01:17.889236Z","modified_at":"2021-07-22T14:02:46.739356Z"},{"url":"https://localhost:8000/api/v1/environments/c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c/","id":"c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c","name":"development","description":"Development + deployment environment","parent":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","created_at":"2021-07-22T14:01:17.913891Z","modified_at":"2021-07-22T14:01:17.913964Z"},{"url":"https://localhost:8000/api/v1/environments/8332d031-f59d-4e79-9ba8-927487555d7c/","id":"8332d031-f59d-4e79-9ba8-927487555d7c","name":"production","description":"Production + deployment environment","parent":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","created_at":"2021-07-22T14:01:17.957566Z","modified_at":"2021-07-22T14:01:17.957710Z"},{"url":"https://localhost:8000/api/v1/environments/60cc35ce-af46-464e-8d87-41de2a3f20ff/","id":"60cc35ce-af46-464e-8d87-41de2a3f20ff","name":"staging","description":"Staging + deployment environment","parent":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","created_at":"2021-07-22T14:01:17.934364Z","modified_at":"2021-07-22T14:01:17.934409Z"}]}' + recorded_at: Thu, 22 Jul 2021 14:02:58 GMT - request: method: post - uri: https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/006cd384-dbcc-44fa-9acc-469db44176d0/values/ + uri: https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/51074ae1-be9f-42a7-b114-be44f3abdbe1/values/ body: encoding: UTF-8 - string: '{"environment":"1c03b5c1-7040-49e4-be35-7594be262c11","dynamic":false,"static_value":"defaultone"}' + string: '{"environment":"8720a7b8-c8be-4c17-9eb9-2e37c5b876fc","dynamic":false,"static_value":"defaultone"}' headers: Content-Type: - application/json @@ -392,13 +392,13 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:47 GMT + - Thu, 22 Jul 2021 14:02:59 GMT Connection: - close Content-Type: - application/json Location: - - https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/006cd384-dbcc-44fa-9acc-469db44176d0/values/97cffdc3-8f65-492f-9ad7-1bd43a4f5b85/ + - https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/51074ae1-be9f-42a7-b114-be44f3abdbe1/values/457c10f4-78e2-4d8c-9429-8e2c5f11923d/ Vary: - Accept, Cookie, Origin Allow: @@ -412,20 +412,20 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=jbaFHLKZgOQKrfaBIhWivCCOcCH02ImFJqaxjgXclEI5rZTyttr15xmkvSJ1sjgA; - expires=Wed, 13 Jul 2022 00:33:47 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=8r3clvn6yrtce2ahsm1ps8ucnrp8r57x; expires=Wed, 28 Jul 2021 00:33:47 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=3T4K4zW4iccu6MypRTZ1Y8rYIThIAoKdpIuqe8tfEMG29nuMtY9s7BeGozcQNAaB; + expires=Thu, 21 Jul 2022 14:02:59 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=svp3bi3h9q1fe34v8opxvoz12omsdppy; expires=Thu, 05 Aug 2021 14:02:59 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/006cd384-dbcc-44fa-9acc-469db44176d0/values/97cffdc3-8f65-492f-9ad7-1bd43a4f5b85/","id":"97cffdc3-8f65-492f-9ad7-1bd43a4f5b85","environment":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","parameter":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/006cd384-dbcc-44fa-9acc-469db44176d0/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"defaultone","value":"defaultone","created_at":"2021-07-14T00:33:47.170890Z","modified_at":"2021-07-14T00:33:47.170927Z"}' - recorded_at: Wed, 14 Jul 2021 00:33:47 GMT + string: '{"url":"https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/51074ae1-be9f-42a7-b114-be44f3abdbe1/values/457c10f4-78e2-4d8c-9429-8e2c5f11923d/","id":"457c10f4-78e2-4d8c-9429-8e2c5f11923d","environment":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","parameter":"https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/51074ae1-be9f-42a7-b114-be44f3abdbe1/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"defaultone","value":"defaultone","created_at":"2021-07-22T14:02:59.271238Z","modified_at":"2021-07-22T14:02:59.271307Z"}' + recorded_at: Thu, 22 Jul 2021 14:02:59 GMT - request: method: post - uri: https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/006cd384-dbcc-44fa-9acc-469db44176d0/values/ + uri: https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/51074ae1-be9f-42a7-b114-be44f3abdbe1/values/ body: encoding: UTF-8 - string: '{"environment":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","dynamic":false,"static_value":"developmentone"}' + string: '{"environment":"c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c","dynamic":false,"static_value":"developmentone"}' headers: Content-Type: - application/json @@ -445,13 +445,13 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:48 GMT + - Thu, 22 Jul 2021 14:03:00 GMT Connection: - close Content-Type: - application/json Location: - - https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/006cd384-dbcc-44fa-9acc-469db44176d0/values/513e212f-592b-4fd1-ae05-6fed068172b0/ + - https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/51074ae1-be9f-42a7-b114-be44f3abdbe1/values/d59cb81e-1b81-437f-8efc-826ad1ea312f/ Vary: - Accept, Cookie, Origin Allow: @@ -465,20 +465,20 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=et9LV2q5t44uPvHSZ89s8xjBMkgZQtX2pP9SatUjBPaePAUzO9lGO7UKTLd8rsOx; - expires=Wed, 13 Jul 2022 00:33:48 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=4vvwiyh0stmffdzvtmlckzct1h661cyx; expires=Wed, 28 Jul 2021 00:33:48 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=XEL8dQ1fjpbc9W6GBsd2wbl1qb72irMSsPfmCFn6xhP9Za3RN90lvmKVyPgvvJxQ; + expires=Thu, 21 Jul 2022 14:03:00 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=m990ca42axt9ktwf3o7s3wuhrim55liw; expires=Thu, 05 Aug 2021 14:03:00 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/006cd384-dbcc-44fa-9acc-469db44176d0/values/513e212f-592b-4fd1-ae05-6fed068172b0/","id":"513e212f-592b-4fd1-ae05-6fed068172b0","environment":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","parameter":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/006cd384-dbcc-44fa-9acc-469db44176d0/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"developmentone","value":"developmentone","created_at":"2021-07-14T00:33:48.323820Z","modified_at":"2021-07-14T00:33:48.323855Z"}' - recorded_at: Wed, 14 Jul 2021 00:33:48 GMT + string: '{"url":"https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/51074ae1-be9f-42a7-b114-be44f3abdbe1/values/d59cb81e-1b81-437f-8efc-826ad1ea312f/","id":"d59cb81e-1b81-437f-8efc-826ad1ea312f","environment":"https://localhost:8000/api/v1/environments/c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c/","parameter":"https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/51074ae1-be9f-42a7-b114-be44f3abdbe1/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"developmentone","value":"developmentone","created_at":"2021-07-22T14:03:00.136868Z","modified_at":"2021-07-22T14:03:00.136910Z"}' + recorded_at: Thu, 22 Jul 2021 14:03:00 GMT - request: method: post - uri: https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe/values/ + uri: https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/bfbd5cb9-fb8c-4f68-aba9-fa61efe0dfea/values/ body: encoding: UTF-8 - string: '{"environment":"1c03b5c1-7040-49e4-be35-7594be262c11","dynamic":false,"static_value":"defaulttwo"}' + string: '{"environment":"8720a7b8-c8be-4c17-9eb9-2e37c5b876fc","dynamic":false,"static_value":"defaulttwo"}' headers: Content-Type: - application/json @@ -498,13 +498,13 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:49 GMT + - Thu, 22 Jul 2021 14:03:01 GMT Connection: - close Content-Type: - application/json Location: - - https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe/values/26e60318-221c-43d8-934f-ed53de34f1cd/ + - https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/bfbd5cb9-fb8c-4f68-aba9-fa61efe0dfea/values/35e8aaf3-1daf-4e87-b51d-e1ba9284ea25/ Vary: - Accept, Cookie, Origin Allow: @@ -518,20 +518,20 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=kOoIto0hpMQRhujiROY9wmcVDreIdBzXNPzZxFCmcQGFAfGN4cGizMaCRDZWVAxz; - expires=Wed, 13 Jul 2022 00:33:49 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=6jcnmcf9mzitc7ssy776apjhnqtplyit; expires=Wed, 28 Jul 2021 00:33:49 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=uPC0XGuriBn4BqOrooZzyDJwbM0Ri64gn3ByTOgi2yfH5VaTIcbPGLb07s8nvWSG; + expires=Thu, 21 Jul 2022 14:03:01 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=lzk3yik4exta94bwcukonyxo4edicfcu; expires=Thu, 05 Aug 2021 14:03:01 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe/values/26e60318-221c-43d8-934f-ed53de34f1cd/","id":"26e60318-221c-43d8-934f-ed53de34f1cd","environment":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","parameter":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"defaulttwo","value":"defaulttwo","created_at":"2021-07-14T00:33:49.694778Z","modified_at":"2021-07-14T00:33:49.694823Z"}' - recorded_at: Wed, 14 Jul 2021 00:33:49 GMT + string: '{"url":"https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/bfbd5cb9-fb8c-4f68-aba9-fa61efe0dfea/values/35e8aaf3-1daf-4e87-b51d-e1ba9284ea25/","id":"35e8aaf3-1daf-4e87-b51d-e1ba9284ea25","environment":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","parameter":"https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/bfbd5cb9-fb8c-4f68-aba9-fa61efe0dfea/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"defaulttwo","value":"defaulttwo","created_at":"2021-07-22T14:03:01.075583Z","modified_at":"2021-07-22T14:03:01.075625Z"}' + recorded_at: Thu, 22 Jul 2021 14:03:01 GMT - request: method: post - uri: https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe/values/ + uri: https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/bfbd5cb9-fb8c-4f68-aba9-fa61efe0dfea/values/ body: encoding: UTF-8 - string: '{"environment":"30b123cd-288c-4fd8-b5cc-607086c8cb4f","dynamic":false,"static_value":"developmenttwo"}' + string: '{"environment":"c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c","dynamic":false,"static_value":"developmenttwo"}' headers: Content-Type: - application/json @@ -551,13 +551,13 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:50 GMT + - Thu, 22 Jul 2021 14:03:01 GMT Connection: - close Content-Type: - application/json Location: - - https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe/values/0c0c8ee6-107f-4545-9257-d8c0f3dd5f26/ + - https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/bfbd5cb9-fb8c-4f68-aba9-fa61efe0dfea/values/e053cc03-ef6a-4110-b7f5-8e7ec0b70cfe/ Vary: - Accept, Cookie, Origin Allow: @@ -571,14 +571,14 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=fnxtDCYG6lkG5uP57sDrbYyvkPgABNclCdoj0Rh753HVsPDR0h67IegdqbGIko2z; - expires=Wed, 13 Jul 2022 00:33:50 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=b7afrd58v2iuw1vaq6sagln25j0m8mjv; expires=Wed, 28 Jul 2021 00:33:50 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=sr6kuvIWXNLa5VQSJLh2fexdT2Qf88fCt2kj2jkWPuaApP5ZaQlJczVtFuOWLdZD; + expires=Thu, 21 Jul 2022 14:03:01 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=u8tahqutg23g3sa347uj94elh0ywig6w; expires=Thu, 05 Aug 2021 14:03:01 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe/values/0c0c8ee6-107f-4545-9257-d8c0f3dd5f26/","id":"0c0c8ee6-107f-4545-9257-d8c0f3dd5f26","environment":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","parameter":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"developmenttwo","value":"developmenttwo","created_at":"2021-07-14T00:33:50.950803Z","modified_at":"2021-07-14T00:33:50.950848Z"}' - recorded_at: Wed, 14 Jul 2021 00:33:50 GMT + string: '{"url":"https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/bfbd5cb9-fb8c-4f68-aba9-fa61efe0dfea/values/e053cc03-ef6a-4110-b7f5-8e7ec0b70cfe/","id":"e053cc03-ef6a-4110-b7f5-8e7ec0b70cfe","environment":"https://localhost:8000/api/v1/environments/c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c/","parameter":"https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/bfbd5cb9-fb8c-4f68-aba9-fa61efe0dfea/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"developmenttwo","value":"developmenttwo","created_at":"2021-07-22T14:03:01.956995Z","modified_at":"2021-07-22T14:03:01.957028Z"}' + recorded_at: Thu, 22 Jul 2021 14:03:01 GMT - request: method: get uri: https://localhost:8000/api/v1/projects/ @@ -604,7 +604,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:52 GMT + - Thu, 22 Jul 2021 14:03:03 GMT Connection: - close Content-Type: @@ -622,18 +622,18 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=9QL6spA1DpPsgIwKA5GF6VMZDSs39Z2ZCpzBvOGpzrUEEOtnIHEi4Jz9yaikYd6T; - expires=Wed, 13 Jul 2022 00:33:52 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=8x9jirw0xnkdhco07rcx0vgrjfvblfsp; expires=Wed, 28 Jul 2021 00:33:52 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=uLzfTn96ST9tuS4EoupGrfD0xHNztIcTYp4C3sMxSMZqR3Rif5mcaG6NM5eKQZ7G; + expires=Thu, 21 Jul 2022 14:03:03 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=20opz2wj9r4m2m0jab6lvbiqfz4yiacd; expires=Thu, 05 Aug 2021 14:03:03 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/","id":"cfc4437a-d76f-4981-a9c4-06a212fc5933","name":"TestProject","description":"","created_at":"2021-07-14T00:33:35.954746Z","modified_at":"2021-07-14T00:33:35.954777Z"}]}' - recorded_at: Wed, 14 Jul 2021 00:33:52 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/f771a465-728a-4459-8738-ee633aafdb90/","id":"f771a465-728a-4459-8738-ee633aafdb90","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-22T14:01:17.862316Z","modified_at":"2021-07-22T14:01:17.862382Z"},{"url":"https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/","id":"e3e7e278-acfd-4530-89db-61393e173caa","name":"TestProject","description":"","created_at":"2021-07-22T14:02:54.081137Z","modified_at":"2021-07-22T14:02:54.081168Z"}]}' + recorded_at: Thu, 22 Jul 2021 14:03:03 GMT - request: method: get - uri: https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/?environment=1c03b5c1-7040-49e4-be35-7594be262c11 + uri: https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/?environment=8720a7b8-c8be-4c17-9eb9-2e37c5b876fc body: encoding: US-ASCII string: '' @@ -656,7 +656,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:53 GMT + - Thu, 22 Jul 2021 14:03:04 GMT Connection: - close Content-Type: @@ -674,14 +674,14 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=7Te7KxtJR2IlPCfXUlpY8RYkXwsAqzqmcIr4paANFalILbjixV6lTZFHGIlcSmON; - expires=Wed, 13 Jul 2022 00:33:53 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=pk4j18ku4bguneh1ram8j6ay9nu0g3u0; expires=Wed, 28 Jul 2021 00:33:53 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=I0RlMpPDVoaSAaqC80XgBESAbGr6EJ6uNS78s9maO484TXM44ZoPfWQQt2xUGS6e; + expires=Thu, 21 Jul 2022 14:03:04 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=h8njdaxszss90rmevsgnxwrwbr792pqt; expires=Thu, 05 Aug 2021 14:03:04 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/006cd384-dbcc-44fa-9acc-469db44176d0/","id":"006cd384-dbcc-44fa-9acc-469db44176d0","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/006cd384-dbcc-44fa-9acc-469db44176d0/values/97cffdc3-8f65-492f-9ad7-1bd43a4f5b85/","id":"97cffdc3-8f65-492f-9ad7-1bd43a4f5b85","environment":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","parameter":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/006cd384-dbcc-44fa-9acc-469db44176d0/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"defaultone","value":"defaultone","created_at":"2021-07-14T00:33:47.170890Z","modified_at":"2021-07-14T00:33:47.170927Z"}},"created_at":"2021-07-14T00:33:38.816864Z","modified_at":"2021-07-14T00:33:38.816984Z"},{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe/","id":"ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/":{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe/values/26e60318-221c-43d8-934f-ed53de34f1cd/","id":"26e60318-221c-43d8-934f-ed53de34f1cd","environment":"https://localhost:8000/api/v1/environments/1c03b5c1-7040-49e4-be35-7594be262c11/","parameter":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"defaulttwo","value":"defaulttwo","created_at":"2021-07-14T00:33:49.694778Z","modified_at":"2021-07-14T00:33:49.694823Z"}},"created_at":"2021-07-14T00:33:43.331042Z","modified_at":"2021-07-14T00:33:43.331084Z"}]}' - recorded_at: Wed, 14 Jul 2021 00:33:53 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/51074ae1-be9f-42a7-b114-be44f3abdbe1/","id":"51074ae1-be9f-42a7-b114-be44f3abdbe1","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/":{"url":"https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/51074ae1-be9f-42a7-b114-be44f3abdbe1/values/457c10f4-78e2-4d8c-9429-8e2c5f11923d/","id":"457c10f4-78e2-4d8c-9429-8e2c5f11923d","environment":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","parameter":"https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/51074ae1-be9f-42a7-b114-be44f3abdbe1/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"defaultone","value":"defaultone","created_at":"2021-07-22T14:02:59.271238Z","modified_at":"2021-07-22T14:02:59.271307Z"}},"created_at":"2021-07-22T14:02:55.928770Z","modified_at":"2021-07-22T14:03:00.123702Z"},{"url":"https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/bfbd5cb9-fb8c-4f68-aba9-fa61efe0dfea/","id":"bfbd5cb9-fb8c-4f68-aba9-fa61efe0dfea","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/":{"url":"https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/bfbd5cb9-fb8c-4f68-aba9-fa61efe0dfea/values/35e8aaf3-1daf-4e87-b51d-e1ba9284ea25/","id":"35e8aaf3-1daf-4e87-b51d-e1ba9284ea25","environment":"https://localhost:8000/api/v1/environments/8720a7b8-c8be-4c17-9eb9-2e37c5b876fc/","parameter":"https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/bfbd5cb9-fb8c-4f68-aba9-fa61efe0dfea/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"defaulttwo","value":"defaulttwo","created_at":"2021-07-22T14:03:01.075583Z","modified_at":"2021-07-22T14:03:01.075625Z"}},"created_at":"2021-07-22T14:02:56.909374Z","modified_at":"2021-07-22T14:03:01.949133Z"}]}' + recorded_at: Thu, 22 Jul 2021 14:03:04 GMT - request: method: get uri: https://localhost:8000/api/v1/projects/ @@ -707,7 +707,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:54 GMT + - Thu, 22 Jul 2021 14:03:05 GMT Connection: - close Content-Type: @@ -725,18 +725,18 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=QLzp2JeKVRqxY2RuierGPEBw9WpvzvjeInRJYJnqo4LRvyWi2gIn3LNNKyWRHl6F; - expires=Wed, 13 Jul 2022 00:33:54 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=5wy0fx4kl4pxipfwozeip1z883etsd9z; expires=Wed, 28 Jul 2021 00:33:54 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=7IBiOl1AjJsAVizPPGuKpZO1OV3Y4eo7qWSy0VPtO4FYOqvGBJVipoaeeuuwqNF9; + expires=Thu, 21 Jul 2022 14:03:05 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=aixl9vaacpwdn7dgxxumsqhttyurwgo9; expires=Thu, 05 Aug 2021 14:03:05 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/","id":"cfc4437a-d76f-4981-a9c4-06a212fc5933","name":"TestProject","description":"","created_at":"2021-07-14T00:33:35.954746Z","modified_at":"2021-07-14T00:33:35.954777Z"}]}' - recorded_at: Wed, 14 Jul 2021 00:33:54 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/f771a465-728a-4459-8738-ee633aafdb90/","id":"f771a465-728a-4459-8738-ee633aafdb90","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-22T14:01:17.862316Z","modified_at":"2021-07-22T14:01:17.862382Z"},{"url":"https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/","id":"e3e7e278-acfd-4530-89db-61393e173caa","name":"TestProject","description":"","created_at":"2021-07-22T14:02:54.081137Z","modified_at":"2021-07-22T14:02:54.081168Z"}]}' + recorded_at: Thu, 22 Jul 2021 14:03:05 GMT - request: method: get - uri: https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/?environment=30b123cd-288c-4fd8-b5cc-607086c8cb4f + uri: https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/?environment=c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c body: encoding: US-ASCII string: '' @@ -759,7 +759,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:56 GMT + - Thu, 22 Jul 2021 14:03:06 GMT Connection: - close Content-Type: @@ -777,12 +777,12 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=pS2nDGxE8MZEcp2vPkYkRUVhHuVDy9CSzUSOWRvoxJ3bV6briQ6gbr4cPNckQ3uP; - expires=Wed, 13 Jul 2022 00:33:56 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=va82j4htmccbda6e21v86auiia4cg4za; expires=Wed, 28 Jul 2021 00:33:56 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=wxACCGQUQGuendvIw0aCiNUwfXhud3nCDXMHT7T2GCZwxpyz3Lktfx2c4JGrGPUU; + expires=Thu, 21 Jul 2022 14:03:06 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=0h7h2x1qrfp0k4n9yp33odgmtzu8xal3; expires=Thu, 05 Aug 2021 14:03:06 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/006cd384-dbcc-44fa-9acc-469db44176d0/","id":"006cd384-dbcc-44fa-9acc-469db44176d0","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/006cd384-dbcc-44fa-9acc-469db44176d0/values/513e212f-592b-4fd1-ae05-6fed068172b0/","id":"513e212f-592b-4fd1-ae05-6fed068172b0","environment":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","parameter":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/006cd384-dbcc-44fa-9acc-469db44176d0/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"developmentone","value":"developmentone","created_at":"2021-07-14T00:33:48.323820Z","modified_at":"2021-07-14T00:33:48.323855Z"}},"created_at":"2021-07-14T00:33:38.816864Z","modified_at":"2021-07-14T00:33:38.816984Z"},{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe/","id":"ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/":{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe/values/0c0c8ee6-107f-4545-9257-d8c0f3dd5f26/","id":"0c0c8ee6-107f-4545-9257-d8c0f3dd5f26","environment":"https://localhost:8000/api/v1/environments/30b123cd-288c-4fd8-b5cc-607086c8cb4f/","parameter":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/parameters/ef7bc0b0-7c15-4e91-bca0-6bcc5e240cfe/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"developmenttwo","value":"developmenttwo","created_at":"2021-07-14T00:33:50.950803Z","modified_at":"2021-07-14T00:33:50.950848Z"}},"created_at":"2021-07-14T00:33:43.331042Z","modified_at":"2021-07-14T00:33:43.331084Z"}]}' - recorded_at: Wed, 14 Jul 2021 00:33:56 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/51074ae1-be9f-42a7-b114-be44f3abdbe1/","id":"51074ae1-be9f-42a7-b114-be44f3abdbe1","name":"one","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c/":{"url":"https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/51074ae1-be9f-42a7-b114-be44f3abdbe1/values/d59cb81e-1b81-437f-8efc-826ad1ea312f/","id":"d59cb81e-1b81-437f-8efc-826ad1ea312f","environment":"https://localhost:8000/api/v1/environments/c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c/","parameter":"https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/51074ae1-be9f-42a7-b114-be44f3abdbe1/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"developmentone","value":"developmentone","created_at":"2021-07-22T14:03:00.136868Z","modified_at":"2021-07-22T14:03:00.136910Z"}},"created_at":"2021-07-22T14:02:55.928770Z","modified_at":"2021-07-22T14:03:00.123702Z"},{"url":"https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/bfbd5cb9-fb8c-4f68-aba9-fa61efe0dfea/","id":"bfbd5cb9-fb8c-4f68-aba9-fa61efe0dfea","name":"two","description":"","secret":false,"templates":[],"uses_dynamic_values":false,"values":{"https://localhost:8000/api/v1/environments/c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c/":{"url":"https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/bfbd5cb9-fb8c-4f68-aba9-fa61efe0dfea/values/e053cc03-ef6a-4110-b7f5-8e7ec0b70cfe/","id":"e053cc03-ef6a-4110-b7f5-8e7ec0b70cfe","environment":"https://localhost:8000/api/v1/environments/c21d0fc6-bcfa-4bf7-89d5-13a9b53e1c3c/","parameter":"https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/parameters/bfbd5cb9-fb8c-4f68-aba9-fa61efe0dfea/","dynamic":false,"dynamic_fqn":"","dynamic_filter":"","static_value":"developmenttwo","value":"developmenttwo","created_at":"2021-07-22T14:03:01.956995Z","modified_at":"2021-07-22T14:03:01.957028Z"}},"created_at":"2021-07-22T14:02:56.909374Z","modified_at":"2021-07-22T14:03:01.949133Z"}]}' + recorded_at: Thu, 22 Jul 2021 14:03:06 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_projects/doesn_t_memoize_projects_.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_projects/doesn_t_memoize_projects_.yml index c786db4..4f3d5ee 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_projects/doesn_t_memoize_projects_.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_projects/doesn_t_memoize_projects_.yml @@ -25,7 +25,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:32:53 GMT + - Thu, 22 Jul 2021 14:02:27 GMT Connection: - close Content-Type: @@ -37,21 +37,21 @@ http_interactions: X-Frame-Options: - DENY Content-Length: - - '610' + - '354' X-Content-Type-Options: - nosniff Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=ch0Bl8Ex1lAKstIdz4GYyYcEmAoY9RaHu3f9fawUx2s2UW3a9XVYuniiyzbqReKa; - expires=Wed, 13 Jul 2022 00:32:53 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=14dlxj1wjqsb43t3goom8kxn0cu2as4n; expires=Wed, 28 Jul 2021 00:32:53 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=QsDiSj6ZxABPUJ54l8T6Qc3lvRKNekV9zJgGpyor1i1GliG5rtcZ4mXhbjiOowm9; + expires=Thu, 21 Jul 2022 14:02:27 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=d588hwr5c3clil8zq1ud3dtn2oov13ra; expires=Thu, 05 Aug 2021 14:02:27 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/","id":"09757741-9659-4b43-bcbd-26317dfa2bff","name":"TestProject","description":"","created_at":"2021-07-13T18:36:53.178046Z","modified_at":"2021-07-13T18:36:53.178104Z"}]}' - recorded_at: Wed, 14 Jul 2021 00:32:53 GMT + string: '{"count":1,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/f771a465-728a-4459-8738-ee633aafdb90/","id":"f771a465-728a-4459-8738-ee633aafdb90","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-22T14:01:17.862316Z","modified_at":"2021-07-22T14:01:17.862382Z"}]}' + recorded_at: Thu, 22 Jul 2021 14:02:27 GMT - request: method: get uri: https://localhost:8000/api/v1/projects/ @@ -77,7 +77,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:32:55 GMT + - Thu, 22 Jul 2021 14:02:28 GMT Connection: - close Content-Type: @@ -89,21 +89,21 @@ http_interactions: X-Frame-Options: - DENY Content-Length: - - '610' + - '354' X-Content-Type-Options: - nosniff Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=CHig2DCFyFXKSRX9sBFaFMAGKTCmlGR9vnkiAn0hBuu2wtGssU1ktCT9tAZo9BFQ; - expires=Wed, 13 Jul 2022 00:32:55 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=k2w7iby6yjbk4cqd4tlyw815lpnqf28s; expires=Wed, 28 Jul 2021 00:32:55 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=8buBBEBJrUtudXvoLFDBDbltFJdGsykiBOiaLJOVzEyA8awbObuFZhJUU6q1iZzf; + expires=Thu, 21 Jul 2022 14:02:28 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=zn096zft2m1wfgpu42mz3u6whqckn8ma; expires=Thu, 05 Aug 2021 14:02:28 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/","id":"09757741-9659-4b43-bcbd-26317dfa2bff","name":"TestProject","description":"","created_at":"2021-07-13T18:36:53.178046Z","modified_at":"2021-07-13T18:36:53.178104Z"}]}' - recorded_at: Wed, 14 Jul 2021 00:32:55 GMT + string: '{"count":1,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/f771a465-728a-4459-8738-ee633aafdb90/","id":"f771a465-728a-4459-8738-ee633aafdb90","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-22T14:01:17.862316Z","modified_at":"2021-07-22T14:01:17.862382Z"}]}' + recorded_at: Thu, 22 Jul 2021 14:02:28 GMT - request: method: get uri: https://localhost:8000/api/v1/projects/ @@ -129,7 +129,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:32:57 GMT + - Thu, 22 Jul 2021 14:02:29 GMT Connection: - close Content-Type: @@ -141,21 +141,21 @@ http_interactions: X-Frame-Options: - DENY Content-Length: - - '610' + - '354' X-Content-Type-Options: - nosniff Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=cMcKBCveIvd58Uve90TPNaw5ibGrGeidsBCg20xw8mnRabSZmUWGzwvM4bggZb5o; - expires=Wed, 13 Jul 2022 00:32:57 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=ik4qks5ghq9tfbrr3b0um8w6ykfjccqq; expires=Wed, 28 Jul 2021 00:32:57 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=MTTxuTl2YrHemSw09DMPxACusbLzKEbXXjkNx0x7Kw1Pr1wowgYWzTA9DGzKlrlp; + expires=Thu, 21 Jul 2022 14:02:29 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=voafwcemgaqtnyzexpbiz9n84skugx59; expires=Thu, 05 Aug 2021 14:02:29 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/","id":"09757741-9659-4b43-bcbd-26317dfa2bff","name":"TestProject","description":"","created_at":"2021-07-13T18:36:53.178046Z","modified_at":"2021-07-13T18:36:53.178104Z"}]}' - recorded_at: Wed, 14 Jul 2021 00:32:57 GMT + string: '{"count":1,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/f771a465-728a-4459-8738-ee633aafdb90/","id":"f771a465-728a-4459-8738-ee633aafdb90","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-22T14:01:17.862316Z","modified_at":"2021-07-22T14:01:17.862382Z"}]}' + recorded_at: Thu, 22 Jul 2021 14:02:29 GMT - request: method: get uri: https://localhost:8000/api/v1/projects/ @@ -181,7 +181,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:32:58 GMT + - Thu, 22 Jul 2021 14:02:30 GMT Connection: - close Content-Type: @@ -193,19 +193,19 @@ http_interactions: X-Frame-Options: - DENY Content-Length: - - '610' + - '354' X-Content-Type-Options: - nosniff Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=cCL4Vkkg9LMahqdnrNVbUDIx5lcBXpb9m3p8MVy7c91WIMZC8jNcXj3zehpYLgmO; - expires=Wed, 13 Jul 2022 00:32:58 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=ms9y746ckkv3077kdhhjo1zck4dh6119; expires=Wed, 28 Jul 2021 00:32:58 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=LWAWdBHWzHrWv3yHcZ7qIFOET2h0xZGBJsXqHec4lzZauQD6oBJWKWEOdRwg02OR; + expires=Thu, 21 Jul 2022 14:02:30 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=w7ds8z2qz8em307q5r0fnugpy79lekzv; expires=Thu, 05 Aug 2021 14:02:30 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/","id":"09757741-9659-4b43-bcbd-26317dfa2bff","name":"TestProject","description":"","created_at":"2021-07-13T18:36:53.178046Z","modified_at":"2021-07-13T18:36:53.178104Z"}]}' - recorded_at: Wed, 14 Jul 2021 00:32:58 GMT + string: '{"count":1,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/f771a465-728a-4459-8738-ee633aafdb90/","id":"f771a465-728a-4459-8738-ee633aafdb90","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-22T14:01:17.862316Z","modified_at":"2021-07-22T14:01:17.862382Z"}]}' + recorded_at: Thu, 22 Jul 2021 14:02:30 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/_projects/gets_projects.yml b/spec/fixtures/vcr/Kubetruth_CtApi/_projects/gets_projects.yml index cef41cb..576355c 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/_projects/gets_projects.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/_projects/gets_projects.yml @@ -25,7 +25,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:32:49 GMT + - Thu, 22 Jul 2021 14:02:25 GMT Connection: - close Content-Type: @@ -37,21 +37,21 @@ http_interactions: X-Frame-Options: - DENY Content-Length: - - '610' + - '354' X-Content-Type-Options: - nosniff Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=r6PRgYh3hIfJouL5wObHJsSuQK1hp2gcrS5TW2eVpBXCAxgLJ6DT71TsZgnO0EnT; - expires=Wed, 13 Jul 2022 00:32:49 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=1wq9m7gp8nib4snz2ri7hvn426ld1932; expires=Wed, 28 Jul 2021 00:32:49 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=qVX7SdROfXdwUUr9E9KFlYGqwDqcmRb91WnFd5F7bKoQiFwNhsCZXZREAbnmcPZm; + expires=Thu, 21 Jul 2022 14:02:25 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=233acpqm1vla95awohy2g3cy4wn53ooy; expires=Thu, 05 Aug 2021 14:02:25 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/","id":"09757741-9659-4b43-bcbd-26317dfa2bff","name":"TestProject","description":"","created_at":"2021-07-13T18:36:53.178046Z","modified_at":"2021-07-13T18:36:53.178104Z"}]}' - recorded_at: Wed, 14 Jul 2021 00:32:49 GMT + string: '{"count":1,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/f771a465-728a-4459-8738-ee633aafdb90/","id":"f771a465-728a-4459-8738-ee633aafdb90","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-22T14:01:17.862316Z","modified_at":"2021-07-22T14:01:17.862382Z"}]}' + recorded_at: Thu, 22 Jul 2021 14:02:25 GMT - request: method: get uri: https://localhost:8000/api/v1/projects/ @@ -77,7 +77,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:32:51 GMT + - Thu, 22 Jul 2021 14:02:26 GMT Connection: - close Content-Type: @@ -89,19 +89,19 @@ http_interactions: X-Frame-Options: - DENY Content-Length: - - '610' + - '354' X-Content-Type-Options: - nosniff Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=A6z1o0lLkWfN84u4pBdB4ifKy31WzMmwJCSJlYKsfaaZhY06QtVaCMuofF5HHkxc; - expires=Wed, 13 Jul 2022 00:32:51 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=ndzx70fuln5rofs3ofiw2y5yuhwtyfzm; expires=Wed, 28 Jul 2021 00:32:51 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=k6eSHyZsgVEr3DrRNNUQnjhRI31uqorQwAndJz0uqFtafNVzQwiqG8O04LvLIqs9; + expires=Thu, 21 Jul 2022 14:02:26 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=xmnhyn1qgd8ei6fwwkxuqnwnvjphirqj; expires=Thu, 05 Aug 2021 14:02:26 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/09757741-9659-4b43-bcbd-26317dfa2bff/","id":"09757741-9659-4b43-bcbd-26317dfa2bff","name":"TestProject","description":"","created_at":"2021-07-13T18:36:53.178046Z","modified_at":"2021-07-13T18:36:53.178104Z"}]}' - recorded_at: Wed, 14 Jul 2021 00:32:51 GMT + string: '{"count":1,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/f771a465-728a-4459-8738-ee633aafdb90/","id":"f771a465-728a-4459-8738-ee633aafdb90","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-22T14:01:17.862316Z","modified_at":"2021-07-22T14:01:17.862382Z"}]}' + recorded_at: Thu, 22 Jul 2021 14:02:26 GMT recorded_with: VCR 6.0.0 diff --git a/spec/fixtures/vcr/Kubetruth_CtApi/validate_async/does_api_requests_concurrently.yml b/spec/fixtures/vcr/Kubetruth_CtApi/validate_async/does_api_requests_concurrently.yml index a6898cb..ef997dc 100644 --- a/spec/fixtures/vcr/Kubetruth_CtApi/validate_async/does_api_requests_concurrently.yml +++ b/spec/fixtures/vcr/Kubetruth_CtApi/validate_async/does_api_requests_concurrently.yml @@ -25,7 +25,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:57 GMT + - Thu, 22 Jul 2021 14:03:07 GMT Connection: - close Content-Type: @@ -43,15 +43,15 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=HECasuvLPw19qNPSunfnwr28ZHY6ziRB3eEmz0tydPlYe9hTfp5aIvcZwQplOT9M; - expires=Wed, 13 Jul 2022 00:33:57 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=oa82noplt4kh66vs1gqt6b5nwe6wsm0n; expires=Wed, 28 Jul 2021 00:33:57 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=4M9TBe1j2RQfzb10eiMsLr9a9Vt3VSb3IPvNbbUgFXZS5F8Uxy4CWK5qM6IsmdBh; + expires=Thu, 21 Jul 2022 14:03:07 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=jff00lb3pxm2bia75vv68faq8b4vvij3; expires=Thu, 05 Aug 2021 14:03:07 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/","id":"cfc4437a-d76f-4981-a9c4-06a212fc5933","name":"TestProject","description":"","created_at":"2021-07-14T00:33:35.954746Z","modified_at":"2021-07-14T00:33:35.954777Z"}]}' - recorded_at: Wed, 14 Jul 2021 00:33:57 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/f771a465-728a-4459-8738-ee633aafdb90/","id":"f771a465-728a-4459-8738-ee633aafdb90","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-22T14:01:17.862316Z","modified_at":"2021-07-22T14:01:17.862382Z"},{"url":"https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/","id":"e3e7e278-acfd-4530-89db-61393e173caa","name":"TestProject","description":"","created_at":"2021-07-22T14:02:54.081137Z","modified_at":"2021-07-22T14:02:54.081168Z"}]}' + recorded_at: Thu, 22 Jul 2021 14:03:07 GMT - request: method: get uri: https://localhost:8000/api/v1/projects/ @@ -77,7 +77,7 @@ http_interactions: Server: - gunicorn Date: - - Wed, 14 Jul 2021 00:33:59 GMT + - Thu, 22 Jul 2021 14:03:08 GMT Connection: - close Content-Type: @@ -95,13 +95,13 @@ http_interactions: Referrer-Policy: - same-origin Set-Cookie: - - csrftoken=QSuUWf4l8L8R42Nw3nCcSD9DLBBfk79PgW4pBGlq0uEQiwPKPBSZWZLK2fPCpXVk; - expires=Wed, 13 Jul 2022 00:33:59 GMT; Max-Age=31449600; Path=/; SameSite=Lax - - sessionid=v3k4gqac9dgdsbvc10tht0ooakb2ujcy; expires=Wed, 28 Jul 2021 00:33:59 - GMT; HttpOnly; Max-Age=1209600; Path=/; SameSite=Lax + - csrftoken=cVpyiNf4YulZFcVGt20j09mORUXQ4a35hmznuh66HwuW1Bs62TzPS5VBFYiLHRqt; + expires=Thu, 21 Jul 2022 14:03:08 GMT; Max-Age=31449600; Path=/; SameSite=Lax + - sessionid=p9g70z93ifvf1c8jdkz7nkjt49apgilp; expires=Thu, 05 Aug 2021 14:03:08 + GMT; HttpOnly; Max-Age=1209600; Path=/ body: encoding: UTF-8 - string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/8ea8dad8-7405-4a79-bb11-4cc64ad647a0/","id":"8ea8dad8-7405-4a79-bb11-4cc64ad647a0","name":"MyFirstProject","description":"A - first project workspace to experiment with","created_at":"2021-07-13T17:57:00.004749Z","modified_at":"2021-07-13T17:57:00.004959Z"},{"url":"https://localhost:8000/api/v1/projects/cfc4437a-d76f-4981-a9c4-06a212fc5933/","id":"cfc4437a-d76f-4981-a9c4-06a212fc5933","name":"TestProject","description":"","created_at":"2021-07-14T00:33:35.954746Z","modified_at":"2021-07-14T00:33:35.954777Z"}]}' - recorded_at: Wed, 14 Jul 2021 00:33:59 GMT + string: '{"count":2,"next":null,"previous":null,"results":[{"url":"https://localhost:8000/api/v1/projects/f771a465-728a-4459-8738-ee633aafdb90/","id":"f771a465-728a-4459-8738-ee633aafdb90","name":"MyFirstProject","description":"A + first project workspace to experiment with","created_at":"2021-07-22T14:01:17.862316Z","modified_at":"2021-07-22T14:01:17.862382Z"},{"url":"https://localhost:8000/api/v1/projects/e3e7e278-acfd-4530-89db-61393e173caa/","id":"e3e7e278-acfd-4530-89db-61393e173caa","name":"TestProject","description":"","created_at":"2021-07-22T14:02:54.081137Z","modified_at":"2021-07-22T14:02:54.081168Z"}]}' + recorded_at: Thu, 22 Jul 2021 14:03:08 GMT recorded_with: VCR 6.0.0 From 65966f8ec28b7ea65c09e3e4acc7a2def7266f12 Mon Sep 17 00:00:00 2001 From: Matt Conway Date: Thu, 22 Jul 2021 10:36:34 -0400 Subject: [PATCH 16/17] exclude params with nil values from templates --- lib/kubetruth/etl.rb | 9 +++++++++ spec/kubetruth/etl_spec.rb | 26 ++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) diff --git a/lib/kubetruth/etl.rb b/lib/kubetruth/etl.rb index e70fba5..e7e740a 100644 --- a/lib/kubetruth/etl.rb +++ b/lib/kubetruth/etl.rb @@ -162,6 +162,15 @@ def apply config_origins = Hash[param_origins_parts[true] || []] secret_origins = Hash[param_origins_parts[false] || []] + config_param_hash = config_param_hash.reject do |k, v| + logger.debug { "Excluding parameter with nil value: #{k}" } if v.nil? + v.nil? + end + secret_param_hash = secret_param_hash.reject do |k, v| + logger.debug { "Excluding secret parameter with nil value: #{k}" } if v.nil? + v.nil? + end + project.spec.resource_templates.each_with_index do |pair, i| template_name, template = *pair logger.debug { "Processing template '#{template_name}' (#{i+1}/#{project.spec.resource_templates.size})" } diff --git a/spec/kubetruth/etl_spec.rb b/spec/kubetruth/etl_spec.rb index 59960b5..aa572a3 100644 --- a/spec/kubetruth/etl_spec.rb +++ b/spec/kubetruth/etl_spec.rb @@ -454,6 +454,32 @@ class ForceExit < Exception; end etl.apply() end + + it "skips params with nil values" do + allow(etl).to receive(:load_config).and_yield(@ns, config) + expect(collection).to receive(:names).and_return(["proj1"]) + allow(collection).to receive(:create_project).and_wrap_original do |m, *args| + project = m.call(*args) + allow(project).to receive(:parameters).and_return([ + Parameter.new(key: "param1", value: "value1", secret: false), + Parameter.new(key: "param2", value: "value2", secret: true), + Parameter.new(key: "param3", value: nil, secret: false), + Parameter.new(key: "param4", value: nil, secret: true) + ]) + project + end + + allow(etl).to receive(:kube_apply) + expect(config.root_spec.resource_templates.values.first).to receive(:render) do |*args, **kwargs| + expect(kwargs[:parameters]).to eq({"param1"=>"value1"}) + expect(kwargs[:parameter_origins]).to eq({"param1"=>"proj1", "param3"=>"proj1"}) + expect(kwargs[:secrets]).to eq({"param2"=>"value2"}) + expect(kwargs[:secret_origins]).to eq({"param2"=>"proj1", "param4"=>"proj1"}) + "" + end + + etl.apply() + end end describe "default templates" do From 602211c1b656df42a147ff9c5a97ba319e41b56b Mon Sep 17 00:00:00 2001 From: Matt Conway Date: Thu, 22 Jul 2021 10:43:19 -0400 Subject: [PATCH 17/17] Updated changelog --- .app.yml | 2 +- CHANGELOG.md | 27 +++++++++++++++++++++++++++ helm/kubetruth/Chart.yaml | 4 ++-- 3 files changed, 30 insertions(+), 3 deletions(-) diff --git a/.app.yml b/.app.yml index b5c6d70..59b1a75 100644 --- a/.app.yml +++ b/.app.yml @@ -1,3 +1,3 @@ org: cloudtruth name: kubetruth -version: 0.6.0 +version: 1.0.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index 99dcd14..c39503b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,30 @@ +1.0.0 (07/22/2021) +------------------ + +#### Notes on major changes + +* \[breaking change] Updated to use the new Cloudtruth REST API + +#### Full changelog + +* exclude params with nil values from templates [65966f8](../../commit/65966f8) +* latest api schema [079657e](../../commit/079657e) +* fix NPE - values are nil if unset [4c5ac74](../../commit/4c5ac74) +* run console through docker [3ad434b](../../commit/3ad434b) +* Use correct default API host [63a54bc](../../commit/63a54bc) +* check for minikube for rake install [0098866](../../commit/0098866) +* convenience tasks [3b4fe55](../../commit/3b4fe55) +* latest api schema [b76eb58](../../commit/b76eb58) +* yield task in async helper [0b53d64](../../commit/0b53d64) +* use logger for async exceptions [5cf8639](../../commit/5cf8639) +* allow overriding of image name when building docker image [60dd50a](../../commit/60dd50a) +* allow setting ct api url at install time [8561036](../../commit/8561036) +* add tests to validate concurrency for http calls. Use faradat instead of typhoeus in generated client lib to get concurrency for ctapi [d194ac6](../../commit/d194ac6) +* explicit async wait at top level to future proof if sibling asyncs are added [d1d3992](../../commit/d1d3992) +* ignore coverage for generated client lib [2d540c0](../../commit/2d540c0) +* initial conversion to use cloudtruth rest api [22b3584](../../commit/22b3584) +* complete test coverage [366e919](../../commit/366e919) + 0.6.0 (07/07/2021) ------------------ diff --git a/helm/kubetruth/Chart.yaml b/helm/kubetruth/Chart.yaml index 6e3a7e8..769a39b 100644 --- a/helm/kubetruth/Chart.yaml +++ b/helm/kubetruth/Chart.yaml @@ -15,11 +15,11 @@ 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.6.0 +version: 1.0.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.6.0 +appVersion: 1.0.0