Welcome to mirror list, hosted at ThFree Co, Russian Federation.

description_input_type.rb « widgets « work_items « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 382cfdf659f13dd244a896cd0527c3e862bf961e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module Types
  module WorkItems
    module Widgets
      class DescriptionInputType < BaseInputObject
        graphql_name 'WorkItemWidgetDescriptionInput'

        argument :description, GraphQL::Types::String,
                 required: true,
                 description: copy_field_description(Types::WorkItemType, :description)
      end
    end
  end
end