Class: LMSGraphQL::Mutations::Canvas::ExportContentCourse
- Inherits:
-
BaseMutation
- Object
- GraphQL::Schema::Mutation
- BaseMutation
- LMSGraphQL::Mutations::Canvas::ExportContentCourse
- Defined in:
- lib/lms_graphql/mutations/canvas/export_content_courses.rb
Instance Method Summary collapse
Instance Method Details
#resolve(course_id:, export_type:, skip_notifications: nil, select: nil) ⇒ Object
15 16 17 18 19 20 21 22 23 24 25 26 27 |
# 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 |