Multiple Geo search condition

I am wondering if FTS can handle multiple GEO based conditions like either multiple polygons or a mixture of Polygons and Radius or Rectangle areas. And if so how would you specify multiple ones when a single polygon looks like this.

  "query": {
    "polygon_points":[
      {
        "lon":-115.6893127,
        "lat":37.516925
      },
      {
        "lon":-115.6877356,
        "lat":37.5155027
      },
      {
        "lon":-115.6862764,
        "lat":37.5164688
      },
      {
        "lon":-115.6873708,
        "lat":37.5174169
      },
      {
        "lon":-115.6892805,
        "lat":37.5169518
      },
	  {
        "lon":-115.6893127,
        "lat":37.516925
      }
    ],
      "field": "geo"
    }
}'

@makeawish Yes that’s possible. You will need to run the multiple geo spatial queries within a “conjuncts”. So the overall query would be a compound conjunction query.

Relevant documentation …