Module: Mutations::Snippets::ServiceCompatibility

Extended by:
ActiveSupport::Concern
Included in:
Create, Update
Defined in:
app/graphql/mutations/snippets/service_compatibility.rb

Overview

Translates graphql mutation field params to be compatible with those expected by the service layer

Instance Method Summary collapse

Instance Method Details

#convert_blob_actions_to_snippet_actions!(args) ⇒ Object

convert_blob_actions_to_snippet_actions!(args) -> nil

Converts the blob_actions mutation argument into the snippet_actions hash which the service layer expects



13
14
15
16
17
18
19
20
# File 'app/graphql/mutations/snippets/service_compatibility.rb', line 13

def convert_blob_actions_to_snippet_actions!(args)
  # We need to rename `blob_actions` into `snippet_actions` because
  # it's the expected key param
  args[:snippet_actions] = args.delete(:blob_actions)&.map(&:to_h)

  # Return nil to make it explicit that this method is mutating the args parameter
  nil
end