query-aaae3136bf7e931c89acc0db8c48cfc7
Which (co-)applicant institutions are members of DFN?
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#>
SELECT DISTINCT ?wLabel ?w
WHERE
{
?p wdt:P31 wd:Q98270496 .
?p wdt:P1416 ?w .
?w wdt:P463 wd:Q2514863 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en" . }
} ORDER BY ASC(?wLabel)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?p")
v3("?w"):::projected
v1("?wLabel"):::projected
c7(["bd:serviceParam"]):::iri
c9(["de,en"]):::literal
c2(["wd:Q98270496"]):::iri
c5(["wd:Q2514863"]):::iri
v2 --"wdt:P31"--> c2
v2 --"wdt:P1416"--> v3
v3 --"wdt:P463"--> c5
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end