query-b58c3d2746d9e90e3c79e78b2155b624
Items amb algun dels valors d'una llista (funció OR en valor)
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#>
SELECT ?arxiu_nacional ?arxiu_nacionalLabel ?arxiu ?arxiuLabel ?ubicacio ?ubicacioLabel WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
VALUES ?glam {
wd:Q3052382 # fons documental
wd:Q2668072 # col·lecció
}
?arxiu_nacional wdt:P31 ?glam;
wdt:P126 ?arxiu.
OPTIONAL { ?arxiu_nacional wdt:P276 ?ubicacio. }
}
LIMIT 50
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?arxiu"):::projected
v2("?arxiu_nacional"):::projected
v1("?glam")
v4("?ubicacio"):::projected
c2(["bd:serviceParam"]):::iri
c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end
bind0[/VALUES ?glam/]
bind0-->v1
bind00(["wd:Q3052382"])
bind00 --> bind0
bind01(["wd:Q2668072"])
bind01 --> bind0
v2 --"wdt:P31"--> v1
v2 --"wdt:P126"--> v3
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P276".-> v4
end