query-40caf2e880b7fdbedb7ba8bfd3f368be
title:Elementi aventi come unica occupazione (P106) ricercatore SELECT ?item ?itemLabel ?itemDescription ?n WHERE { ?item wdt:P10056 ?iris . ?item wdt:P106 ?occ1 . VALUES ?occ1 { wd:Q1650915 } . MINUS { ?item wdt:P106 ?occ2 . FILTER(?occ1 != ?occ2) } . ?item wikibase:identifiers ?n . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } ORDER BY DESC(?n)
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 bd: <http://www.bigdata.com/rdf#>
#title:Elementi aventi come unica occupazione (P106) ricercatore
SELECT ?item ?itemLabel ?itemDescription ?n
WHERE {
?item wdt:P10056 ?iris .
?item wdt:P106 ?occ1 . VALUES ?occ1 { wd:Q1650915 } .
MINUS { ?item wdt:P106 ?occ2 . FILTER(?occ1 != ?occ2) } .
?item wikibase:identifiers ?n .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY DESC(?n)
Query found at
- https://www.wikidata.org/wiki/User:Alessandra_Boccone/sandbox
- https://www.wikidata.org/wiki/Wikidata:Gruppo_Wikidata_per_Musei,_Archivi_e_Biblioteche/Decimo_compleanno_di_Wikidata/Gli_autori_di_IRIS_UNISA_in_Wikidata
- https://www.wikidata.org/wiki/Wikidata:Gruppo_Wikidata_per_Musei,_Archivi_e_Biblioteche/IRIS/UNISA
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?iris")
v2("?item"):::projected
v1("?n"):::projected
v5("?occ1")
v5("?occ2")
c5(["bd:serviceParam"]):::iri
c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"wdt:P10056"--> v3
v2 --"wdt:P106"--> v5
bind0[/VALUES ?occ1/]
bind0-->v5
bind00(["wd:Q1650915"])
bind00 --> bind0
subgraph minus1["MINUS"]
style minus1 stroke-width:6px,fill:pink,stroke:red;
f2[["?occ1 != ?occ2"]]
f2 --> v5
f2 --> v5
v2 --"wdt:P106"--> v5
end
v2 --"wikibase:identifiers"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end