-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathquery.json
40 lines (40 loc) · 1.32 KB
/
query.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
{
"query": {
"type": "index",
"conditions" : {
"any": [
{"key": "INR",
"key_type": "text",
"index_name": "currency"},
{"key": "tokyo",
"key_type": "text",
"index_name": "capital_lc__"},
{"key": [1.0, 50.0],
"key_type": "double",
"index_name": "water_percent"}
],
"filters": [
{
"key": "India",
"key_type": "text",
"index_json_path": ["details", "name"]
},
{
"key": 9.6,
"key_type": "double",
"index_json_path": ["details", "geography", "water_percent"]
},
{
"key": [0.6, 10.2],
"key_type": "double",
"index_json_path": ["details", "geography", "water_percent"]
}
]
},
"selected_paths": {
"name": ["details", "name"],
"religions": ["details", "religions"],
"water_percent": ["details", "geography", "water_percent"]
}
}
}