class LMSGraphQL::Mutations::Canvas::DeleteReport
Public Instance Methods
resolve(account_id:, report:, id:)
click to toggle source
# File lib/lms_graphql/mutations/canvas/delete_report.rb, line 14 def resolve(account_id:, report:, id:) context[:canvas_api].call("DELETE_REPORT").proxy( "DELETE_REPORT", { "account_id": account_id, "report": report, "id": id }, {}, ).parsed_response end