Class: LMSGraphQL::Mutations::Canvas::MergeUserIntoAnotherUserAccount
- Inherits:
-
CanvasBaseMutation
- Object
- GraphQL::Schema::Mutation
- CanvasBaseMutation
- 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
11 12 13 14 15 16 17 18 19 20 |
# File 'lib/lms_graphql/mutations/canvas/merge_user_into_another_user_accounts.rb', line 11 def resolve(id:, destination_account_id:, destination_user_id:) ctx[:canvas_api].proxy( "MERGE_USER_INTO_ANOTHER_USER_ACCOUNTS", { "id": id, "destination_account_id": destination_account_id, "destination_user_id": destination_user_id }, nil, ).parsed_response end |