Class: LMS::GraphQL::Mutations::Canvas::ReorderPinnedTopicsGroup
- Inherits:
-
CanvasBaseMutation
- Object
- GraphQL::Schema::Mutation
- CanvasBaseMutation
- LMS::GraphQL::Mutations::Canvas::ReorderPinnedTopicsGroup
- Defined in:
- lib/lms/graphql/mutations/canvas/reorder_pinned_topics_groups.rb
Instance Method Summary collapse
Instance Method Details
#resolve(group_id:, order:) ⇒ Object
11 12 13 14 15 16 17 18 19 |
# File 'lib/lms/graphql/mutations/canvas/reorder_pinned_topics_groups.rb', line 11 def resolve(group_id:, order:) ctx[:canvas_api].proxy( "REORDER_PINNED_TOPICS_GROUPS", { "group_id": group_id, "order": order }, nil, ).parsed_response end |