class LMSGraphQL::Mutations::Canvas::UpdateContentMigrationAccount

Public Instance Methods

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