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

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

module Types
  class AssigneeWildcardIdEnum < BaseEnum
    graphql_name 'AssigneeWildcardId'
    description 'Assignee ID wildcard values'

    value 'NONE', 'No assignee is assigned.'
    value 'ANY', 'An assignee is assigned.'
  end
end