Skip to contents

Search for recipes by name or description in the active backend.

Usage

search_recipes(query)

Arguments

query

Character search string.

Value

List of matching Recipe objects.

Examples

set_backend("local", path = tempfile(fileext = ".json"))
r <- recipe(
  name = "Labor Market", user = "Test",
  svy = survey_empty(type = "ech", edition = "2023"),
  description = "Labor market indicators"
)
publish_recipe(r)
results <- search_recipes("labor")
length(results)
#> [1] 1