tests/testthat/_snaps/spq_group_by.md

spq_group_by works with R syntax

Code
  spq_init() %>% spq_select(population, countryLabel) %>% spq_group_by(population,
    countryLabel)
Output

  SELECT ?population ?countryLabel
  WHERE {


  }
  GROUP BY ?population ?countryLabel

spq_group_by works with R syntax - string

Code
  spq_init() %>% spq_select(population, countryLabel) %>% spq_group_by(
    "population", "countryLabel")
Output

  SELECT ?population ?countryLabel
  WHERE {


  }
  GROUP BY ?population ?countryLabel


lvaudor/glitter documentation built on Jan. 30, 2024, 1:34 a.m.