Quick question guys: If I have a query like `feed(...
# orm-help
j
Quick question guys: If I have a query like
feed(where: { input: 'String' }) { id }
for example, how would I structure this to return a result for multiple possible
input
values? Something like
feed(where: { input: 'String' OR 'OtherString' }) { id }
.
w
Check the doc, and look for the
OR
operator
j
Ah! Duh, somehow I missed that. Right there in front of me.