query-a6edd11d62b2cf17313230aa178b8d77
Fictional humans with non-fictional IMDb id
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 bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?imdb WHERE {
?item wdt:P345 ?imdb FILTER (SUBSTR(?imdb,1,2)!='ch') .
?item wdt:P31 wd:Q15632617
SERVICE wikibase:label{bd:serviceParam wikibase:language "en,de"}
} ORDER BY ?imdb
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?imdb"):::projected
v2("?item"):::projected
c8(["bd:serviceParam"]):::iri
c10(["en,de"]):::literal
c6(["wd:Q15632617"]):::iri
f0[["substring(?imdb,'1^^xsd:integer','2^^xsd:integer') != 'ch'"]]
f0 --> v1
v2 --"wdt:P345"--> v1
v2 --"wdt:P31"--> c6
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end