query-d5ebc649ceac4b0e78d3c2eaab105d99
Ajout d'un nom de famille aux éléments Wikidata dont le label se termine par ledit nom de familleOn fait d'abord une requête SPARQL :
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?item ?itemLabel WHERE {
?item wdt:P27 wd:Q142 ; wdt:P31 wd:Q5 .
minus { ?item wdt:P734 ?toto }
?item rdfs:label ?itemLabel
FILTER (lang(?itemLabel) = "fr" && STRENDS(?itemLabel, "Lacroix"))
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?item"):::projected
v1("?itemLabel"):::projected
v3("?toto")
c6(["wd:Q5"]):::iri
c4(["wd:Q142"]):::iri
f0[["?itemLabel = 'fr'ends-with(?itemLabel,'Lacroix')"]]
f0 --> v1
v2 --"wdt:P27"--> c4
v2 --"wdt:P31"--> c6
subgraph minus1["MINUS"]
style minus1 stroke-width:6px,fill:pink,stroke:red;
v2 --"wdt:P734"--> v3
end
v2 --"rdfs:label"--> v1