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

negated_milestone_wildcard_id_enum.rb « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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