Optional attributesThe Fact Sheet attributes to query from the backend. Strings are GraphQL selection-set fragments, not plain field names.
'businessCriticality''lifecycle { asString phases { phase startDate } }''relApplicationToBusinessCapability { edges { node { factSheet { ... on BusinessCapability { id displayName } } } } }'Always verify available field names using lx.currentSetup.settings.dataModel
or the LeanIX MCP tools before writing queries.
attributes: [
'id',
'displayName',
'businessCriticality',
'lifecycle { asString }',
'tags { name }',
'relApplicationToBusinessCapability { edges { node { factSheet { id displayName } } } }'
]
Optional callbackCalled each time the facet result set changes (on filter change and on initial load).
data is an array of Fact Sheet objects shaped as GraphQL BaseFactSheet nodes
extended with the fields requested via attributes. Access fields directly on each
element (e.g. item.businessCriticality, item.lifecycle?.asString).
This is the primary data delivery mechanism for facet-based reports.
Optional defaultIf defined these filters will be applied as initial default when the user enters the report.
Optional defaultthis parameter has no effect on the page size anymore.
Optional facetCalled whenever a facet has changed.
Use ReportFacetsConfig.facetFiltersChangedCallback instead.
Unlike facetFiltersChangedCallback, this callback only received the single changed
FacetFilter, not the full updated selection.
Optional facetCalled every time the facet filter selection changes — including the initial load. Receives the complete current ReportFacetsSelection (all active facets, direct hits, and full-text search term) so the report can re-render without needing to track individual changes.
Prefer this over the deprecated facetChangedCallback.
Optional factIf defined these direct hits will be applied in initial report loading
Optional fixedIf defined the facet will have a fixed filter on the fact sheet type with this value. Important to mention is that updating this value won't work.
Therefore, we recommend creating a new facet if you want to change the fixed fact sheet type. Another recommendation is to always reflect the fact sheet type in the key value of the facet.
Optional fullIf defined this full text search term is applied in initial report loading
Optional labelOptional sortingsGenerated using TypeDoc
Contains the configurations required to filter on a specific portion of the reports data.