I am trying to duplicate one of the non-count examples from the openfda webpage.
https://api.fda.gov/drug/event.json?search=receivedate:[20040101+TO+20081231]&limit=1
However, when I try to do this same query with the R package all I get is NULL
fda_query("/drug/event.json") %>%
fda_search("receivedate:[20040101+TO+20081231]") %>%
fda_exec()
NULL
Did I miss something here?
I am trying to duplicate one of the non-count examples from the openfda webpage.
However, when I try to do this same query with the R package all I get is
NULLDid I miss something here?