Expander

Function that exapnd resource from other services

Description

An expander implementation should meet the following requirements:

  1. accept an array of id, return exactly same length array of expanded value or null 1.1. if any of the id is found, the according value should be expanded value 1.2. if any of the id is not found, the according value should be null
interface Expander ((ids) => Promise<(null | object)[]>)

Generated using TypeDoc