gitlab-org--gitlab-foss/app/graphql/mutations/terraform/state/base.rb

23 lines
460 B
Ruby

# frozen_string_literal: true
module Mutations
module Terraform
module State
class Base < BaseMutation
authorize :admin_terraform_state
argument :id,
Types::GlobalIDType[::Terraform::State],
required: true,
description: 'Global ID of the Terraform state.'
private
def find_object(id:)
GitlabSchema.find_by_gid(id)
end
end
end
end
end