query-cda86a69d27cd8c8d19eb21e2c4bd056
Search for missing descriptions in a target language and match with description string SELECT DISTINCT ?item ?itemLabel ?itemDescription ?datePrix ?itemPrenomLabel ?itemNomLabel ?itemGenreLabel ?itemNaissanceLabel ?itemDateNaissance ?prixLabel WHERE { ?item wdt:P31 wd:Q5. # instance of human OPTIONAL {?item wdt:P735 ?itemPrenom.} OPTIONAL {?item wdt:P734 ?itemNom.} OPTIONAL {?item wdt:P21 ?itemGenre.} OPTIONAL {?item wdt:P19 ?itemNaissance.} OPTIONAL {?item wdt:P569 ?itemDateNaissance.}
?item p:P166 ?award_statement . ?award_statement ps:P166 ?prix . ?prix wdt:P361 wd:Q3405853 . OPTIONAL {?award_statement pq:P585 ?datePrix.} OPTIONAL {?award_statement prov:wasDerivedFrom ?ref}
SERVICE wikibase:label { bd:serviceParam wikibase:language "fr". }
}
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
SELECT DISTINCT ?item ?itemLabel ?itemDescription ?datePrix ?itemPrenomLabel ?itemNomLabel ?itemGenreLabel ?itemNaissanceLabel ?itemDateNaissance ?prixLabel WHERE {
?item wdt:P31 wd:Q5. # instance of human
OPTIONAL {?item wdt:P735 ?itemPrenom.}
OPTIONAL {?item wdt:P734 ?itemNom.}
OPTIONAL {?item wdt:P21 ?itemGenre.}
OPTIONAL {?item wdt:P19 ?itemNaissance.}
OPTIONAL {?item wdt:P569 ?itemDateNaissance.}
?item p:P166 ?award_statement .
?award_statement ps:P166 ?prix .
?prix wdt:P361 wd:Q3405853 .
OPTIONAL {?award_statement pq:P585 ?datePrix.}
OPTIONAL {?award_statement prov:wasDerivedFrom ?ref}
SERVICE wikibase:label { bd:serviceParam wikibase:language "fr". }
}