query-d0c0babbccfed8965061844a2c45d9f7
UConn authors of articles
Only authors that are part of Wikiproject UConn
SELECT DISTINCT ?author ?authorLabel ?article ?articleLabel WHERE { {?author wdt:P5008 wd:Q109854824 } ?article wdt:P50 ?author. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" } } ORDER BY ASC(?articleLabel)
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#>
#UConn authors of articles
#Only authors that are part of Wikiproject UConn
SELECT DISTINCT ?author ?authorLabel ?article ?articleLabel
WHERE {
{?author wdt:P5008 wd:Q109854824 }
?article wdt:P50 ?author.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" }
} ORDER BY ASC(?articleLabel)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?article"):::projected
v1("?articleLabel"):::projected
v2("?author"):::projected
c5(["bd:serviceParam"]):::iri
c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c2(["wd:Q109854824"]):::iri
v2 --"wdt:P5008"--> c2
v3 --"wdt:P50"--> v2
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end