debian-mirror-gitlab/app/graphql/types/mutation_operation_mode_enum.rb
2019-12-26 22:10:19 +05:30

15 lines
421 B
Ruby

# frozen_string_literal: true
module Types
class MutationOperationModeEnum < BaseEnum
graphql_name 'MutationOperationMode'
description 'Different toggles for changing mutator behavior.'
# Suggested param name for the enum: `operation_mode`
value 'REPLACE', 'Performs a replace operation'
value 'APPEND', 'Performs an append operation'
value 'REMOVE', 'Performs a removal operation'
end
end