query-b2d552ae4505b8ee77dd0190b604aa8a
Botanists with aliases
SELECT ?item ?itemLabel ?itemAltLabel ?itemDescription ?IPNILink
WHERE
{
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
?item wdt:P586 ?ipni_id.
bind(uri(concat("https://www.ipni.org/a/",?ipni_id)) as ?IPNILink)
}
LIMIT 10
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# Botanists with aliases
SELECT ?item ?itemLabel ?itemAltLabel ?itemDescription ?IPNILink
WHERE
{
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
?item wdt:P586 ?ipni_id.
bind(uri(concat("https://www.ipni.org/a/",?ipni_id)) as ?IPNILink)
}
LIMIT 10
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?IPNILink"):::projected
v2("?ipni_id")
v1("?item"):::projected
c2(["bd:serviceParam"]):::iri
c4(["en"]):::literal
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end
v1 --"wdt:P586"--> v2
bind0[/"concat('https://www.ipni.org/a/',?ipni_id)"/]
v2 --o bind0
bind0 --as--o v3