query-12e2edff0f3d1560946c79fc8a2591c8

rq turtle/ttl

Filmportal

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
PREFIX schema: <http://schema.org/>

SELECT ?item ?itemLabel ?filmportal ?article WHERE {
    ?item wdt:P2639 ?filmportal
    OPTIONAL { ?article schema:about ?item . ?article schema:inLanguage "de" }
    SERVICE wikibase:label {bd:serviceParam wikibase:language "de"}
}
ORDER BY ?filmportal

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?article"):::projected v1("?filmportal"):::projected v2("?item"):::projected c4(["de"]):::literal c6(["bd:serviceParam"]):::iri v2 --"wdt:P2639"--> v1 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v3 -."schema:about".-> v2 v3 --"schema:inLanguage"--> c4 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c4 end