Convert an input string to the most likely item QID
searcher(search_term, language, limit, type,...)
Arguments
search_term: a term to search for.
language: the language to return the labels and descriptions in; this should consist of an ISO language code. Set to "en" by default.
limit: the number of results to return; set to 10 by default.
type: type of wikidata object to return (default = "item")
\dots: Additional parameters to supply to [httr::POST]
Returns
If the inputted string matches an item label, return its QID. If the inputted string matches multiple labels of multiple items, return the QID of the first hit. If the inputted string is already a QID, return the string.
Examples
# if input string is a valid QIDas_qid("Q42")# if input string matches multiple item labelsas_qid("Douglas Adams")# if input string matches a single unique labelas_qid("Douglas Adams and the question of arterial blood pressure in mammals")