Class: LMSGraphQL::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



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

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