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: doc/04_Searching_For_Data_In_Index/09_Pimcore_Query_Language/README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -123,6 +123,7 @@ All examples are based on the `Car` data object class of the [Pimcore Demo](http
123
123
|`genericImages:Asset.fullPath LIKE "/Car Images/vw/*"`| All cars with a image linked in the `genericImages` image gallery which is contained in the asset folder `/Car Images/vw`. |
124
124
|`color = "red" OR color = "blue"`| All red or blue cars using standard PQL syntax. |
125
125
|`series = empty AND color="red"`| All models where the series is empty and the color is red. |
126
+
|`License.expiryDate <= 'now+2d/d'`| All elements whose license expires in two days - if the field is a date field you can use [date-math](https://www.elastic.co/guide/en/elasticsearch/reference/current/common-options.html#date-math) syntax of elastic search/opensearch.|
126
127
|`Query("standard_fields.color:(red OR blue)")`| All red or blue cars using simple query string syntax. |
0 commit comments