Introduce a filter with WHERE, then check if the tag property is either '#science' or '#food'.
WHERE
tag
'#science'
'#food'
Make sure to pick WHERE followed by tag and then IN, (, '#science', '#food', ).
IN
(
'#science', '#food'
)