query-2261350915a47af2d2a69b58e2a06a47

rq turtle/ttl

Organizations founded by UConn alumns SELECT DISTINCT ?alum ?alumLabel ?org ?orgLabel WHERE { {?alum wdt:P69 wd:Q49206 } ?org wdt:P112 ?alum. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" } } ORDER BY ASC(?alumLabel)

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#>
#Organizations founded by UConn alumns
SELECT DISTINCT ?alum ?alumLabel ?org ?orgLabel
WHERE {
    {?alum wdt:P69 wd:Q49206 }
        ?org wdt:P112 ?alum.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" }
} ORDER BY ASC(?alumLabel)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?alum"):::projected v1("?alumLabel"):::projected v3("?org"):::projected c5(["bd:serviceParam"]):::iri c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal c2(["wd:Q49206"]):::iri v2 --"wdt:P69"--> c2 v3 --"wdt:P112"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end