query-1e51bf43d13301a26edcde96946f5c8d
Query su archival institutionLink alla query di epidosis
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?unitammLabel ?cap
WHERE
{
?item wdt:P131 ?unitamm; schema:description ?itemdesc.
?unitamm wdt:P281 ?cap
FILTER((LANG(?itemdesc)) = "en")
FILTER(CONTAINS(STR(?itemdesc), "archival institution in Italy"))
FILTER ("60010" < ?cap)
FILTER (?cap < "63900")
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?cap"):::projected
v3("?item"):::projected
v2("?itemdesc")
v4("?unitamm")
c9(["bd:serviceParam"]):::iri
c11(["#91;AUTO_LANGUAGE#93;,en"]):::literal
f0[["?cap < '63900'"]]
f0 --> v1
f1[["'60010' < ?cap"]]
f1 --> v1
f2[["contains(str(?itemdesc),'archival institution in Italy')"]]
f2 --> v2
f3[["?itemdesc = 'en'"]]
f3 --> v2
v3 --"wdt:P131"--> v4
v3 --"schema:description"--> v2
v4 --"wdt:P281"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end