summaryrefslogtreecommitdiff
path: root/app/graphql/types/issuable_state_enum.rb
blob: f2f6d6c6cab9675620420956c7e1267584041a96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module Types
  class IssuableStateEnum < BaseEnum
    graphql_name 'IssuableState'
    description 'State of a GitLab issue or merge request'

    value 'opened'
    value 'closed'
    value 'locked'
  end
end