query-c08a76b63067a5ba61701658994029ab

rq turtle/ttl

New School queriesHow many Wikidata items are related to the New School? There are many smaller schools: Parsons, New School for Social Research

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 ?item ?itemLabel ?schoolurl
WHERE
{
  ?item wdt:P856 ?schoolurl.
  #using star because an item might be an instance of educational institution
  ?item (wdt:P31/wdt:P279*) wd:Q2385804.
  FILTER contains(str(?schoolurl), "newschool.edu")
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}  

LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?schoolurl"):::projected a1((" ")) c5(["wd:Q2385804"]):::iri c7(["bd:serviceParam"]):::iri c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal f0[["contains(str(?schoolurl),'newschool.edu')"]] f0 --> v1 v2 --"wdt:P856"--> v1 v2 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end