query-1f8d0d7f2cce3903845b529a9132469d
TODO
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#>
SELECT ?item ?itemLabel ?HDS_ID
WHERE
{
?item wdt:P902 ?HDS_ID.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,de,fr". }
} order by ?itemLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?HDS_ID"):::projected
v2("?item"):::projected
v1("?itemLabel"):::projected
c5(["#91;AUTO_LANGUAGE#93;,en,de,fr"]):::literal
c3(["bd:serviceParam"]):::iri
v2 --"wdt:P902"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end