query-c4d7f18a08082812106cb298bbef71f5
VIAF - fix ]reply[13:45, 23 November 2019 (UTC) dosisEpì e, nel caso in cui il valore abbia il rank "preferito", passi il rank a "normale"? Senza fretta, ovviamente - si tratta solo di una piccola rifinitura. Grazie mille, --(P214)VIAF ID Ciao! Una prima domanda veloce: per te sarebbe complesso programmare un bot che cerchi tutti gli elementi in cui è presente un solo valore della : Da: Epìdosis@
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX p: <http://www.wikidata.org/prop/>
SELECT DISTINCT ?x
WHERE {
?x p:P214/wikibase:rank wikibase:PreferredRank .
MINUS { ?x p:P214/wikibase:rank wikibase:NormalRank . }
MINUS { ?x p:P214/wikibase:rank wikibase:DeprecatedRank . }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?x"):::projected
a1((" "))
a2((" "))
a3((" "))
c3(["wikibase:PreferredRank"]):::iri
c5(["wikibase:DeprecatedRank"]):::iri
c4(["wikibase:NormalRank"]):::iri
v1 --"p:P214"--> a1
a1 --"wikibase:rank"--> c3
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"p:P214"--> a2
a2 --"wikibase:rank"--> c4
end
subgraph minus1["MINUS"]
style minus1 stroke-width:6px,fill:pink,stroke:red;
v1 --"p:P214"--> a3
a3 --"wikibase:rank"--> c5
end