Class: LMS::GraphQL::Resolvers::Canvas::GetSectionInformationSection

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

Instance Method Summary collapse

Instance Method Details

#resolve(id:, include: nil) ⇒ Object



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

def resolve(id:, include: nil)
  context[:canvas_api].proxy(
    "GET_SECTION_INFORMATION_SECTIONS",
    {
      "id": id,
      "include": include              },
    nil,
  ).parsed_response
end