Is it possible to write a query that pulls up only issues that have exactly the specified option in their multi-select field?
I have a field, let's call it Color. It's populated with Red, Green, and Blue. Some of the issues have Red and Green, some have Red and Green and Blue, some just have Red. I want a query that pulls up ONLY issues with Red selected in the Color field, no Red and Green and no Red and Blue.
Now, I know I can do something like: "Color" not in (Green, Blue) to pull only Red issues. However this doesn't solve my problem, because my Color field has about sixty potential options. The query would become unwieldy. "Color" not in (Green, Blue, Yellow, Purple, #234343, Orangred, etc) Furthermore options are added regularly so this would require these JQL Queries to be modified each and every time.
Is there a better solution?