query-74c97d120d1811014bb1237acc962e1a
Databaser
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 ?film ?filmLabel ?landLabel WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "sv, [AUTO_LANGUAGE]". }
?film wdt:P31 wd:Q29542094.
OPTIONAL { ?film wdt:P17 ?land. }
}
ORDER BY ?landLabel
Query found at
- https://www.wikidata.org/wiki/User:Sabel%C3%B6ga/Lista_%C3%B6ver_filmdatabaser
- https://www.wikidata.org/wiki/User:Sabel%C3%B6ga/Lista_%C3%B6ver_s%C3%B6kfr%C3%A5gor
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?film"):::projected
v3("?land")
v1("?landLabel"):::projected
c2(["bd:serviceParam"]):::iri
c4(["sv, #91;AUTO_LANGUAGE#93;"]):::literal
c6(["wd:Q29542094"]):::iri
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end
v2 --"wdt:P31"--> c6
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P17".-> v3
end