Class: LMS::GraphQL::Mutations::Canvas::MergeUserIntoAnotherUserDestinationUserId

Inherits:
CanvasBaseMutation
  • Object
show all
Defined in:
lib/lms/graphql/mutations/canvas/merge_user_into_another_user_destination_user_id.rb

Instance Method Summary collapse

Instance Method Details

#resolve(id:, destination_user_id:) ⇒ Object



11
12
13
14
15
16
17
18
19
# File 'lib/lms/graphql/mutations/canvas/merge_user_into_another_user_destination_user_id.rb', line 11

def resolve(id:, destination_user_id:)
  ctx[:canvas_api].proxy(
    "MERGE_USER_INTO_ANOTHER_USER_DESTINATION_USER_ID",
    {
      "id": id,
      "destination_user_id": destination_user_id              },
    nil,
  ).parsed_response
end