Class: LMSGraphQL::Resolvers::Canvas::GetMigrationIssueGroup

Inherits:
CanvasBaseResolver
  • Object
show all
Defined in:
lib/lms_graphql/resolvers/canvas/get_migration_issue_groups.rb

Instance Method Summary collapse

Instance Method Details

#resolve(group_id:, content_migration_id:, id:) ⇒ Object



11
12
13
14
15
16
17
18
19
20
# File 'lib/lms_graphql/resolvers/canvas/get_migration_issue_groups.rb', line 11

def resolve(group_id:, content_migration_id:, id:)
  context[:canvas_api].proxy(
    "GET_MIGRATION_ISSUE_GROUPS",
    {
      "group_id": group_id,
      "content_migration_id": content_migration_id,
      "id": id            },
    nil,
  ).parsed_response
end