Class: LMS::GraphQL::Mutations::Canvas::UnlinkOutcomeCourse
- Inherits:
-
CanvasBaseMutation
- Object
- GraphQL::Schema::Mutation
- CanvasBaseMutation
- LMS::GraphQL::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
12 13 14 15 16 17 18 19 20 21 |
# File 'lib/lms/graphql/mutations/canvas/unlink_outcome_courses.rb', line 12 def resolve(course_id:, id:, outcome_id:) ctx[:canvas_api].proxy( "UNLINK_OUTCOME_COURSES", { "course_id": course_id, "id": id, "outcome_id": outcome_id }, nil, ).parsed_response end |