You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a multilinestring geometry type which has nested query. What should I provide in the config to make query something like below:
esquery {
"index": "test_index",
"body": {
"size": 6000,
"query": {
"nested": {
"path": "test_abc",
"query": {
"bool": {
"must": [
{
"exists": {
"field": "test_abc.pqr"
}
}
]
}
}
}
}
}
}
If I give "geometryField": "test_abc.pqr" in the config, It does not work.
The text was updated successfully, but these errors were encountered:
I have a multilinestring geometry type which has nested query. What should I provide in the config to make query something like below:
esquery {
"index": "test_index",
"body": {
"size": 6000,
"query": {
"nested": {
"path": "test_abc",
"query": {
"bool": {
"must": [
{
"exists": {
"field": "test_abc.pqr"
}
}
]
}
}
}
}
}
}
If I give "geometryField": "test_abc.pqr" in the config, It does not work.
The text was updated successfully, but these errors were encountered: