navdeepk
(Navdeep)
July 10, 2020, 4:46am
1
using this
{
"query": {
"bool": {
"must": [
{
"wildcard": {
"url.original":{
"value" : "*version?"
}
}
}
],
"must_not": ,
"should":
}
}
}
But I have Other 5-10 keywords(admin, dashboard etc etc) , how can i pass other keywords in this ??
dadoonet
(David Pilato)
July 10, 2020, 10:48am
2
You can add multiple wildcard
clauses within the should
array.
Note that wildcard like this will be terribly slow.
1 Like
navdeepk
(Navdeep)
July 10, 2020, 11:14am
3
Thanks very much , Its working with querystring with OR option.
system
(system)
Closed
August 7, 2020, 11:14am
4
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.