Method: LMSGraphQL::Mutations::Canvas::PostReplyCourse#resolve
- Defined in:
- lib/lms_graphql/mutations/canvas/post_reply_courses.rb
#resolve(course_id:, topic_id:, entry_id:, message: nil, attachment: nil) ⇒ Object
16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# File 'lib/lms_graphql/mutations/canvas/post_reply_courses.rb', line 16 def resolve(course_id:, topic_id:, entry_id:, message: nil, attachment: nil) context[:canvas_api].call("POST_REPLY_COURSES").proxy( "POST_REPLY_COURSES", { "course_id": course_id, "topic_id": topic_id, "entry_id": entry_id }, { "message": , "attachment": }, ).parsed_response end |