query-9b27003da08e4265fbd7daffaa493acf

rq turtle/ttl

MH avec catégorie Commons mais sans image SELECT DISTINCT ?item ?itemLabel WHERE { { ?item wdt:P1435 wd:Q10387575 . } UNION { ?item wdt:P1435 wd:Q10387684 . } #MH ?item wdt:P373 [] . #avec catégorie Commons MINUS { ?item wdt:P18 [] } #mais sans image SERVICE wikibase:label { bd:serviceParam wikibase:language "fr" } . }

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#MH avec catégorie Commons mais sans image
SELECT DISTINCT ?item ?itemLabel WHERE {
    { ?item wdt:P1435 wd:Q10387575 . } UNION { ?item wdt:P1435 wd:Q10387684 . } #MH
    ?item wdt:P373 [] . #avec catégorie Commons
    MINUS { ?item wdt:P18 [] } #mais sans image
    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; v1("?item"):::projected a1((" ")) a2((" ")) c3(["wd:Q10387684"]):::iri c2(["wd:Q10387575"]):::iri c7(["bd:serviceParam"]):::iri c9(["fr"]):::literal subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:P1435"--> c3 end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:P1435"--> c2 end union0r <== or ==> union0l end v1 --"wdt:P373"--> a1 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"wdt:P18"--> a2 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end