-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSalesPageQuery.json
46 lines (46 loc) · 1.39 KB
/
SalesPageQuery.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"Columns": [ "Id", "Country", "ItemType", "SalesChannel", "OrderPriority", "OrderDate", "OrderID", "ShipDate", "UnitsSold", "UnitPrice", "UnitCost" ],
"Condition": {
"Operator": "And",
"Conditions": [
{ "ColumnName": "Country", "Operator": "Equals", "RandomizeValue": true },
{ "ColumnName": "SalesChannel", "Operator": "Equals", "Value": "Offline" },
{ "ColumnName": "UnitsSold", "Operator": "Greater", "Value": 1000 },
{
"ColumnName": "OrderDate",
"Operator": "GreaterEquals",
"RandomizeValue": true,
"ValueRandomizationRule":
{
"UseExistingValues": false,
"GeneratorOptions":
{
"Type": "DateTime",
"MinValue": "2015-01-01",
"MaxValue": "2016-01-01",
"Delta": "7.00:00:00"
}
}
},
{
"ColumnName": "OrderDate",
"Operator": "Lower",
"RandomizeValue": true,
"ValueRandomizationRule":
{
"UseExistingValues": false,
"GeneratorOptions":
{
"Type": "DateTime",
"MinValue": "2017-01-01",
"MaxValue": "2018-01-01",
"Delta": "7.00:00:00"
}
}
}
]
},
"Sort": [ { "ColumnName": "OrderDate", "Direction": "Descending" } ],
"Skip": 0,
"Take": 100
}