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: 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