query-74c97d120d1811014bb1237acc962e1a

rq turtle/ttl

Databaser

Use at

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

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