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