query-1bad954c57a182fc1a18c9dd3ac1c650

rq turtle/ttl

Find example properties for a certain value SELECT ?item ?val ?valLabel WHERE { ?item ?val wd:Q65094590 . #Straßenbahn Haltestelle S Hackescher Markt SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } LIMIT 300

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#Find example properties for a certain value
SELECT ?item ?val ?valLabel WHERE {
  ?item ?val wd:Q65094590 . #Straßenbahn Haltestelle S Hackescher Markt
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
LIMIT 300

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected v2("?val"):::projected c1(["wd:Q65094590"]):::iri c3(["bd:serviceParam"]):::iri c5(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 -->v2--> c1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c3 --"wikibase:language"--> c5 end