query-ac05aa5f56e516eb75383672fca2b589

rq turtle/ttl

Ensemble des prénoms d'une personne avec leur rang

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?firstname ?firstnameLabel ?rank WHERE {
  wd:Q34389 p:P735 ?statement.
  ?statement ps:P735 ?firstname;
    pq:P1545 ?rank.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "fr". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?firstname"):::projected v3("?rank"):::projected v1("?statement") c6(["bd:serviceParam"]):::iri c1(["wd:Q34389"]):::iri c8(["fr"]):::literal c1 --"p:P735"--> v1 v1 --"p:statement/P735"--> v2 v1 --"p:qualifier/P1545"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end