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