query-20a3ac7f2a849dc9286d19e6fa235736
TODO
Use at
- https://query.wikidata.org/sparql
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#>
SELECT ?item ?itemLabel ?itemDescription ?occupationLabel ?morte WHERE {
?item wdt:P8950 ?dizionario.
MINUS { ?item schema:description ?desc . FILTER (LANG(?desc) = "it") }
?item wdt:P570 ?morte .
# ?item wdt:P106 wd:Q1028181 .
# ?item wdt:P27 wd:Q172579 .
MINUS {?item wdt:P27 ?query}
SERVICE wikibase:label { bd:serviceParam wikibase:language "it". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?desc")
v2("?dizionario")
v1("?item"):::projected
v4("?morte"):::projected
v5("?query")
c7(["bd:serviceParam"]):::iri
c2(["it"]):::literal
v1 --"wdt:P8950"--> v2
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
f1[["?desc = 'it'"]]
f1 --> v3
v1 --"schema:description"--> v3
end
v1 --"wdt:P570"--> v4
subgraph minus2["MINUS"]
style minus2 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P27"--> v5
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c2
end