gitlab-org--gitlab-foss/app/graphql/types/negated_milestone_wildcard_...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
392 B
Ruby
Raw Normal View History

# 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