query-0c24468eb36a01c3526f6b2108604589

rq turtle/ttl

Treccani (persone non italiane)MINUS

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 ?person ?personLabel ?treccani
WHERE {
  ?person wdt:P3365 ?treccani .
  ?person wdt:P31 wd:Q5 .
  MINUS { ?person wdt:P27 wd:Q38 . }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "it,en" . }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?person"):::projected v2("?treccani"):::projected c5(["wd:Q38"]):::iri c7(["bd:serviceParam"]):::iri c9(["it,en"]):::literal c3(["wd:Q5"]):::iri v1 --"wdt:P3365"--> v2 v1 --"wdt:P31"--> c3 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"wdt:P27"--> c5 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end