class LMSGraphQL::Mutations::Canvas::DeleteOutcomeGroupAccount

Public Instance Methods

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