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

start_and_due_date_update_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: bccd4afe8f34e912b036a3f7f605c952e9d2701b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

module Types
  module WorkItems
    module Widgets
      class StartAndDueDateUpdateInputType < BaseInputObject
        graphql_name 'WorkItemWidgetStartAndDueDateUpdateInput'

        argument :due_date, Types::DateType,
                 required: false,
                 description: 'Due date for the work item.'
        argument :start_date, Types::DateType,
                 required: false,
                 description: 'Start date for the work item.'
      end
    end
  end
end