class LMSGraphQL::Resolvers::Canvas::ListMigrationIssuesGroup
Public Instance Methods
resolve(group_id:, content_migration_id:, get_all: false)
click to toggle source
# File lib/lms_graphql/resolvers/canvas/list_migration_issues_groups.rb, line 11 def resolve(group_id:, content_migration_id:, get_all: false) result = context[:canvas_api].call("LIST_MIGRATION_ISSUES_GROUPS").proxy( "LIST_MIGRATION_ISSUES_GROUPS", { "group_id": group_id, "content_migration_id": content_migration_id }, nil, get_all, ) get_all ? result : result.parsed_response end