interface ITransform {
    aggregates?: ITransformAggregate[];
    filters?: IGetDataFilter[];
    groupBy?: (string | string[] | FieldKey)[];
    type?: string;
}

Properties

aggregates?: ITransformAggregate[]
filters?: IGetDataFilter[]

An array containing objects created with create, Filter objects, or javascript objects.

groupBy?: (string | string[] | FieldKey)[]

An array of Objects. Each object can be a string, array of strings, or a FieldKey.

type?: string

Generated using TypeDoc