query-51cc522b696e73ef127b6ed75d51cf3b
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?ID ?sitelink ?article
WHERE
{
?item wdt:P5395 ?ID.
?article schema:about ?item ;
schema:isPartOf <https://no.wikipedia.org/> ;
schema:name ?sitelink .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],no,en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?ID"):::projected
v3("?article"):::projected
v1("?item"):::projected
v4("?sitelink"):::projected
c7(["bd:serviceParam"]):::iri
c4([https://no.wikipedia.org/]):::iri
c9(["#91;AUTO_LANGUAGE#93;,no,en"]):::literal
v1 --"wdt:P5395"--> v2
v3 --"schema:about"--> v1
v3 --"schema:isPartOf"--> c4
v3 --"schema:name"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end