query-223b9d172ebb9dc4830b0b00dd61b1bc

rq turtle/ttl

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. ?article wdt:P921 ?mainsubject. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" } } ORDER BY ASC(?articleLabel)

Use at

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.
        ?article wdt:P921 ?mainsubject.
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 v4("?mainsubject") c6(["bd:serviceParam"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal c2(["wd:Q109854824"]):::iri v2 --"wdt:P5008"--> c2 v3 --"wdt:P50"--> v2 v3 --"wdt:P921"--> v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end