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