Hi All,
I have an experience that has “products” and “manufacturing” as verticals. I’d really like to leverage query rules to make sure that anytime someone searches and includes the term “products” the products vertical shows first and then the manufacturing vertical shows second. When reading through the learning modules it was my understanding that leveraging the action Boost Vertical Intents and applying a “searchTermMatchesRegex”:“^.products.” would do the trick. Unfortunately, I’m not seeing the results I was expecting and was wondering if anyone in the community could help out? Below is what I’ve added to my search configuration.
"rules": [
{
"criteria": {
"searchTermMatchesRegex": "^*.products.*"
},
"actions": [
{
"actionType": "BOOST_VERTICAL_INTENT",
"boostValue": 5,
"verticals": [
"products"
]
}
]
},
{
"criteria": {
"searchTermMatchesRegex": "^*.products.*"
},
"actions": [
{
"actionType": "BOOST_VERTICAL_INTENT",
"boostValue": 4,
"verticals": [
"manufacturing"
]
}
]
}
]