Changes for page Lucene Search Query Help
Last modified by Djebloun Sidali on 2014/02/23 15:55
Change comment:
There is no comment for this version
Summary
-
Page properties (2 modified, 0 added, 0 removed)
Details
- Page properties
-
- Author
-
... ... @@ -1,1 +1,1 @@ 1 -xwiki:XWiki. VincentMassol1 +xwiki:XWiki.mstaicu - Content
-
... ... @@ -188,12 +188,18 @@ 188 188 189 189 Type of a document: "attachment", "wikipage" or "objects", used to control presentation of searchresults. 190 190 191 -Look for "test" in attachments 191 +Look for "test" in attachments: 192 192 193 193 {{code}} 194 194 test AND type:attachment 195 195 {{/code}} 196 196 197 +Look for "test" in pages but exclude attachments containing the word test: 198 + 199 +{{code}} 200 +test AND -type:attachment 201 +{{/code}} 202 + 197 197 == filename == 198 198 199 199 Look for attachments with a filename starting with "test": ... ... @@ -202,6 +202,13 @@ 202 202 filename:test* 203 203 {{/code}} 204 204 211 +== mimetype == 212 + 213 +Look for attachments with a certain MIME type. Examples: 214 + 215 +* Search for PDFs only: {{code language="none"}}mimetype:application/pdf{{/code}} 216 +* Search for all attachments except images: {{code language="none"}}type:attachment -mimetype:image/*{{/code}} 217 + 205 205 == object == 206 206 207 207 The "object:" prefix allow to search for pages containing objects from a specific class. ... ... @@ -263,3 +263,9 @@ 263 263 {{code}} 264 264 +(object:XWiki.XWikiUsers object:XWiki.XWikiGroups) -name:XWikiGroupTemplate 265 265 {{/code}} 279 + 280 +Looking for documents by a value which is stored in a DatabaseTree property in an object. As a mention, the searched value can be wrapped inside round paranthesis or single / double quotes 281 + 282 +{{code}} 283 ++Space.Class.databaseTreeProperty:(searchedValue) 284 +{{/code}}