We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 25b9160 + 788f48f commit 33c891cCopy full SHA for 33c891c
1 file changed
Classes/Eel/ElasticSearchQueryBuilder.php
@@ -576,13 +576,14 @@ public function fetch()
576
/**
577
* Get a query result object for lazy execution of the query
578
*
579
+ * @param boolean $cacheResult
580
* @return \Traversable<\Neos\Flow\Persistence\QueryResultInterface>
581
* @api
582
*/
- public function execute()
583
+ public function execute($cacheResult = true)
584
{
585
$elasticSearchQuery = new ElasticSearchQuery($this);
- $result = $elasticSearchQuery->execute(true);
586
+ $result = $elasticSearchQuery->execute($cacheResult);
587
588
return $result;
589
}
0 commit comments