query-ea006648db336bc2f5a752fd55929e42

rq turtle/ttl

Which (co-)applicant institutions are NOT members of DFN?

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#>
SELECT DISTINCT ?wLabel ?w
WHERE 
{
  ?p wdt:P31 wd:Q98270496 . 
  ?p wdt:P1416 ?w .
  FILTER NOT EXISTS {?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; v3("?p") v2("?w"):::projected v1("?wLabel"):::projected c7(["bd:serviceParam"]):::iri c9(["de,en"]):::literal c2(["wd:Q2514863"]):::iri c4(["wd:Q98270496"]):::iri f0[["not "]] subgraph f0e0["Exists Clause"] e0v1 --"wdt:P463"--> e0c2 e0v1("?w"):::projected e0c2(["wd:Q2514863"]):::iri end f0--EXISTS--> f0e0 f0 --> v2 f0 --> c1 f0 --> c2 v2 --"wdt:P463"--> c2 v3 --"wdt:P31"--> c4 v3 --"wdt:P1416"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end