summaryrefslogtreecommitdiff
path: root/app/graphql/types/mutation_operation_mode_enum.rb
blob: 90a29d2b0e51dd7124265bd990e065568f1bd9d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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