debian-mirror-gitlab/app/graphql/types/negated_milestone_wildcard_id_enum.rb
2021-10-27 15:23:28 +05:30

12 lines
360 B
Ruby

# 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