1var query =
2{
3 "sorts": [
4 {
5 "fieldName": "LotID",
6 "isAscending": false,
7 "isCaseSensitive": false
8 },
9 {
10 "fieldName": "Plant"
11 }
12 ],
13 "filters": {
14 "type": "And",
15 "filters": [
16 {
17 "type": "GT",
18 "fieldName": "Duration",
19 "value": "12"
20 },
21 {
22 "type": "TaggedWith",
23 "fieldName": "tags",
24 "tags": "MaintenanceIssues:PowerOutage"
25 }
26 ]
27 }
28};
1var query =
2{
3 "filters": {
4 "type": "GT, LT, GE, LE, NE, EQ, LIKE, NOTLIKE",
5 "fieldName": "Duration",
6 "value": "12"
7 }
8};