query-5d880b63f5f5cac1967ec2a35e26bbd9
Focus list finder for main subjects that are article items SELECT DISTINCT ?item ?subjectLabel WHERE {?item wdt:P921 ?subject; wdt:P5008 wd:Q55439927. ?subject wdt:P31 wd:Q13442814.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
LIMIT 100
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#>
#Focus list finder for main subjects that are article items
SELECT DISTINCT ?item ?subjectLabel
WHERE {?item wdt:P921 ?subject;
wdt:P5008 wd:Q55439927.
?subject wdt:P31 wd:Q13442814.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v2("?subject")
c5(["wd:Q13442814"]):::iri
c7(["bd:serviceParam"]):::iri
c3(["wd:Q55439927"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"wdt:P921"--> v2
v1 --"wdt:P5008"--> c3
v2 --"wdt:P31"--> c5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end