summaryrefslogtreecommitdiff
path: root/app/graphql/types/milestone_type.rb
blob: 78d0a8220ec1ba1312115fd5daa1132915f8c827 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module Types
  class MilestoneType < BaseObject
    graphql_name 'Milestone'

    authorize :read_milestone

    field :description, GraphQL::STRING_TYPE, null: true # rubocop:disable Graphql/Descriptions
    field :title, GraphQL::STRING_TYPE, null: false # rubocop:disable Graphql/Descriptions
    field :state, GraphQL::STRING_TYPE, null: false # rubocop:disable Graphql/Descriptions

    field :due_date, Types::TimeType, null: true # rubocop:disable Graphql/Descriptions
    field :start_date, Types::TimeType, null: true # rubocop:disable Graphql/Descriptions

    field :created_at, Types::TimeType, null: false # rubocop:disable Graphql/Descriptions
    field :updated_at, Types::TimeType, null: false # rubocop:disable Graphql/Descriptions
  end
end