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