IExecutionResult
Home > @gooddata/sdk-backend-spi > IExecutionResult
IExecutionResult interface
Represents results of execution done with particular definition.
Signature:
export interface IExecutionResult
Remarks
Within the result is the description of the shape of the data and methods to to obtain views on the data.
Properties
| Property | Type | Description |
|---|---|---|
| definition | IExecutionDefinition | Full definition of execution that yielded this result. |
| dimensions | IDimensionDescriptor[] | Description of shape of the data. |
Methods
| Method | Description |
|---|---|
| equals(other) | Tests if this execution result is same as the other result. |
| export(options) | Asynchronously exports all data in this result. |
| fingerprint() | Unique fingerprint of the execution result. |
| readAll() | Asynchronously reads all data for this result into a single data view. |
| readWindow(offset, size) | Asynchronously reads a window of data for this result. |
| transform() | Transforms this execution result - changing the result sorting, dimensionality and available totals is possible through transformation. |