query-1863c013a2b50f5fea517ae3a236d2e1
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?itemDescription WHERE {
?item wdt:P1216 ?number.
?item wdt:P131 wd:Q4697677.
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
LIMIT 5000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v2("?number")
c5(["bd:serviceParam"]):::iri
c3(["wd:Q4697677"]):::iri
c7(["en"]):::literal
v1 --"wdt:P1216"--> v2
v1 --"wdt:P131"--> c3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end