query-72d1d59bdc97f45b21c0e528f6ae2a83
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 DISTINCT ?item ?itemLabel ?sitelinks
WHERE
{
{ {?item wdt:P276/wdt:P276* wd:Q84 .}
UNION
{?item wdt:P131/wdt:P131* wd:Q23306 . } }
?item wdt:P31/wdt:P279* wd:Q1190554.
?item wikibase:sitelinks ?sitelinks .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
} order by desc(?sitelinks)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?sitelinks"):::projected
a1((" "))
a2((" "))
a3((" "))
c10(["bd:serviceParam"]):::iri
c2(["wd:Q84"]):::iri
c4(["wd:Q23306"]):::iri
c12(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c7(["wd:Q1190554"]):::iri
subgraph union0[" Union "]
subgraph union0l[" "]
style union0l fill:#abf,stroke-dasharray: 3 3;
v2 --"wdt:P131"--> a2
a2 --"wdt:P131"--> c4
end
subgraph union0r[" "]
style union0r fill:#abf,stroke-dasharray: 3 3;
v2 --"wdt:P276"--> a1
a1 --"wdt:P276"--> c2
end
union0r <== or ==> union0l
end
v2 --"wdt:P31"--> a3
a3 --"wdt:P279"--> c7
v2 --"wikibase:sitelinks"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c10 --"wikibase:language"--> c12
end