Nothing
#' @export
getDatasets = function(im,
type,
child_name,
value,
op){
queryDatasets = newQuery()
# set columns
queryDatasets[["select"]] = c(
paste0(type, c(".dataSets.name",
".dataSets.description",
".dataSets.url")
)
)
# set sort order
sortOrder = "ASC"
names(sortOrder) = paste0(type, ".dataSets.name")
queryDatasets[["orderBy"]] = list(sortOrder)
# set constraints
if(op == "LOOKUP"){
constraint = list(
path = type,
op = op,
value = value,
code = "A"
)
} else {
constraint = list(
path = paste(type, child_name, sep = "."),
op = op,
value = value,
code = "A"
)
}
queryDatasets[["where"]] = list(constraint)
# run query
res = runQuery(im, queryDatasets)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.