Pairing nested properties in nested filter

Hi

Our documents have a nested array tasks.
We need to filter documents having task.cpu > X for tasks entries having tasks.id = 'foo'

{
  "tasks" : {
	"type" : "nested",
	"properties" : {
	  "cpu" : {
		"type" : "float"
	  },
	  "id" : {
		"type" : "keyword"
	   }
	}
}

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.