query-23f42ebba2afb71ce40cf89a8a7b1cd1
Amazon Prime without German article
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 schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?film ?filmLabel ?instanceLabel ?amazon WHERE {
?film wdt:P8055 ?amazon .
?film wdt:P31 ?instance .
?instance wdt:P279* wd:Q11424 .
OPTIONAL { ?article schema:about ?film . ?article schema:inLanguage "de" } FILTER(!bound(?article))
SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en" }
}
ORDER BY ?filmLabel
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?amazon"):::projected
v2("?article")
v3("?film"):::projected
v1("?filmLabel"):::projected
v5("?instance")
c7(["de"]):::literal
c9(["bd:serviceParam"]):::iri
c11(["de,en"]):::literal
c4(["wd:Q11424"]):::iri
f0[["not bound(?article)"]]
f0 --> v2
v3 --"wdt:P8055"--> v4
v3 --"wdt:P31"--> v5
v5 --"wdt:P279"--> c4
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."schema:about".-> v3
v2 --"schema:inLanguage"--> c7
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end