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

relative_position_type_enum.rb « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e0d28bea648dd189381bc51461e0aee35a311ce5 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Types
  class RelativePositionTypeEnum < BaseEnum
    graphql_name 'RelativePositionType'
    description 'The position to which the object should be moved'

    value 'BEFORE', 'Object is moved before an adjacent object.'
    value 'AFTER', 'Object is moved after an adjacent object.'
  end
end