Hi all,
I’m Facing an issue with QueryResource.
when we are searching on content based with “these, those, are etc.” type of keywords then jcrQuery is not returning any results.
Suppose I want to search the items based on their description.
My Description is: This is my Videocontent1 document.
Now,
If I search with the word “videoContent” or “document” it will give me the list of items which is containing the said words in description.
But if I search with “This” or with full text “This is my Videocontent1 document.” then it is not returning any results.
My query statement is like this:
/jcr:root/content//element(*,myproject:videoContent)
/@myproject:Description
/@myproject:Title
/@myproject:Video
/@hippostd:state
/@hippostdpubwf:lastModificationDate
[
@hippostd:state=‘unpublished’,
(@myproject:IsSoftDelete=‘false’ or (not(@myproject:IsSoftDelete)))
,**(jcr:contains(@myproject:Description,'*this*'))**
]
order by @hippostdpubwf:lastModificationDate descending
Can anyone please explain me why this is happening with the particular words like This, These, are etc.
Your Help very much appreciated.
Thanks,
Jeevana.