query-39e9dd67d123082e6a58b8a6ee795cda

rq turtle/ttl

Films without any 'Wikidata property for identification in the film industry'Hey guys! Can you explain to me why this query

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
SELECT ?film WHERE {
    ?film wdt:P31/wdt:P279* wd:Q11424 .
    FILTER NOT EXISTS {?film ?prop ?value . ?prop wdt:P31 wd:Q22964274}
} LIMIT 10

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?film"):::projected v2("?prop") v3("?value") a1((" ")) c2(["wd:Q22964274"]):::iri c4(["wd:Q11424"]):::iri f0[["not "]] subgraph f0e0["Exists Clause"] e0v1 -->e0v2--> e0v3 e0v2 --"wdt:P31"--> e0c2 e0v1("?film"):::projected e0v2("?prop"):::projected e0v3("?value"):::projected e0c2(["wd:Q22964274"]):::iri end f0--EXISTS--> f0e0 f0 --> v1 f0 --> v2 f0 --> v3 f0 --> c1 f0 --> c2 v1 -->v2--> v3 v2 --"wdt:P31"--> c2 v1 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c4