17 lines
403 B
Ruby
17 lines
403 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Resolvers
|
|
class WorkItemResolver < BaseResolver
|
|
include Gitlab::Graphql::Authorize::AuthorizeResource
|
|
|
|
authorize :read_work_item
|
|
|
|
type Types::WorkItemType, null: true
|
|
|
|
argument :id, ::Types::GlobalIDType[::WorkItem], required: true, description: 'Global ID of the work item.'
|
|
|
|
def resolve(id:)
|
|
authorized_find!(id: id)
|
|
end
|
|
end
|
|
end
|