query-f73f15aa53594d1fabfea2266dd7df78

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#>
SELECT ?instance_of_aircraft_crash ?instance_of_aircraft_crashLabel ?property ?propertyLabel ?person
{
  ?instance_of_aircraft_crash ?p ?person.
  ?property wikibase:directClaim ?p .
  ?instance_of_aircraft_crash wdt:P31/wdt:P279* wd:Q3002150 .
  ?person wdt:P31 wd:Q5 .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en" . }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?instance_of_aircraft_crash"):::projected v2("?p") v3("?person"):::projected v4("?property"):::projected a1((" ")) c7(["bd:serviceParam"]):::iri c4(["wd:Q3002150"]):::iri c5(["wd:Q5"]):::iri c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 -->v2--> v3 v4 --"wikibase:directClaim"--> v2 v1 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c4 v3 --"wdt:P31"--> c5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end