query_text.Rd
Search the database
query_text(query, from_pos = 0, tidy = TRUE, full_text = FALSE)
Specify the text query to send to elasticsearch.
OPTIONAL Parameter to paginate through result.
Tidy the results into a nested tibble DEFAULT: TRUE.
OPTIONAL Parameter to declare whether full text is available.
tibble.
# Look for the term cotton.
if (FALSE) {
query_text(
query ="cotton",
from_pos = 0,
tidy = TRUE
)
}