Class: LMSGraphQL::Mutations::Canvas::ExportContentGroup
- Inherits:
-
CanvasBaseMutation
- Object
- GraphQL::Schema::Mutation
- CanvasBaseMutation
- LMSGraphQL::Mutations::Canvas::ExportContentGroup
- Defined in:
- lib/lms_graphql/mutations/canvas/export_content_groups.rb
Instance Method Summary collapse
Instance Method Details
#resolve(group_id:, export_type:, skip_notifications: nil, select: nil) ⇒ Object
12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/lms_graphql/mutations/canvas/export_content_groups.rb', line 12 def resolve(group_id:, export_type:, skip_notifications: nil, select: nil) ctx[:canvas_api].proxy( "EXPORT_CONTENT_GROUPS", { "group_id": group_id, "export_type": export_type, "skip_notifications": skip_notifications, "select": select }, nil, ).parsed_response end |