query-972afbf4b96d3f39a89632d870b64646

rq turtle/ttl

MH objets par départementBonjour, Laborieusement, je progresse sur les requêtes. En voici une utile pour vérifier les MH objets dans un département qui marche à peu près :

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#>
SELECT DISTINCT ?item ?itemLabel ?objetLabel ?lieuLabel ?palissy WHERE {
  ?item wdt:P31 ?objet . 
  ?item wdt:P276 ?lieu .
  ?item wdt:P481 ?palissy.
  FILTER regex (?palissy, "^(PM66)").
  MINUS{?lieu wdt:P131+ wd:Q12709}
  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; v2("?item"):::projected v4("?lieu") v3("?objet") v1("?palissy"):::projected c6(["wd:Q12709"]):::iri c8(["bd:serviceParam"]):::iri c10(["fr"]):::literal f0[["regex(?palissy,'^(PM66)')"]] f0 --> v1 v2 --"wdt:P31"--> v3 v2 --"wdt:P276"--> v4 v2 --"wdt:P481"--> v1 subgraph minus1["MINUS"] style minus1 stroke-width:6px,fill:pink,stroke:red; v4 --"wdt:P131"--> c6 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end