query-3e7af0c29ba8ead85de016adca184d79
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 schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
select ?item ?itemLabel
WHERE
{
?item wdt:P106 wd:Q82955 .
?wno schema:about ?item . ?wno schema:isPartOf <https://no.wikipedia.org/>.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],no". }
} order by ?itemLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?itemLabel"):::projected
v3("?wno")
c9(["#91;AUTO_LANGUAGE#93;,no"]):::literal
c7(["bd:serviceParam"]):::iri
c5([https://no.wikipedia.org/]):::iri
c2(["wd:Q82955"]):::iri
v2 --"wdt:P106"--> c2
v3 --"schema:about"--> v2
v3 --"schema:isPartOf"--> c5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end