You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+29-12Lines changed: 29 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -212,7 +212,8 @@ Furthermore, the following operators are supported:
212
212
*`greaterThanOrEqual('propertyName', value)` -- range filter with property values greater than or equal to the given value
213
213
*`lessThan('propertyName', value)` -- range filter with property values less than the given value
214
214
*`lessThanOrEqual('propertyName', value)` -- range filter with property values less than or equal to the given value
215
-
*`sortAsc('propertyName')` and `sortDesc('propertyName')` -- can also be used multiple times, e.g. `sortAsc('tag').sortDesc(`date')` will first sort by tag ascending, and then by date descending.
215
+
*`sortAsc('propertyName')` and `sortDesc('propertyName')` -- can also be used multiple times, e.g. `sortAsc('tag').sortDesc(`date')`
216
+
will first sort by tag ascending, and then by date descending.
216
217
*`limit(5)` -- only return five results. If not specified, the default limit by Elasticsearch applies (which is at 10 by default)
217
218
*`from(5)` -- return the results starting from the 6th one
218
219
*`fulltext(...)` -- do a query_string query on the Fulltext Index
**The default configuration supports most usecases and often may not need to be touched, as this package comes with sane defaults for all Neos data types**
559
+
**The default configuration supports most usecases and often may not need to be touched, as this package comes
560
+
with sane defaults for all Neos data types.**
545
561
546
562
Indexing of properties is configured at two places. The defaults per-data-type are configured
547
563
inside `TYPO3.TYPO3CR.Search.defaultConfigurationPerType` of `Settings.yaml`.
If your nodetypes schema defines custom properties of type DateTime, you have got to provide similar configuration for them as well in your NodeTypes.yaml, or else they will not be indexed correctly.
606
+
If your nodetypes schema defines custom properties of type DateTime, you have got to provide similar configuration for
607
+
them as well in your `NodeTypes.yaml`, or else they will not be indexed correctly.
591
608
592
609
There are a few indexing helpers inside the `Indexing` namespace which are usable inside the
593
610
`indexing` expression. In most cases, you don't need to touch this, but they were needed to build up
0 commit comments