query-1d037241f150857d84f9375082c7de2b
Carte des lieux de naissance des récipiendaires des prix du Québec (400/430)
Use at
- https://query.wikidata.org/sparql
 
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX prov: <http://www.w3.org/ns/prov#>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#Search for missing descriptions in a target language and match with description string
#defaultView:Map
SELECT DISTINCT ?item ?itemLabel ?itemDescription ?itemNaissanceLabel ?coord WHERE {
  ?item wdt:P31 wd:Q5.  # instance of human
  ?item p:P166 ?award_statement .
  ?award_statement ps:P166 ?prix .
  ?prix wdt:P361 wd:Q3405853 . 
#  OPTIONAL {?item wdt:P735 ?itemPrenom.}
#  OPTIONAL {?item wdt:P734 ?itemNom.}
#  OPTIONAL {?item wdt:P21 ?itemGenre.}
  ?item wdt:P19 ?itemNaissance.
  OPTIONAL { ?itemNaissance wdt:P625 ?coord. }
#  OPTIONAL {?item wdt:P569 ?itemDateNaissance.}
#  OPTIONAL {?award_statement pq:P585 ?datePrix.} 
#  OPTIONAL {?award_statement prov:wasDerivedFrom ?ref}
 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("?award_statement")
  v5("?coord"):::projected 
  v1("?item"):::projected 
  v4("?itemNaissance")
  v3("?prix")
  c10(["bd:serviceParam"]):::iri 
  c2(["wd:Q5"]):::iri 
  c6(["wd:Q3405853"]):::iri 
  c12(["fr"]):::literal 
  v1 --"p:direct/P31"-->  c2
  v1 --"p:P166"-->  v2
  v2 --"p:statement/P166"-->  v3
  v3 --"p:direct/P361"-->  c6
  v1 --"p:direct/P19"-->  v4
  subgraph optional0["(optional)"]
  style optional0 fill:#bbf,stroke-dasharray: 5 5;
    v4 -."p:direct/P625".->  v5
  end
  subgraph s1["http://wikiba.se/ontology#label"]
    style s1 stroke-width:4px;
    c10 --"wikibase:language"-->  c12
  end