summaryrefslogtreecommitdiff
path: root/app/graphql/types/negated_milestone_wildcard_id_enum.rb
blob: 9e9f561677aab860ea34f27339df200bf7eb2b3a (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Types
  class NegatedMilestoneWildcardIdEnum < BaseEnum
    graphql_name 'NegatedMilestoneWildcardId'
    description 'Negated Milestone ID wildcard values'

    value 'STARTED', 'Milestone assigned is open and yet to be started (start date > today).'
    value 'UPCOMING', 'Milestone assigned is open but due in the past (due date <= today).'
  end
end