class LMSGraphQL::Mutations::Canvas::ExportContentCourse
Public Instance Methods
resolve(course_id:, export_type:, skip_notifications: nil, select: nil)
click to toggle source
# File lib/lms_graphql/mutations/canvas/export_content_courses.rb, line 15 def resolve(course_id:, export_type:, skip_notifications: nil, select: nil) context[:canvas_api].call("EXPORT_CONTENT_COURSES").proxy( "EXPORT_CONTENT_COURSES", { "course_id": course_id }, { "export_type": export_type, "skip_notifications": skip_notifications, "select": select }, ).parsed_response end