Class: LMSGraphQL::Mutations::Canvas::DeleteExternalToolAccount

Inherits:
CanvasBaseMutation
  • Object
show all
Defined in:
lib/lms_graphql/mutations/canvas/delete_external_tool_accounts.rb

Instance Method Summary collapse

Instance Method Details

#resolve(account_id:, external_tool_id:) ⇒ Object



10
11
12
13
14
15
16
17
18
# File 'lib/lms_graphql/mutations/canvas/delete_external_tool_accounts.rb', line 10

def resolve(account_id:, external_tool_id:)
  ctx[:canvas_api].proxy(
    "DELETE_EXTERNAL_TOOL_ACCOUNTS",
    {
      "account_id": ,
      "external_tool_id": external_tool_id            },
    nil,
  ).parsed_response
end