sets a value for Filter (fields and rules for filtering)
| value | object | the object with fields and rules | 
| config | any | operation config | 
$$("filter").setValue({
  "condition": {
    "filter": "9",
    "type": ">="
  },
  "includes": [9]
});
In order to set a value for Filter, you need to pass an object with the following properties:
The second parameter can be of any type (from a string to an object). config will be passed to the onChange event as the last parameter.