query-87751261b7b7f230adbf0d8e71cd0d69

rq turtle/ttl

Liste avec un OR entre les propriété 2 et 3 SELECT DISTINCT ?item WHERE { { ?item wdt:PROPRIÉTÉ1 wd:ÉLÉMENT1 . ?item wdt:PROPRIÉTÉ2 wd:ÉLÉMENT2 . } UNION { ?item wdt:PROPRIÉTÉ3 wd:ÉLÉMENT3 . } }

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
#Liste avec un OR entre les propriété 2 et 3
SELECT DISTINCT ?item WHERE {
{
  ?item wdt:PROPRIÉTÉ1 wd:ÉLÉMENT1 .
  ?item wdt:PROPRIÉTÉ2 wd:ÉLÉMENT2 .
} UNION {
    ?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 subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:PROPRIÉTÉ3"--> c6 end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:PROPRIÉTÉ1"--> c2 v1 --"wdt:PROPRIÉTÉ2"--> c4 end union0r <== or ==> union0l end