Class: LMSGraphQL::Mutations::Canvas::MergeUserIntoAnotherUserAccount
- Inherits:
-
BaseMutation
- Object
- GraphQL::Schema::Mutation
- BaseMutation
- LMSGraphQL::Mutations::Canvas::MergeUserIntoAnotherUserAccount
- Defined in:
- lib/lms_graphql/mutations/canvas/merge_user_into_another_user_accounts.rb
Instance Method Summary collapse
Instance Method Details
#resolve(id:, destination_account_id:, destination_user_id:) ⇒ Object
14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/lms_graphql/mutations/canvas/merge_user_into_another_user_accounts.rb', line 14 def resolve(id:, destination_account_id:, destination_user_id:) context[:canvas_api].call("MERGE_USER_INTO_ANOTHER_USER_ACCOUNTS").proxy( "MERGE_USER_INTO_ANOTHER_USER_ACCOUNTS", { "id": id, "destination_account_id": destination_account_id, "destination_user_id": destination_user_id }, {}, ).parsed_response end |