query-77afdc6b8e481b0efd572b821dc40f92
Liste d'éléments possédant trois valeurs pour trois propriétés SELECT DISTINCT ?item WHERE { ?item wdt:PROPRIÉTÉ1 wd:ÉLÉMENT1 . ?item wdt:PROPRIÉTÉ2 wd:ÉLÉMENT2 . ?item wdt:PROPRIÉTÉ3 wd:ÉLÉMENT3 . }
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
#Liste d'éléments possédant trois valeurs pour trois propriétés
SELECT DISTINCT ?item WHERE {
?item wdt:PROPRIÉTÉ1 wd:ÉLÉMENT1 .
?item wdt:PROPRIÉTÉ2 wd:ÉLÉMENT2 .
?item wdt:PROPRIÉTÉ3 wd:ÉLÉMENT3 .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
c6(["wd:ÉLÉMENT3"]):::iri
c4(["wd:ÉLÉMENT2"]):::iri
c2(["wd:ÉLÉMENT1"]):::iri
v1 --"wdt:PROPRIÉTÉ1"--> c2
v1 --"wdt:PROPRIÉTÉ2"--> c4
v1 --"wdt:PROPRIÉTÉ3"--> c6