query-d1b7130353ff43e3a2f510b8516d58cc
query helphola, per variare un poco ho provato a dar la caccia anche a tutti gli item che hanno come unico riferimento (della data di nascita in questo caso) "importato da wikipedia in italiano", non so però come farmi dare SOLO quelli che hanno SOLO questo qualificatore. La query che ho assemblato mi dà anche quelli che hanno ulteriori riferimenti. sai dirmi come fare? un altro filter?
Use at
- https://query.wikidata.org/sparql
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wdref: <http://www.wikidata.org/reference/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX prov: <http://www.w3.org/ns/prov#>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?human ?humanLabel ?datan ?refn{
?human wdt:P31 wd:Q5 .
?human wdt:P1986 ?dbi .
?human wdt:P569 ?datan .
?human p:P569 ?dn .
?dn prov:wasDerivedFrom wdref:d5847b9b6032aa8b13dae3c2dfd9ed5d114d21b3 . #specifico per wikipedia in italiano
?dn prov:wasDerivedFrom ?refn #ho aggiunto questo così vedo quelli che hanno importato da wikipedia come unico riferimento
FILTER ("1800-01-01"^^xsd:date < ?datan)
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY ?itemLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?datan"):::projected
v4("?dbi")
v5("?dn")
v3("?human"):::projected
v1("?itemLabel")
v6("?refn"):::projected
c10(["bd:serviceParam"]):::iri
c3(["wd:Q5"]):::iri
c8(["wdref:d5847b9b6032aa8b13dae3c2dfd9ed5d114d21b3"]):::iri
c12(["#91;AUTO_LANGUAGE#93;,en"]):::literal
f0[["'1800-01-01^^xsd:date' < ?datan"]]
f0 --> v2
v3 --"p:direct/P31"--> c3
v3 --"p:direct/P1986"--> v4
v3 --"p:direct/P569"--> v2
v3 --"p:P569"--> v5
v5 --"prov:wasDerivedFrom"--> c8
v5 --"prov:wasDerivedFrom"--> v6
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c10 --"wikibase:language"--> c12
end