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

weight_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: a01c63222a5acf53ebc8acfd1a07ccf5f2e0a969 (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 WeightInputType < BaseInputObject
        graphql_name 'WorkItemWidgetWeightInput'

        argument :weight, GraphQL::Types::Int,
                 required: true,
                 description: 'Weight of the work item.'
      end
    end
  end
end