Class: LMSGraphQL::Resolvers::Canvas::GetSisImportList

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

Instance Method Summary collapse

Instance Method Details

#resolve(account_id:, created_since: nil, workflow_state: nil) ⇒ Object



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

def resolve(account_id:, created_since: nil, workflow_state: nil)
  context[:canvas_api].call("GET_SIS_IMPORT_LIST").proxy(
    "GET_SIS_IMPORT_LIST",
    {
      "account_id": ,
      "created_since": created_since,
      "workflow_state": workflow_state            },
    nil,
  ).parsed_response
end