Open gcampax opened 3 years ago
"get news about coronavirus" parses to @com.smartnews.article() filter source =~ "coronavirus"; (wrong)
@com.smartnews.article() filter source =~ "coronavirus";
"get news from yesterday" parses to @com.smartnews.article() filter date == $start_of(day) - 1day; (kind of wrong), then returns no results
@com.smartnews.article() filter date == $start_of(day) - 1day;
"get news in the last 3 hours" parses to @com.smartnews.article() filter date <= $now - 3h (wrong)
@com.smartnews.article() filter date <= $now - 3h
"get news from the san francisco chronicel" parses to @com.smartnews.article() filter source =~ "san francisco chronicle"; and returns no results
@com.smartnews.article() filter source =~ "san francisco chronicle";
"get cat news" parses to cat api (wrong)
"get news about coronavirus" parses to
@com.smartnews.article() filter source =~ "coronavirus";
(wrong)"get news from yesterday" parses to
@com.smartnews.article() filter date == $start_of(day) - 1day;
(kind of wrong), then returns no results"get news in the last 3 hours" parses to
@com.smartnews.article() filter date <= $now - 3h
(wrong)"get news from the san francisco chronicel" parses to
@com.smartnews.article() filter source =~ "san francisco chronicle";
and returns no results