Compose a query to fetch metadata from the Kolada API. Its use is mainly
Source:R/data.R
compose_data_query.Rd
Mainly used as a supporting function for get_values
but can also
be used to create a working URL to paste in your web browser.
Usage
compose_data_query(
kpi = NULL,
municipality = NULL,
period = NULL,
ou = NULL,
unit_type = "municipality",
page = NA,
per_page = NA,
version = "v2"
)
Arguments
- kpi
What kpis should be fetched? Can be a single name or a vector of names.
- municipality
For which municipalities should data be fetched? Can be a single name or a vector of names.
- period
For what years should data be fetched? Can be one or more four-digit integers or character strings.
- ou
(Optional) for what Operating Units should data be fetched? Only available for certain KPIs. Only used if
unit_type
is set to"ou"
.- unit_type
One of
"municipality"
or"ou"
. Whether to fetch data for Municipalities or Organizational Units. Units. Defaults to"municipality"
.- page
What page to fetch. Used mainly in large queries. Fetches a page using the value of
"per_page"
as pagination delimiter.- per_page
Number of results per page.
- version
Version of the API. Currently only
"v2"
is supported.