query-6846b38f04b0c409a0ff886621c2e985
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". }
?item wikibase:sitelinks ?linkcount .
filter(?linkcount=1)
} order by ?itemLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?item"):::projected
v1("?itemLabel"):::projected
v2("?linkcount")
v4("?wno")
c10(["#91;AUTO_LANGUAGE#93;,no"]):::literal
c8(["bd:serviceParam"]):::iri
c6([https://no.wikipedia.org/]):::iri
c3(["wd:Q82955"]):::iri
f0[["?linkcount = '1^^xsd:integer'"]]
f0 --> v2
v3 --"wdt:P106"--> c3
v4 --"schema:about"--> v3
v4 --"schema:isPartOf"--> c6
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end
v3 --"wikibase:sitelinks"--> v2