-
Task
-
Resolution: Fixed
-
L3 - Default
-
None
-
None
AT:
- In the report data structure of a single report, there is an additional property called data.parameters (on the same level as the view, groupby, ... properties)
- the processPart property is removed from the data property and moved to the new parameters field)
- processPart processing still works
- there is a new sorting property in data.parameters.sorting, containing information about how to sort raw data reports
- sorting raw data reports works
- The internal structure of the parameters property is as follows:
parameters: { processPart: { // or null if there is no process part start: 'flowNodeId1', end: 'flowNodeId2' }, sorting: { // or null if report is not raw data or no sorting has been specified by: 'processDefinitionVersion', // for variable columns use the 'variable:' prefix in the name order: 'asc' // or 'desc' } }
- if the by field contains an unknown field, the sorting is being ignored
- existing reports are migrated to the new structure
- the new structure is documented in the wiki