query-cc47b3abbcada5aece24f2676b50acad
Filmportal-IDs with ref column
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX prov: <http://www.w3.org/ns/prov#>
PREFIX pr: <http://www.wikidata.org/prop/reference/>
PREFIX bd: <http://www.bigdata.com/rdf#>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX v: <http://www.wikidata.org/prop/statement/>
SELECT DISTINCT ?item ?itemLabel ?filmportal ?refLabel WHERE {
?item p:P2639 ?filmportal_statement .
?filmportal_statement v:P2639 ?filmportal
OPTIONAL {?filmportal_statement prov:wasDerivedFrom/pr:P248 ?ref}
SERVICE wikibase:label {bd:serviceParam wikibase:language "de,en"}
}
ORDER BY ?filmportal
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?filmportal"):::projected
v3("?filmportal_statement")
v2("?item"):::projected
v4("?ref")
a1((" "))
c6(["bd:serviceParam"]):::iri
c8(["de,en"]):::literal
v2 --"p:P2639"--> v3
v3 --"p:statement/P2639"--> v1
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v3 -."prov:wasDerivedFrom".-> a1
a1 --"p:reference/P248"--> v4
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end