Class: LMSGraphQL::Mutations::Canvas::UnlinkOutcomeCourse
- Inherits:
-
BaseMutation
- Object
- GraphQL::Schema::Mutation
- BaseMutation
- LMSGraphQL::Mutations::Canvas::UnlinkOutcomeCourse
- Defined in:
- lib/lms_graphql/mutations/canvas/unlink_outcome_courses.rb
Instance Method Summary collapse
Instance Method Details
#resolve(course_id:, id:, outcome_id:) ⇒ Object
14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/lms_graphql/mutations/canvas/unlink_outcome_courses.rb', line 14 def resolve(course_id:, id:, outcome_id:) context[:canvas_api].call("UNLINK_OUTCOME_COURSES").proxy( "UNLINK_OUTCOME_COURSES", { "course_id": course_id, "id": id, "outcome_id": outcome_id }, {}, ).parsed_response end |