Class: LMSGraphQL::Mutations::Canvas::ReorderQuestionGroup
- Inherits:
-
BaseMutation
- Object
- GraphQL::Schema::Mutation
- BaseMutation
- LMSGraphQL::Mutations::Canvas::ReorderQuestionGroup
- Defined in:
- lib/lms_graphql/mutations/canvas/reorder_question_groups.rb
Instance Method Summary collapse
Instance Method Details
#resolve(course_id:, quiz_id:, id:, order_id:, order_type: nil) ⇒ Object
16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# File 'lib/lms_graphql/mutations/canvas/reorder_question_groups.rb', line 16 def resolve(course_id:, quiz_id:, id:, order_id:, order_type: nil) context[:canvas_api].call("REORDER_QUESTION_GROUPS").proxy( "REORDER_QUESTION_GROUPS", { "course_id": course_id, "quiz_id": quiz_id, "id": id }, { "order[id]": order_id, "order[type]": order_type }, ).parsed_response end |