Class: LMSGraphQL::Mutations::Canvas::RateEntryCourse
- Inherits:
-
BaseMutation
- Object
- GraphQL::Schema::Mutation
- BaseMutation
- LMSGraphQL::Mutations::Canvas::RateEntryCourse
- Defined in:
- lib/lms_graphql/mutations/canvas/rate_entry_courses.rb
Instance Method Summary collapse
Instance Method Details
#resolve(course_id:, topic_id:, entry_id:, rating: nil) ⇒ Object
15 16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'lib/lms_graphql/mutations/canvas/rate_entry_courses.rb', line 15 def resolve(course_id:, topic_id:, entry_id:, rating: nil) context[:canvas_api].call("RATE_ENTRY_COURSES").proxy( "RATE_ENTRY_COURSES", { "course_id": course_id, "topic_id": topic_id, "entry_id": entry_id }, { "rating": }, ).parsed_response end |