summaryrefslogtreecommitdiff
path: root/app/graphql/types/work_items/widgets/start_and_due_date_update_input_type.rb
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