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: b5b339b1e5b77d8ea17504b72295e599acc83c14 (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', 'A milestone is assigned.'
    value 'STARTED', 'An open, started milestone (start date <= today).'
    value 'UPCOMING', 'An open milestone due in the future (due date >= today).'
  end
end