query-3f0c221bf666543aad559fa09b54bb47

rq turtle/ttl

Donne sepolte alla Certosa di Bologna con elemento Wikidata ma senza voce su it.wiki SELECT ?persona ?personaLabel ?personaDescription ?sitelink_it ?sitelink_en ?sitelink_fr WHERE { ?persona wdt:P31 wd:Q5 . ?persona wdt:P21 wd:Q6581072 . ?persona wdt:P119 wd:Q3671680 . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,it,fr". } MINUS { ?sitelink_it schema:about ?persona; schema:isPartOf https://it.wikipedia.org/ . } optional { ?sitelink_fr schema:about ?persona; schema:isPartOf https://fr.wikipedia.org/ . } optional { ?sitelink_en schema:about ?persona; schema:isPartOf https://en.wikipedia.org/ . } } ORDER BY DESC (?sitelinks) LIMIT 100

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#Donne sepolte alla Certosa di Bologna con elemento Wikidata ma senza voce su it.wiki
SELECT ?persona ?personaLabel ?personaDescription ?sitelink_it ?sitelink_en ?sitelink_fr
WHERE {
       ?persona wdt:P31 wd:Q5 .
       ?persona wdt:P21 wd:Q6581072 .
       ?persona wdt:P119 wd:Q3671680 .
   SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,it,fr". }
  MINUS {
      ?sitelink_it schema:about ?persona;
                schema:isPartOf <https://it.wikipedia.org/> .
    }
  optional {
      ?sitelink_fr schema:about ?persona;
                schema:isPartOf <https://fr.wikipedia.org/> .
    }
  optional {
      ?sitelink_en schema:about ?persona;
                schema:isPartOf <https://en.wikipedia.org/> .
    }
  }
  ORDER BY DESC (?sitelinks)
LIMIT 100

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?persona"):::projected v5("?sitelink_en"):::projected v4("?sitelink_fr"):::projected v3("?sitelink_it"):::projected v1("?sitelinks") c14([https://fr.wikipedia.org/]):::iri c4(["wd:Q6581072"]):::iri c13([https://it.wikipedia.org/]):::iri c6(["wd:Q3671680"]):::iri c15([https://en.wikipedia.org/]):::iri c8(["bd:serviceParam"]):::iri c2(["wd:Q5"]):::iri c10(["#91;AUTO_LANGUAGE#93;,en,it,fr"]):::literal v2 --"wdt:P31"--> c2 v2 --"wdt:P21"--> c4 v2 --"wdt:P119"--> c6 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v3 --"schema:about"--> v2 v3 --"schema:isPartOf"--> c13 end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v4 -."schema:about".-> v2 v4 --"schema:isPartOf"--> c14 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v5 -."schema:about".-> v2 v5 --"schema:isPartOf"--> c15 end