In the Doc it says:
I have an options field (options_colors) configured like this:
I want to have a query returning only pages with the VALUE 'red'. This is a query that works:
$newsentries = $pages->find('template=news-entry,options_colors=number1,sort=-created,limit=16');
this is a query which does not work
$newsentries = $pages->find('template=news-entry,options_colors=red,sort=-created,limit=16');
How do I query for 'red' instead of the title for the value?