class LMSGraphQL::Mutations::Canvas::MergeUserIntoAnotherUserDestinationUserId

Public Instance Methods

resolve(id:, destination_user_id:) click to toggle source
# File lib/lms_graphql/mutations/canvas/merge_user_into_another_user_destination_user_id.rb, line 13
def resolve(id:, destination_user_id:)
  context[:canvas_api].call("MERGE_USER_INTO_ANOTHER_USER_DESTINATION_USER_ID").proxy(
    "MERGE_USER_INTO_ANOTHER_USER_DESTINATION_USER_ID",
    {
      "id": id,
      "destination_user_id": destination_user_id
    },
    {},
  ).parsed_response
end