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