Class: LMS::GraphQL::Mutations::Canvas::PostReplyGroup
- Inherits:
-
CanvasBaseMutation
- Object
- GraphQL::Schema::Mutation
- CanvasBaseMutation
- LMS::GraphQL::Mutations::Canvas::PostReplyGroup
- Defined in:
- lib/lms/graphql/mutations/canvas/post_reply_groups.rb
Instance Method Summary collapse
Instance Method Details
#resolve(group_id:, topic_id:, entry_id:, message: nil, attachment: nil) ⇒ Object
14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/lms/graphql/mutations/canvas/post_reply_groups.rb', line 14 def resolve(group_id:, topic_id:, entry_id:, message: nil, attachment: nil) ctx[:canvas_api].proxy( "POST_REPLY_GROUPS", { "group_id": group_id, "topic_id": topic_id, "entry_id": entry_id, "message": , "attachment": }, nil, ).parsed_response end |