We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 608379b commit 1f56a45Copy full SHA for 1f56a45
1 file changed
README.md
@@ -255,6 +255,18 @@ prototype(Acme.Blog:SingleTag) < prototype(TYPO3.Neos:Template) {
255
}
256
```
257
258
+#### Making OR queries
259
+
260
+There's no OR operator provided in this package, so we would need to use custom ElasticSearch query filter for that:
261
262
+```
263
+....queryFilter('bool', {should: [
264
+ {term: {tags: tagNode.identifier}},
265
+ {term: {places: tagNode.identifier}},
266
+ {term: {projects: tagNode.identifier}}
267
+]})
268
269
270
## Aggregations
271
272
Aggregation is an easy way to aggregate your node data in different ways. Elasticsearch provides a couple of different types of
0 commit comments