query-4f8292958799e4286dd286451283cf19
UConn people, places, and things with corresponding Wikipedia articles SELECT ?uconn ?uconnLabel ?article WHERE { ?uconn wdt:P5008 wd:Q109854824 . # On Focus List of UConn wikiproject ?article schema:about ?uconn . ?article schema:isPartOf https://en.wikipedia.org/.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" } }
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#>
#UConn people, places, and things with corresponding Wikipedia articles
SELECT ?uconn ?uconnLabel ?article
WHERE {
?uconn wdt:P5008 wd:Q109854824 . # On Focus List of UConn wikiproject
?article schema:about ?uconn .
?article schema:isPartOf <https://en.wikipedia.org/>.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?article"):::projected
v1("?uconn"):::projected
c5([https://en.wikipedia.org/]):::iri
c7(["bd:serviceParam"]):::iri
c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c2(["wd:Q109854824"]):::iri
v1 --"wdt:P5008"--> c2
v2 --"schema:about"--> v1
v2 --"schema:isPartOf"--> c5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end