Class: LMS::GraphQL::Resolvers::Canvas::ListMigrationIssuesCourse

Inherits:
CanvasBaseResolver
  • Object
show all
Defined in:
lib/lms/graphql/resolvers/canvas/list_migration_issues_courses.rb

Instance Method Summary collapse

Instance Method Details

#resolve(course_id:, content_migration_id:) ⇒ Object



11
12
13
14
15
16
17
18
19
# File 'lib/lms/graphql/resolvers/canvas/list_migration_issues_courses.rb', line 11

def resolve(course_id:, content_migration_id:)
  context[:canvas_api].proxy(
    "LIST_MIGRATION_ISSUES_COURSES",
    {
      "course_id": course_id,
      "content_migration_id": content_migration_id              },
    nil,
  ).parsed_response
end