query-fa625b95feb70a0cda01df64a48cf0de

rq turtle/ttl

Looking at ranks SELECT ?rank ?rankLabel { # this returns just 2: Chief of Joint Operations and rear admiral #?rank wdt:P31/wdt:P279 wd:Q977459 . #?rank wdt:P279 wd:Q977459 .

# instance of military rank ?rank wdt:P31/wdt:P279* wd:Q56019 . # this part of the Royal Navy ?rank wdt:P361 wd:Q172771 .

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

} ORDER BY ?rankLabel

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#>
# Looking at ranks
SELECT ?rank ?rankLabel
{
  # this returns just 2: Chief of Joint Operations and rear admiral
  #?rank wdt:P31/wdt:P279* wd:Q977459 .
  #?rank wdt:P279* wd:Q977459 .

  # instance of military rank
  ?rank wdt:P31/wdt:P279* wd:Q56019 .
  # this part of the Royal Navy
  ?rank wdt:P361 wd:Q172771 .

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

} ORDER BY ?rankLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?rank"):::projected v1("?rankLabel"):::projected a1((" ")) c7(["bd:serviceParam"]):::iri c9(["en"]):::literal c3(["wd:Q56019"]):::iri c5(["wd:Q172771"]):::iri v2 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c3 v2 --"wdt:P361"--> c5 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end