class LMSGraphQL::Mutations::Canvas::PostReplyCourse

Public Instance Methods

resolve(course_id:, topic_id:, entry_id:, message: nil, attachment: nil) click to toggle source
# 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": message,
      "attachment": attachment
    },
  ).parsed_response
end