query-6de2236473aa0ad7707b8ed550159f0e
List of list articles SELECT DISTINCT ?item ?itemLabel ?sitelink WHERE { ?item rdfs:label ?label; wdt:P31 wd:Q13406463. ?sitelink schema:about ?item; schema:inLanguage "or"; schema:isPartOf https://or.wikipedia.org/ SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" } } LIMIT 123
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 rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
# List of list articles
SELECT DISTINCT ?item ?itemLabel ?sitelink
WHERE {
?item rdfs:label ?label; wdt:P31 wd:Q13406463.
?sitelink schema:about ?item; schema:inLanguage "or"; schema:isPartOf <https://or.wikipedia.org/>
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" }
}
LIMIT 123
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v2("?label")
v3("?sitelink"):::projected
c6(["or"]):::literal
c10(["bd:serviceParam"]):::iri
c12(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c3(["wd:Q13406463"]):::iri
c8([https://or.wikipedia.org/]):::iri
v1 --"rdfs:label"--> v2
v1 --"wdt:P31"--> c3
v3 --"schema:about"--> v1
v3 --"schema:inLanguage"--> c6
v3 --"schema:isPartOf"--> c8
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c10 --"wikibase:language"--> c12
end