Class: LMSGraphQL::Mutations::Canvas::GroupsPreviewProcessedHtml
- Inherits:
-
BaseMutation
- Object
- GraphQL::Schema::Mutation
- BaseMutation
- LMSGraphQL::Mutations::Canvas::GroupsPreviewProcessedHtml
- Defined in:
- lib/lms_graphql/mutations/canvas/groups_preview_processed_html.rb
Instance Method Summary collapse
Instance Method Details
#resolve(group_id:, html: nil) ⇒ Object
13 14 15 16 17 18 19 20 21 22 23 |
# File 'lib/lms_graphql/mutations/canvas/groups_preview_processed_html.rb', line 13 def resolve(group_id:, html: nil) context[:canvas_api].call("GROUPS_PREVIEW_PROCESSED_HTML").proxy( "GROUPS_PREVIEW_PROCESSED_HTML", { "group_id": group_id }, { "html": html }, ).parsed_response end |