summaryrefslogtreecommitdiff
path: root/app/graphql/types/negated_milestone_wildcard_id_enum.rb
blob: ca27a6c7b6edf9c7cb86d33277c81a5b17f5aa05 (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', 'An open, started milestone (start date <= today).'
    value 'UPCOMING', 'An open milestone due in the future (due date >= today).'
  end
end