query-f22c12f10655628d816989904e42a564

rq turtle/ttl

TODO

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#>
#defaultView:TreeMap
#Facilities available at stations
SELECT ?facility ?facilityLabel ?item ?itemLabel WHERE {
  ?item wdt:P16 wd:Q271195.
  ?item wdt:P31 wd:Q928830.
  ?item wdt:P912 ?facility. 
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?facility"):::projected v1("?item"):::projected c4(["wd:Q928830"]):::iri c7(["bd:serviceParam"]):::iri c9(["en"]):::literal c2(["wd:Q271195"]):::iri v1 --"wdt:P16"--> c2 v1 --"wdt:P31"--> c4 v1 --"wdt:P912"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end