I'm using Watson conversation to help run a virtual support system and am trying to figure out how to play with conditions a bit more. Specifically, I'm looking for a way to negate conditions or to specify a condition not found.
For example, I have an entity @sports with the sub-entities @sports:mlb, @sports:nba, @sports:nhl, and @sports:nfl. I'm looking for a way to specify recognizing any of these except nba (I know I could just specify the other three, but I have other similar needs where that is less feasible).
Ideally, it would be as easy as:
If bot recognizes:
@sports AND !@sports:nba (sports and not nba)
but that doesn't seem to work.
Is this doable? Any help is appreciated!