query_string : strThe SQL query to execute. Must follow the .
Returns:
Examples
# The query can reference any table on Redivis
query = redivis$query("
SELECT *
FROM demo.iris_species.iris
WHERE SepalLengthCm > 5
")
query$to_tibble()
# Id SepalLengthCm SepalWidthCm PetalLengthCm PetalWidthCm Species
# 0 33 5.2 4.1 1.5 0.1 Iris-setosa
# ...