query-a837c823824490ae40737af54944fb18
Main subject in enWP, round corner
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 ?subject ?subjectLabel ?article WHERE {
?item wdt:P1433 wd:Q15987216 .
?item wdt:P921 ?subject .
?article schema:about ?subject ;
schema:isPartOf <https://en.wikipedia.org/> .
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?article"):::projected
v1("?item"):::projected
v2("?subject"):::projected
c6([https://en.wikipedia.org/]):::iri
c8(["bd:serviceParam"]):::iri
c10(["en"]):::literal
c2(["wd:Q15987216"]):::iri
v1 --"wdt:P1433"--> c2
v1 --"wdt:P921"--> v2
v3 --"schema:about"--> v2
v3 --"schema:isPartOf"--> c6
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end