Flexmonster Software License Agreement (“Agreement”) has been significantly revised and is effective as of September 30, 2024.
The following modifications were made:
The modified version of Flexmonster Software License Agreement is available here.
Downloading, installing, and/or continuing to use Flexmonster Software after September 30, 2024, constitutes Licensee’s acceptance of the terms and conditions of the modified version of Flexmonster Software License Agreement. If Licensee does not agree to any of these terms and conditions, they must cease using Flexmonster Software and must not download, install, use, access, or continue to access Flexmonster Software. By continuing to use Flexmonster Software or renewing the license under License Model or Maintenance after the effective date of any modifications to Agreement, Licensee accepts and agrees to be bound by the terms and conditions of the modified Agreement.
The FilterGroupObject describes filters for hierarchical data. When the server supports multilevel hierarchies, the FilterGroupObject appears in the /members request and the /select requests for the pivot table, the flat table, and the drill-through view.
Refer to our guide to learn more about supporting multilevel hierarchies.
{
type: string,
value: FilterObject[] | FilterGroupObject[]
}
Property/Type | Description |
---|---|
type String | The filter's type. Possible values: "and" , "or" . |
value FilterObject[] | FilterGroupObject[] | Filters to apply to the data. Filters are combined using the operator specified in the type property. |
The code below demonstrates the request with the FilterGroupObject. Notice that the filter.value
array contains two objects: the first one is a FilterGroupObject, and the second one is a FilterObject.
{ "type": "and", "value": [ { "type": "or", "value": [ { "field": { "uniqueName": "country" }, "query": { "begin": "c" } }, { "field": { "uniqueName": "state" }, "query": { "begin": "c" } } ] }, { "field": { "uniqueName": "W" }, "query": { "begin": "m" } } ] }
Supporting multilevel hierarchies
FilterObject
/members request
/select request for pivot table
/select request for flat table
/select request for drill-through view