class LMSGraphQL::Mutations::Canvas::DeleteExternalToolAccount

Public Instance Methods

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