V7: Route Filters Assist

Could someone point me in the right direction regarding the conversion of V6 route filters to V7.

Through the upgrade process this is not automatically done and requires me to rebuild my full rule set.
I tested the route filter conversion from V6 to V7 but it doesn’t work even though it is marked as completed.
The filters are removed from the V7 config after an upgrade.
https://help.mikrotik.com/docs/pages/viewpage.action?pageId=74678285#id-/routing/filter-BGPCommunityOperators

Would anyone know what the syntax is to mark a route as unreachable based on a matcher.
I have used a basic bgp-communities as an example

example:

add action=accept bgp-communities=no-export chain=BGP-IN set-type=unreachable

becomes

if (bgp-communities equal no-export) {set xxxxxxx; accept}

gw only works with an IP
gw-interface only works with a interface

https://help.mikrotik.com/docs/pages/viewpage.action?pageId=74678285#id-/routing/filter-BGPCommunityOperators

I don’t see an operator for type unreachable in V7…

*note in the docs “bgp-communites” is incorrectly spelt in the docs.

There is no such thing as type unreachable in v7.
You should set “blackhole”.
Should be something like

if (bgp-communities equal no-export) {set blackhole yes; accept}

ah! I tried to blackhole, but didn’t try the “yes” option. appreciate the help.