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