query-69fe372d930084d9b2475b6e3ca1157e

rq turtle/ttl

aircraft families SELECT ?aircraft ?aircraftLabel ?manufacturerLabel { # Lockheed BIND (wd:Q7233 AS ?manufacturer) .

# instance of aircraft family ?aircraft wdt:P31 wd:Q15056993 .

# manufacturer ?aircraft wdt:P176 ?manufacturer .

SERVICE wikibase:label { bd:serviceParam wikibase:language "en" . }

} ORDER BY ?aircraftLabel

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#>
# aircraft families
SELECT ?aircraft ?aircraftLabel ?manufacturerLabel
{
  # Lockheed
  BIND (wd:Q7233 AS ?manufacturer) .

  # instance of aircraft family
  ?aircraft wdt:P31 wd:Q15056993 .

  # manufacturer
  ?aircraft wdt:P176 ?manufacturer .

  SERVICE wikibase:label {
    bd:serviceParam wikibase:language "en" .
  }

} ORDER BY ?aircraftLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?aircraft"):::projected v1("?aircraftLabel"):::projected v2("?manufacturer") c5(["bd:serviceParam"]):::iri c7(["en"]):::literal c2(["wd:Q15056993"]):::iri bind0[/"'wd:Q7233'"/] bind0 --as--o v2 v3 --"wdt:P31"--> c2 v3 --"wdt:P176"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end