Type alias ReportAllFactSheetsResponse

ReportAllFactSheetsResponse: Record<string, ReportPointOfViewFactSheets>

Return type of lx.getAllFactSheets(). A record keyed by the same string keys passed in the pointsOfView argument — each value is a paged Fact Sheet result for that point of view.

Example

const response = await lx.getAllFactSheets('Application', attributes, facetSelection, {
current: { factSheetIds: [], pointInTime: { date: null, milestoneId: null } }
});
const apps = response['current'].edges.map(e => e.node);

Generated using TypeDoc