Theoretical limit on number of boolean queries

Is there a upper limit on how many boolean 'should' queries that I can run on an single API call?

Say I have my query as

{
	"query": {
		"bool": {
			"should": [{
					"prefix": {
						"key1": <Path 1>
					}
				},
				{
					"prefix": {
						"key2": <Path 2>
					}
				},
                                {
					"prefix": {
						"keyn": <Path n>
					}
				}
			]
		}
	}
}

Is there a cap on n?

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