query-e59a565fe17c1ebfcde5af816a6d104a

rq turtle/ttl

Stephen-King-Verfilmungen

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 ?novelLabel ?imdb ?publication WHERE {
    ?film wdt:P31 wd:Q11424 .
    ?film wdt:P144 ?novel .
    ?novel wdt:P50 wd:Q39829 .
    ?film wdt:P345 ?imdb .
    OPTIONAL {?film wdt:P577 ?publication}
    SERVICE wikibase:label { bd:serviceParam wikibase:language "en,de" }
} ORDER BY ?publication

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?film"):::projected v4("?imdb"):::projected v3("?novel") v1("?publication"):::projected c9(["bd:serviceParam"]):::iri c11(["en,de"]):::literal c5(["wd:Q39829"]):::iri c2(["wd:Q11424"]):::iri v2 --"wdt:P31"--> c2 v2 --"wdt:P144"--> v3 v3 --"wdt:P50"--> c5 v2 --"wdt:P345"--> v4 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P577".-> v1 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c9 --"wikibase:language"--> c11 end