gitlab-org--gitlab-foss/app/graphql/types/deployment_details_type.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
418 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Types
class DeploymentDetailsType < DeploymentType
graphql_name 'DeploymentDetails'
description 'The details of the deployment'
authorize :read_deployment
present_using Deployments::DeploymentPresenter
field :tags,
[Types::DeploymentTagType],
description: 'Git tags that contain this deployment.',
calls_gitaly: true
end
end