How to get Content Items from Keyword in Global Search on content item. #12277
Replies: 1 comment
-
closing as duplicate |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Folks,
I create query see below:
detail of query below:
I'm working on Orchard Lucene Search, I want to search content Items based on my keyword. for example, there's is 8 Content Item of "Prime" so when I type Prime so all the Prime will be show.
This is my query which is work fine.

{ "query": { "bool": { "must" : { "term" : { "Content.ContentItem.ContentType" : "Software" } }, "filter": [ { "term": { "Content.ContentItem.Published" : "true" }}, { "wildcard": { "Content.ContentItem.DisplayText" : "Prime*" }} ] } } }
how to override the Orchard Lucene Search default behavior based on above structure.
Beta Was this translation helpful? Give feedback.
All reactions