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

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: ad9651a26dcf830035a870ba121308801c7361b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Types
  class MilestoneWildcardIdEnum < BaseEnum
    graphql_name 'MilestoneWildcardId'
    description 'Milestone ID wildcard values'

    value 'NONE', 'No milestone is assigned.'
    value 'ANY', 'Milestone is assigned.'
    value 'STARTED', 'Milestone assigned is open and started (start date <= today).'
    value 'UPCOMING', 'Milestone assigned is due in the future (due date > today).'
  end
end